I have been searching through this forum, but I have yet to find a working solution. I am progressing from php3 to php4 (or I should say regressing, since that is the way I feel right now).
I have Apache set up fine. I grabbed php4.0.3-dev-win32 from whatever that site was (because I needed Oracle support), as well as, the fix that was just released. Before I installed the fix, I tried accessing the php.exe directly, and I received the errors saying that it could not find the ming, ifx and curl DLL files. Once I installed the fix, now I am receiving the following error:
:::::::::::::::::::::::::::::::::::::::::::::
PHP Warning: Unable to load dynamic library 'c:/php/extensions/php_ifx.dll' - One of the library files needed to run this application cannot be found. in Unknown on line 0.
:::::::::::::::::::::::::::::::::::::::::::::
The strange thing is that the php_ifx.dll file is in the extensions folder, but it is not seeing it. Here is my setup and the steps I followed for configuration so far...
Win 98
Apache
php4.0.3-dev-win32 w/fix
1.) I unzipped all of the PHP files to c:/php
2.) I moved the php4ts.dll to the windows/system dir.
3.) I added the following lines to the httpd.conf file for Apache:
ScriptAlias /php/ "c:/php/"
Action application/x-httpd-php "/php/php.exe"
AddType application/x-httpd-php .php
4.) I added the directory in the php.ini file:
extension_dir = C:\php\extensions
5.) I saved the php.ini file in C:\windows
And I think that is it...so what am I missing here? Please help if you can. This is the cause of much frustration. If I had an extra system here, I would just set up linux on it, and forget about windows, but I have to get it set up on this system for development purposes... Thanks in advance.