>> Something I did find in httpd.conf was this, is this a problem? >> <IfModule !mod_perl.c> >> #unable to locate mod_perl.so (could be a static build) >> </IfModule> > >Yup, you have pinpointed the problem. I have never seen this problem with >mod_perl itself. There are quite a few scenarios where it can happen with >third party modules using Apache::Test. > >So let's figure out why it couldn't find mod_perl.so. Do you have >src/modules/perl/mod_perl.so? If so do file perms look alright?
I don't have that shared library. Could this be because I built it like this (with MP_USE_STATIC) - perl Makefile.PL MP_INST_APACHE2=1 MP_AP_PREFIX=/usr/local/apache2 MP_USE_STATIC=1 The results of t/TEST -trace=debug -config ==> unable to locate mod_perl.so (could be a static build) So it would appear that I want to build mod_perl without the MP_USE_STATIC=1, is that correct? Thanks again, Tim
