Re: A question about the post_config phase mod_perl handler

2007-11-13 Thread Boysenberry Payne
Ah, I thought it might be something like that, so anything other than 0 or OK, got it, thanks... -bop On Nov 12, 2007, at 11:33 PM, Philippe M. Chiasson wrote: Boysenberry Payne wrote: Interesting, I tried just returning and several other non-OK returns and got no error. Interesting, I su

Re: A question about the post_config phase mod_perl handler

2007-11-12 Thread Philippe M. Chiasson
Boysenberry Payne wrote: > Interesting, I tried just returning and several other non-OK returns > and got no error. Interesting, I supect the only thing that bails it out are error status in the 400-500 range then. Turns out it's a MP_HOOK_RUN_ALL (http://perl.apache.org/docs/2.0/user/handlers

Re: A question about the post_config phase mod_perl handler

2007-11-12 Thread Boysenberry Payne
Interesting, I tried just returning and several other non-OK returns and got no error. Here is a sample of what I tried: In httpd.conf: PerlPostConfigHandler MyModule::PostConfig package MyModule::PostConfig; use strict; use warnings; # Apache2 Post Config Hook Phase Handler sub

Re: A question about the post_config phase mod_perl handler

2007-11-12 Thread Philippe M. Chiasson
Boysenberry Payne wrote: > In the example at: > http://perl.apache.org/docs/2.0/user/handlers/ > server.html#C_PerlPostConfigHandler_ > > the PerlPostConfigHandler subroutine returns Apache2::Const::OK. > > I was wondering if it mattered what it returned, and if so, what are > the alternatives

A question about the post_config phase mod_perl handler

2007-11-08 Thread Boysenberry Payne
In the example at: http://perl.apache.org/docs/2.0/user/handlers/ server.html#C_PerlPostConfigHandler_ the PerlPostConfigHandler subroutine returns Apache2::Const::OK. I was wondering if it mattered what it returned, and if so, what are the alternatives? Just curious really... -bop