> The only problem left is "perl-status". It still does not work.
> My relevant entry in the config is:
>  
> <Location /perl-status>
>   SetHandler perl-script
>   PerlHandler Apache::Status
>   Order deny,allow
>     Deny from all
>     Allow from 127.0.0.1
>  
> The error log says:
> </Location>[Sun Aug 18 21:02:08 2002] [error] failed to resolve handler 
> `Apache::Status'

It's not supposed to work, yet. It wasn't ported to 2.0. If you have 
mod_perl 1.0 installed, the 1.0 version is almost fully working under 
mod_perl 2.0 (The 'Compiled Registry Scripts' menu entry needs some 
tweaks). To make it working you need the following:

PerlModule Apache2
PerlModule Apache::compat
PerlModule Apache::Status
<Location /perl-status>
   SetHandler perl-script
   PerlHandler Apache::Status
   Order deny,allow
     Deny from all
     Allow from 127.0.0.1
</Location>

__________________________________________________________________
Stas Bekman            JAm_pH ------> Just Another mod_perl Hacker
http://stason.org/     mod_perl Guide ---> http://perl.apache.org
mailto:[EMAIL PROTECTED] http://use.perl.org http://apacheweek.com
http://modperlbook.org http://apache.org   http://ticketmaster.com

Reply via email to