[EMAIL PROTECTED] wrote:
> 
> On my Apache mod_perl is generally enabled with the following statement:
> 
> <Directory "/data/apache">
>     <Files ~ "\.pl$">
>         SetHandler perl-script
>         PerlHandler Apache::Registry
>         Options +ExecCGI
>     </Files>
> </Directory>

you might have better luck with something like

<Directory "/data/apache">
  AddHandler .pl perl-script
  PerlHandler Apache::Registry
  Options +ExecCGI
</Directory>

which should work.

--Geoff

Reply via email to