I've a server that has pl-files for mod_perl and cgi for standard-cgi and
now got a bunch of pl-files that do not run under mod_perl and cannot be
renamed in cgi, cause they are linked in frames on distant hosts where I
dont have access too.
So I need to disable mod_perl for these pl-files for this specific virtual
host:
I activate mod_perl in main-part of my http.conf:
<Files ~ "\.pl$">
SetHandler perl-script
PerlHandler Apache::Registry
Options +ExecCGI
</Files>
for all virtual hosts
and now need to know which PerlHandler is responsible for no-mod_perl cgi.
(The PerlRun-Handler also fails ...)
It tried in the virtual host section:
<Files ~ "\.pl$">
SetHandler cgi-script
Options +ExecCGI
</Files>
and even SetHandler default-handler
And I tried
AddHandler cgi-script .pl
but this wont do it.
thnx,
peter