Mein erstes Perl-Script

Einklappen
X
 
  • Filter
  • Zeit
  • Anzeigen
Alles löschen
neue Beiträge

  • Mein erstes Perl-Script

    Ich habe gegoogelt und gegoogelt, aber wirklich was zu meinem Problem gefunden habe ich nicht.

    Ich habe eine Datei namens "test.cgi" im Ordner "cgi-bin" und dem Inhalt:
    Code:
    #!/usr/bin/perl
    print "Hello, world!\n";
    wenn ich die Datei im Browser aufrufe, dann erhalte ich:
    Code:
    Internal Server Error
    The server encountered an internal error or misconfiguration and was unable to complete your request.
    
    Please contact the server administrator, ********** 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.
    was mache ich falsch?
    mein Anbieter unstützt Perl.

  • #2
    Hi,

    ich würd erstmal überprüfen ob der cgi-handler wirklich für *.cgi
    eingerichtet ist. Dann könnte es noch sein dass perl gar nicht
    in /usr/bin liegt, obwohl das der normalfall ist.

    Naja ansonsten bleibt noch zu sagen, dass das so funktionieren
    sollte. Denk aber dran, bei html-ausgaben den richtigen header
    vorweg zu senden. In dem beispiel wäre auch ein "content-type: text/plain" header nicht schlecht.


    greets
    (((call/cc call/cc) (lambda (x) x)) "Scheme just rocks! and Ruby is magic!")

    Kommentar

    Lädt...
    X