Perl stopped working?

T

TheMatrix

Guest
Hello-

For some reason my .pl scripts aren't being executed by apache - instead they're just returned in text format. I can't figure out what's wrong...any ideas?

Thanks.

-TM
 
Check permissions in apache conf.file for directory where you'd like to run *.pl scripts.
In the httpd.conf there should be a line ScriptAlias, describing path to your "cgi-bin" directory, where placed *.pl files.
Except this you should provide the following options for this directory — Options ExecCGI and the handlers if you use Perl as module for Apache.
 
Back
Top