Silvio Siefke: Apache + Perl

Beitrag lesen

Ich hab eine Frage zur Perl + PHP!

Ich habe mir ActiveState Perl heruntergeladen und installiert!
Folgende Änderungen habe ich in der conf Datei der Apache vorgenommen:

CGI-bin Verzeichnis erstellt in der Document Root
Zeile 610 Script Alias an Doc.-Root angepasst
Zeile 825 das # vor der Zeile AddHandler cgi-script .cgi .pl weggemacht
Zeile 335 Options Indexes FollowSymLinks MultiViews geändert in
Options Indexes FollowSymLinks ExecCGI
abgespeichert!

Dann folgendes Script geschrieben:
#!C:\usr\bin\perl.exe
use CGI qw(:standard) ;
print header();
print "Hello, world";

abgespeichert unter hello.pl!

Dann unter den Link localhost/cgi-bin/hello.pl aufgerufen, als Antwort bekam ich
Internal Server Error
The server encountered an internal error or misconfiguration and was unable to complete your request.
Please contact the server administrator, admin@dip0.t-ipconnect.de 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.
Die Error.log:
[Mon Nov 04 18:00:31 2002] [error] [client 127.0.0.1] BEGIN failed--compilation aborted at c:\PROGRA~1\APACHE~1\apache\htdocs\cgi-bin\hello.pl line 2.

Frage woran liegt das! Was ist der Fehler!