PerlAuthenHandler PerlAuthzHandler in mod_perl 2.0

2007-06-28 Thread Martijn
Hello. I'm doing some testing/debugging on a newly built server (Apache 2.0.52, mod_perl 2.0.3) and find that both PerlAuthenHandler and PerlAuthzHandler are ignored. The weird thing is: other Perl*Handlers, including PerlAccessHandler, work as expected (expected by me, that is): they block

Re: PerlAuthenHandler PerlAuthzHandler in mod_perl 2.0

2007-06-28 Thread Geoffrey Young
Martijn wrote: Hello. I'm doing some testing/debugging on a newly built server (Apache 2.0.52, mod_perl 2.0.3) and find that both PerlAuthenHandler and PerlAuthzHandler are ignored. Location /test # PerlAccessHandler TestHandler # the above line *does* block access PerlAuthenHandler

Re: PerlAuthenHandler PerlAuthzHandler in mod_perl 2.0

2007-06-28 Thread John ORourke
Hi Martijn, http://perl.apache.org/docs/2.0/user/handlers/http.html is your friend... Authen is only called if there is a 'require' and AuthType/AuthName directive, Authz is only called if Authen is successful. cheers John Martijn wrote: Hello. I'm doing some testing/debugging on a newly

Re: PerlAuthenHandler PerlAuthzHandler in mod_perl 2.0

2007-06-28 Thread Geoffrey Young
for the record Authen is only called if there is a 'require' that's true and AuthType/AuthName directive, but that is not :) you might run into trouble if you don't define those directives, but their absence won't prevent the auth phases from running. --Geoff

Re: PerlAuthenHandler PerlAuthzHandler in mod_perl 2.0

2007-06-28 Thread John ORourke
Geoffrey Young wrote: and AuthType/AuthName directive, but that is not :) you might run into trouble if you don't define those directives, but their absence won't prevent the auth phases from running. Interesting and useful! In that case we need a doc patch - see

Re: PerlAuthenHandler PerlAuthzHandler in mod_perl 2.0

2007-06-28 Thread Martijn
http://perl.apache.org/docs/2.0/user/handlers/http.html is your friend... Authen is only called if there is a 'require' and AuthType/AuthName directive, Authz is only called if Authen is successful. Thanks to you both, this does help a lot. In this particular case, I was only interested in the