William McKee wrote:

On Fri, Sep 03, 2004 at 10:47:37PM -0700, Ben Hopkins wrote:


The verrrrry odd thing is that there are no errors in the build, or in apache's logs or when it tries to run a module.



What kind of error are you expecting? Perhaps mod_perl does not mind two
versions being loaded although it would seem that issuing the LoadModule
statement would trigger a warning message if mod_perl was compiled in.


How about something like duplicate symbol errors? "You want me to run this module, and I have two of them, and I don't know which one to use: Therefore I won't run anything!".

And I still get 404s for /perl-status and /server-status.



That sounds like a problem. What's in your error logs? What are your
configurations for these sections.


I got FORBIDDEN errors until I put my IP addr (I'm working on a remote server). Then I got 404s.

Here's the httpd.conf

<Location /server-status>
   SetHandler server-status
   Order deny,allow
   Deny from all
   Allow from 4.42.113.186
   Allow from 127.0.0.1
</Location>

And here's the perl-status part:

PerlModule Apache::Status

<Location /perl-status>
   SetHandler perl-script
   PerlHandler Apache::Status
</Location>

Another <Location> directive that runs HelloWorld.pm for a directory called "/howdy" works just fine, but the above ones don't.

--
Report problems: http://perl.apache.org/bugs/
Mail list info: http://perl.apache.org/maillist/modperl.html
List etiquette: http://perl.apache.org/maillist/email-etiquette.html



Reply via email to