Thread Hello World Script mit Fehlermeldung?!? (6 answers)
Opened by x-man at 2004-04-15 03:55

x-man
 2004-04-15 03:55
#2098 #2098
User since
2003-09-11
67 Artikel
BenutzerIn
[default_avatar]
Code: (dl )
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#!/usr/bin/perl

use CGI::Carp qw(fatalsToBrowser);
use strict;

$conttype = "Content-type: text/html\n\n";
&info;

sub info{
print $conttype;
print "<html><body>\n";
print "Hello World ohne Fehler;-)\n";
print "</body></html>\n";
}


beim Ausführen des Scripts bekam ich folgende Meldung:

Code: (dl )
1
2
3
Software error:
Execution of /home/sites/site27/web/cgi-bin/test/x.cgi aborted due to compilation errors.
For help, please send mail to the webmaster (admin), giving this error message and the time and date of the error.


Ohne
Code: (dl )
use strict;


läufts. Bin ich doof? (bitte um ehrliche Antwort, auch wenn es schmerzt ;-)) Hat jemand ne Erklärung?

linux (Kernel: 2.2.16C37_III )
Perl Version: 5.00503\n\n

<!--EDIT|x-man|1081987194-->

View full thread Hello World Script mit Fehlermeldung?!?