You are not logged in.
Pages: 1
..... i wondered why apache do not load in the udev-installation, but (!!!) it was not udev, but php that was updated to 5.0
/usr/sbin/apachectl start Syntax error on line 262 of /etc/httpd/conf/httpd.conf: Cannot load /usr/lib/apache/libphp4.so into server: /usr/lib/apache/libphp4.so: cannot open shared object file: No such file or directory
apache is waiting for the php4 to load, but only php5 is available -> http://bugs.archlinux.org/index.php?do=details&id=1141
I can also not start apache with "apachectl start" but works fine with "/etc/rc.d/httpd start".
For testing, add this code in a php file (/home/httpd/html/test.php) and run: http://localhost/test.php
<?
phpinfo()
?>
Markku
Offline
for the redundancy of infos:
in /etc/httpd/conf/httpd.conf i changed
LoadModule php4_module lib/apache/libphp4.so
to
LoadModule php5_module lib/apache/libphp5.so
and apache is working again
The impossible missions are the only ones which succeed.
Offline
Pages: 1