Running mod_perl 1.26 on Apache 1.3.24.

I've found that if I place my PerlChildInitHandler inside a VirtualHost
block, it is never called.

This works:

...

PerlModule              Foo
PerlChildInitHandler    Foo::handler

<VirtualHost *:80>

...
PerlHandler             MyModule
...

</VirtualHost>



but this doesn't:


<VirtualHost *:80>

PerlModule              Foo
PerlChildInitHandler    Foo::handler
...
PerlHandler             MyModule

</VirtualHost>


I don't see why VirtualHost would make a difference for child-init 
handlers.  What else could I be doing wrong?

Thanks,
-Jason


Reply via email to