Entry
Hello, I have an error: unable to load dinamic library 'c:\php/php_oci8.dll no se puede encontrar el modulo especificado. I'm beginning with PHP.
Feb 22nd, 2008 03:22
dman, Jonathan Sharp, David Varillas, http://www.ttnr.org
When PHP is starting up it's looking for the php_oci8.dll in C:\php In
your php.ini file (Either C:\windows or C:\WINNT ) there should be a
line that contains extensions_dir and it should be set to
C:/php/extensions (php_oci8.dll should be in the directory specified by
extensions_dir and you have php installed in C:\php)
*NOTE: In your php.ini file, use the forward slash "/" instead of a
back slash "\" for your paths.
Or you can also comment out the line extension=php_oci8.dll by putting
a ; in front of it. This will prevent the extension from being loaded.