I work with Activestate Perl on Windows and Apache. I want to run my scripts under mod_perl. To prevent Apache from caching modules during development I want to use Apache::Reload module.
I have added the following lines to httpd.conf
PerlModule Apache::Reload
PerlInitHandler Apache::Reload
PerlModule Apache2::RequestUtil
Then I restart Apache. And then all my scripts produce Internal Server Error (500).
There are no errors in Apache log.
Do you know am I wrong or Apache::Reload just does not work on Windows?