It is quite possible that you have multiple copies of Apache installed.
To determine the location of the 'default' (i.e. the one that will run if no path is specified), run:
which httpd
Check your init script to determine the path to version that is setup to start.
If you already have Apache running (likely, since you got the php output), use the following to determine where it is:
ps -ef | grep httpd
If you do have multiple copies of Apache installed, you should be able to:
- Change your init script to launch the correct one
- Remove the one you are not using (once you are certain that everything is running well, you may)
- Change your configure parameters, so that you install one over the other