[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
- Subject: [cobalt-users] Re: Raq 3 won't restart web server after PHP 4 installed
- From: Donald Saltarelli <djs@xxxxxxx>
- Date: Tue Mar 13 19:20:18 2001
- Organization: The Henry Samueli School of Engineering
- List-id: Mailing list for users to share thoughts on Cobalt products. <cobalt-users.list.cobalt.com>
> 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