I am trying to connect php to an Oracle database using the php_oci8.dll extenstion. Here's my environment:
php 4.3
oracle 8.1.7
windows 2000
IIS
The database works fine. I can access it via SQLPlus with the test userid scott, pw=tiger without any problem.
Based on the php documentation, I see that I'm supposed to set up the the dll file in an extenstion directory. I've placed php_oci8.dll into c:\PHP\extensions (and have also place this file into c:\winnt\system32 after many failed atempts) and have changed my php.ini file as follows:
extension_dir = "c:\PHP\extensions\"
I have also uncommented the line:
extension=php_oci8.dll
When I access a .php file via the browser, I get an error that says:
unable to located c:\PHP\extensions\php_oci8.dll
I also have read in the php documentation that this dll file needs the 'Oracle8 client library to run'. Does this have anything to do with the error message? What is the client libary? Where do you get a copy of it?
Any help would be greatly appreciated.
ruski