>...I get in the error.log the message: "Premature end of script headers". Where
> can I find the "misconfiguration".

Have a look at the error log, the message should be something like:
"Premature end of script headers: /path/to/script.cgi"

This means that the named script is failing to compile. Try:
% perl -wc /path/to/script.cgi
This will tell Perl to try to compile the script without actually running it.
The '-w' switch will turn on "warnings", which may help to point you at the
problem(s). Most likely is a syntax error.

For more learning, try:
% perldoc perl
This will tell you a bit about how to run Perl and also list many good sources
of documentation.

---
Rodney Broom



Reply via email to