"Hemond, Steve" <[EMAIL PROTECTED]> wrote
> Here are snippets of my httpd.conf file :
> -----------------------------------------
> ...
> LoadModule perl_module modules/mod_perl.so
> ...
> DocumentRoot "/usr/local/apache2/htdocs"
> ...
> <Directory "/usr/local/apache2/htdocs">
>     Options Indexes +Includes +ExecCGI
>     AllowOverride None
>     Order allow,deny
>     Allow from all
> </Directory>
> ...
> AddHandler cgi-script .cgi .pl
> ...
> ScriptAlias /cgi-bin/ "/usr/local/apache2/htdocs/cgi-bin/"
> ...
> <Directory "/usr/local/apache2/htdocs/cgi-bin">
>     AllowOverride None
>     Options None
>     Order allow,deny
>     Allow from all
> </Directory>
Try adding this line
'AddHandler perl-script .cgi .pl'
inside of your <Directory> tags. After you do that, what do you get
when you put a test .cgi or .pl file into the /usr/local/apache2/htdocs/ dir
and try and run it.

Michael Peters
Venzia


-- 
Reporting bugs: http://perl.apache.org/bugs/
Mail list info: http://perl.apache.org/maillist/modperl.html

Reply via email to