hallo zusammen,
wenn ich ein beliebiges perl/cgi script aufrufe, spuckt apche das hier aus:<start>
Internal Server ErrorThe server encountered an internal error or misconfiguration and was unable to complete your request.
Please contact the server administrator, Jan@Lehnardt.de and inform them of the time the error occurred, and
anything you might have done that may have caused the error.malformed header from script. Bad header=Hallo Welt: e:/apache/cgi-bin/test.pl
Apache/1.3.3 Server at bErT Port 80
</end>
im script steht nur:
#!/aperl/bin/perl #mein perl pfad
print"Hallo Welt";was mache ich falsch?
tschoejan
Hallo,
da fehlt der Header:
print "Content-type: text/html\n\n";
Wichtig sind die beiden Zeilenumbrüche (ergibt 1 Leerzeile).
Viele Grüße, Rolf