On Wed, 2 Apr 2003, root wrote:

> This distribution has been tested as part of the cpan-testers
> effort to test as many new uploads to CPAN as possible.  See
> http://testers.cpan.org/
>
> Please cc any replies to [EMAIL PROTECTED] to keep other
> test volunteers informed and to prevent any duplicate effort.
>
> --
> This is an error report generated automatically by CPANPLUS,
> version 0.042.
>
> Below is the error stack during 'make test':
>
> t/httpd -f `pwd`/t/httpd.conf
> Syntax error on line 37 of 
> /root/.cpanplus/5.6.1/build/Apache-AuthCookie-3.04/t/httpd.conf:
> Cannot load /etc/httpd/modules/mod_php.so into server: 
> /etc/httpd/modules/mod_php.so: cannot open shared object file: No such file or 
> directory
> make: *** [start_httpd] Error 1

This is caused by a broken httpd.conf file.

The problem is that Apache::test uses the httpd.conf file that is
referenced in the httpd binary in order to figoure out what DSO modules
need to be loaded.  But your file tries to load mod_php.so, which
apparently does not exist on your system (or at least its not in
/etc/httpd/modules/mod_php.so).

To find out where this file is, run httpd -V | grep SERVER_CONFIG_FILE

You will see something like:
 -D SERVER_CONFIG_FILE="conf/httpd.conf"

httpd -V will also tell you what HTTPD_ROOT is (in my case its
/etc/httpd), so the config file is in /etc/httpd/conf/httpd.conf for me.

Fix that file so that httpd starts successfully, then re-run make test.

Regards,
Mike

Reply via email to