Thread Location Problem (15 answers)
Opened by Gustl at 2011-07-22 23:37

renee
 2011-07-23 01:08
#150683 #150683
User since
2003-08-04
14371 Artikel
ModeratorIn
[Homepage] [default_avatar]
Du benutzt strict deklarierst $url aber nicht...

Wenn Du keinen Zugriff auf das error_log hast, hast Du im Prinzip zwei Möglichkeiten: Du baust Dir eine lokale Testumgebung auf und/oder Du schreibst ein zweites Skript, in dem ein qx{} gemacht wird und das erste Programm darin aufruft. So á la
Code (perl): (dl )
1
2
3
4
5
6
7
8
9
10
#!/usr/bin/perl

use strict;
use warnings;

use CGI;
print CGI->header( 'text/plain' );

my $result = qx{ perl script1.pl 2>&1 };
print $result,"\nfertig...\n";
OTRS-Erweiterungen (http://feature-addons.de/)
Frankfurt Perlmongers (http://frankfurt.pm/)
--

Unterlagen OTRS-Workshop 2012: http://otrs.perl-services.de/workshop.html
Perl-Entwicklung: http://perl-services.de/

View full thread Location Problem