RE: Error.log message
Michiel Boland <[email protected]> Sat, 27 Jan 2007 21:06:10 +0100 (MET)
| Newsgroups | gmane.network.mathopd |
|---|---|
| Message-ID | <[email protected]> |
> I've checked all my PERL scripts for a wrong or missing #!/usr/bin/perl: all
> are OK !
My guess is that you have something like this in your config file
Control {
Specials {
CGI { pl }
}
}
for this to work every perl script needs to be executable. That's a bit of
a nuisance. So it would be better to do something like this instead
Control {
External {
/usr/bin/perl { pl }
}
}
HTH
Cheers
Michiel