I searched around a bit and couldn't find any threads that helped me so here it goes:
I'm trying to install PHP 5 on my computer (which is running XP Pro) and it doesn't work. Here's what I've done so far:
I downloaded and installed Apache 2.0.55 with no problems (when I go to http://localhost I get the default Apache page indicating success), and then I downloaded and ran the PHP 5 installer.
I chose the advanced setting for the PHP 5 install and I changed the webserver option to Apache and then filled in my e-mail address so it will show up on the "From:" form when using the mail function (This shouldn't matter). PHP installs it's files and then a box pops up saying for me to manually configure Apache (which I expected because thats in the PHP install manual).
Next I went to my httpd.conf file and added the 3 following lines (as it says to in the PHP manual) to configure PHP as a CGI library:
ScriptAlias /php/ "c:/php/"
AddType application/x-httpd-php .php
Action application/x-httpd-php "/php/php-cgi.exe"
and it still doesn't work. Can someone help me?