Chris wrote:
Sounds like you're using the wrong script to restart apache.

What command are you using?
service httpd restart

Rebooting will most likely pick up the /etc/init.d/apache or /etc/init.d/httpd script.
Have this in /etc/rc.local on Fedora 5,

startApache=/usr/local/apache2/bin/apachectl
if [ -f "$startApache" ] ; then
        $startApache start
fi

and I see that I have left off start at the end of startApache.

Cheers.

Mark Sargent.

--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to