Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

dll in php "the specified module could not be found"

I am having trouble with PHP extensions. I am trying to run a script and nothing happens then I checked my error log and here is what I got:

PHP Startup: Unable to load dynamic library 'C:\Program Files (x86)\PHP\ext\php_oci8.dll' - The specified module could not be found. in Unknown on line 0

same goes for following files:

 php_oci8_11g.dll
 php_pdo_oci.dll
 php_sybase_ct.dll
 php_com_dotnet.dll

every file except php_com_dotnet.dll was installed with PHP installation, all the files are enabled in php.ini configuration. After researching online I saw some people said that it has to be copied to system32 or sysWOW64 folder, which I did without success. Then I tried to register them using regsvr32 in cmd and I am getting error for every single file:

"The module name_of_the_module.dll failed to load"

I don't understand what am I doing wrong.

Server configuration is Windows 2008 R2 64bit, IIS7, PHP 5.3.27

like image 241
zuboje Avatar asked Nov 04 '13 16:11

zuboje


1 Answers

On Windows, I solved these kind of problems by adding the path specified in 'extension_dir' (in php.ini) to the value of PATH system environment variable.

like image 127
tommy Avatar answered Sep 18 '22 11:09

tommy