Right, been trying to get php mysql and apache to work.
So far, Apache is working fine stuck with PHP, well kind of. It works fine BUT it doesn't require the php.ini file. When I invoke phpinfo() it give me the correct screen with the following:
Configuration File (php.ini) Path C:\WINDOWS
Loaded Configuration File (none)
Now, I've searched for it and it is nowhere in C:\Windows. I've done a few test scripts with php and they work fine.
The Apache httpd.conf file has the following in it:
LoadModule php5_module "c:/php/php5apache2_2.dll"
AddType application/x-httpd-php .php
PHPIniDir "c:/php"
So to do a little test I took the php.ini file out of the php working directory and called it something else. Everything still works fine.
The only reason I'm doing this is because mySQL doesn't work (I've done everything that is suggested - all PATH and PHPRC Env Var's point to the C:/php, and changed the php.ini file etc. etc.) so I was trying to track down what the problem is. I'm guessing the fact that php seems to be running without the php.ini file means something's fishy.
Any thoughts?