Chris Brooks ([EMAIL PROTECTED]) said something to this effect:
> You're absolutely right, the mistake is mine.
> 
> I have tried writing the config files a couple of ways:
> 
> <Location /store>
>         SetHandler cgi-script
> </Location>
> 
> and
> 
> <Directory /www/perl/htdocs/store>
>         SetHandler cgi-script
> </Directory>
> 
> I have not had luck in either case turning off the Wrapper handler.
> 
> I did not encounter any errors in restarting the server with the PerlHandler
> Carescout::AccessHandler statement.
> 
> Thoughts?

Looking at p. 444 of the Eagle book seems to indicate that this is right
thing to do (see http://www.modperl.com/book/chapters/ch9.html#item_handler):

# in httpd.conf:

<Perl>
    package Apache::Reset::To::CGIScript;
    use Apache::Constants 'DECLINED';
    
    sub handler {
        shift->handler('cgi-script');
    
        return DECLINED;
    }
</Perl>

<Location /store>
    PerlFixupHandler Apache::Reset::To::CGIScript
</Location>



Good luck.

(darren)

-- 
If only God would give me some clear sign! Like making a large
deposit in my name in a Swiss bank.
    -- Woody Allen

Reply via email to