2008/11/3 André Warnier <[EMAIL PROTECTED]>
> Adam Prime wrote:
>
>> I believe you can do something like:
>>
>> PerlAccessHandler "sub {return Apache2::Const::DECLINED;}"
>>
>> Adam
>>
>
> You may even be able to simplify that to
>
> PerlAccessHandler Apache2::Const::DECLINED
>
> (I'm curious, doe
2008/11/3 Adam Prime <[EMAIL PROTECTED]>
> I believe you can do something like:
>
> PerlAccessHandler "sub {return Apache2::Const::DECLINED;}"
>
> Adam
>
Ha! Brilliant - works a charm. Thanks a lot!
- Jan
Adam Prime wrote:
Jan-Aage Frydenbø-Bruvoll wrote:
Example:
SetHandler perl-script
PerlResponseHandler myreponsehandler
PerlAccessHandler myaccesshandler
SetHandler default-handler
# how to disable the PerlAccessHandler?
As you can see I've found how to disable/re-set the respon
Jan-Aage Frydenbø-Bruvoll wrote:
Example:
SetHandler perl-script
PerlResponseHandler myreponsehandler
PerlAccessHandler myaccesshandler
SetHandler default-handler
# how to disable the PerlAccessHandler?
As you can see I've found how to disable/re-set the response handler,
but th
[EMAIL PROTECTED] wrote:
I have mod rewrite setup to redirect request that don't an existing
file or directory to the perl handler.
RewriteEngine On
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^/(.*) /ex_perl_h [L]
but this doesn't work.
Dear list,
I've been googling unsuccessfully for quite a while to find an answer to my
problem, so I'm hoping that someone here would be able to help me... My
question and problem is quite simple - I need to remove a Perl*Handler from
a sub folder after defining it higher up in the Apache config h