From: "Boysenberry Payne" <[EMAIL PROTECTED]>
What should I do if I want to load the classes after the server forks?
There are many phases after the fork, the most commonly used is the
PerlResponseHandler phase
Do I understand correctly that even the modules specified in httpd.conf with
PerlResponseHandler Module::Name
are loaded before the server forks, because they are loaded with
PerlModule Module::Name
or in a startup.pl file?
But what if the module Module::Name "use" or "require" other modules?
Are they also loaded before the server forks, or I need to load them with
"PerlModule ..." in httpd.conf?
Thanks.
Octavian