[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[cobalt-users] Re: Raq 3 won't restart web server after PHP 4 installed



> Cannot load /etc/httpd/usr/lib/apache/libphp4.so into server:
> /etc/httpd/usr/lib/apache/libphp4.so: cannot open shared object file: No
> such file or directory /usr/sbin/httpd

This indicates that your LoadModule line doesn't start with /

ie 
  LoadModule php4_module usr/lib/apache/libphp4.so

the correct line would be
  LoadModule php4_module /usr/lib/apache/libphp4.so

/DS