Schrift
[thread]2914[/thread]

Was mache ich falsch!



<< >> 4 Einträge, 1 Seite
Gast Gast
 2004-07-14 21:04
#29306 #29306
Hallo habe einen Server der Perl unterstützt und habe die hello.pl abgespeichert im Cgi Ordner mit dem text

#!/usr/local/bin/perl
#welt.pl

#simple first program
$string = "Hallo Welt!\n"; #Zuweisung eines Wertes
print $string; #Output

Wenn ich es aufrufe kommt:

Internal Server Error
The server encountered an internal error or misconfiguration and was unable to complete your request.
Please contact the server administrator, root@businessbox3.server-home.net and inform them of the time the error occurred, and anything you might have done that may have caused the error.

More information about this error may be available in the server error log.



--------------------------------------------------------------------------------

Apache/1.3.27 Server at the-bold-and-the-beautyful.de Port 80
renee
 2004-07-14 21:10
#29307 #29307
User since
2003-08-04
14371 Artikel
ModeratorIn
[Homepage] [default_avatar]
Du musst noch einen Header ausgeben (in dem der MIME-Type der Ausgabe steht), also:
Code: (dl )
1
2
3
4
5
6
7
8
#!/usr/local/bin/perl
#welt.pl

print "Content-type: text/html\n\n"; # Header ausgeben. Wichtig: die zwei \n!

#simple first program
$string = "Hallo Welt!\n";   #Zuweisung eines Wertes
print $string;               #Output
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/
[E|B]
 2004-07-14 23:54
#29308 #29308
User since
2003-08-08
2561 Artikel
HausmeisterIn
[Homepage] [default_avatar]
CHMOD ist auf 755? (bei *nix)
Gruß, Erik!

s))91\&\/\^z->sub{}\(\@new\)=>69\&\/\^z->sub{}\(\@new\)=>124\&\/\^z->sub{}\(\@new\)=>);
$_.=qq~66\&\/\^z->sub{}\(\@new\)=>93~;for(@_=split(/\&\/\^z->sub{}\(\@new\)=>/)){print chr;}

It's not a bug, it's a feature! - [CGI-World.de]
renee
 2004-07-15 00:06
#29309 #29309
User since
2003-08-04
14371 Artikel
ModeratorIn
[Homepage] [default_avatar]
Bei "Internal Server Error" lohnt es sich auch folgendes zu lesen: http://wiki.perl-community.de/bin....rror500
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/
<< >> 4 Einträge, 1 Seite



View all threads created 2004-07-14 21:04.