Hi there,
if tried to install php4 into an apache2. The problem is, when i try to start mine apache2 without php it will work fine but when i uncommend the loadmod for php it wont start anymore.
If tried to start it with the loglevel debug but it return any error-msgs. In the error_log isnt anythink too.
Thats the configure-line:
./configure --with-apxs2=/usr/local/apache2/bin/apxs --with-mysql --enable-sockets --enable-ftp --with-bz2
What happened when you ran that configure command. Were there any errors reported? Were you able to run make succesfully? Did you install it afterward? What platform are you on?
There must be some indication of what's happening in the error_log. Are you looking at the right one? From the above it looks like your logs should be in /usr/local/apache2/logs/. Try running:
/usr/local/apache2/bin/apachectl configtest
See what that tells you. If it says that your syntax is OK, then start it with:
/usr/local/apache2/bin/apachectl start
See what that says.
-- Matt M.