I have installed Apache 2 quite a while ago, and it works allright. I would like to use PHP as well, and I understand this is installed by default on 10.3. I added a few lines to the apache config-file to activate PHP, but that doesn't seem to work. I wonder why.
LoadModule php4_module modules/libphp4.so
# Use for PHP 4.x:
AddHandler php-script php
# PHP Syntax Coloring
# (optional but useful for reading PHP source for debugging):
AddType application/x-httpd-php-source phps
I added this to the file /library/apache2/conf/httpd.conf. But still the php file is served as text. It is not parsed.
Then I have another problem with Apache. I use a preference pane to restart Apache. When doing a graceful restart, it gets back in a fraction of a second. Then if I repeat this, I get an error.
If I stop the server, it takes quite a long time. If the server is stopped, starting it again results in an error, just like with the second graceful restart.
So I go to the terminal. Open the bin-directory and enter "apachectl start" (or stop). If I start, it says something about using the /private/etc/httpd/user/remote.conf file. Furthermore, if I start apache via the terminal, I get the old version started (1.3).
I suppose I'm doing a lot of things wrong here, but I can't figure out what.

Can anyone help a hand?