Hi Robin, sorry to hear that it was unsucessful. Here are a few more pointers that you need to double/triple check.
did u restart the apache server after the changes?
Have you made sure that the php-ini.dist file has been renamed to php.ini
Copied over the .dlls to the \system\ folder as per installation instructions.
Three important parts need to be changed within the .conf file.
following:
ScriptAlias: This controls which directories contain server scripts.
ScriptAliases are essentially the same as Aliases, except that
documents in the realname directory are treated as applications and
run by the server when requested rather than as documents sent to the
client. The same rules about trailing "/" apply to ScriptAlias
directives as to Alias.
#
ScriptAlias /cgi-bin/ "C:/Apache/cgi-bin/"
You need to add another ScriptAlias line to the end, just like this:
ScriptAlias /php/ "C:/php/"
AddType allows you to tweak mime.types without actually editing it, or to
make certain files to be certain types.
#
For example, the PHP3 module (not part of the Apache distribution)
will typically use:
#
#AddType application/x-httpd-php3 .phtml
#AddType application/x-httpd-php3-source .phps
AddType application/x-httpd-php .php .phtml
AddType application/x-httpd-php-source .phps
#
Action lets you define media types that will execute a script whenever
a matching file is called. This eliminates the need for repeated URL
pathnames for oft-used CGI file processors.
Format: Action media/type /cgi-script/location
Format: Action handler-name /cgi-script/location
#
You need to include an Action line for your new file types, so that they automatically get sent through the PHP parser. So add this:
Action application/x-httpd-php /php/php.exe
If all else fails, drop me a mail with your httpd.conf and i'll see if i can spot any issues. Don't worry, it took me a few attempts before everything got running.
-Abi