DLL-files.com Client fixes your immediate error, and solves any possible future DLL errors. When you buy DLL-files.com Client it’s yours. You pay just once and can use the program whenever you need it.
- Download php5ts.dll free! Fix DLL missing error. Solve it yourself or get help using DLL-files.com Client to fix DLLerror automatically.
- If the php5ts.dll file is not in the DLL Cache, or the DLL Cache is corrupted, you will be prompted to insert the Windows installation disc to recover the original files. To run System File Checker ( Windows XP, Vista, 7, 8, and 10 ).
- I just downloaded and installed those two files and after downloading a copy of msvcr110.dll and compensating for 2.4’s new permissions change, I was able to load a test PHP script without issue. The problem is likely in your configuration files (most likely your Apache httpd.conf file).
- Unable to load dynamic library 'C: php ext php_pgsql.dll' - The specified module could not be found. Another solution: copy libpq.dll/all files from zip (if you have php from installer).
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:
same goes for following files:
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:
I don't understand what am I doing wrong.
Server configuration is Windows 2008 R2 64bit, IIS7, PHP 5.3.27
1 Answer
PHP cannot load a DLL file, if the file cannot be found OR the library has a dependency that cannot be found. If the file is in correct location, there are probably dependent libraries that cannot be loaded.
E.g. (for OCI8, from http://www.php.net/manual/en/oci8.requirements.php):
The OCI8 1.4 extension is included with PHP 5.3, PHP 5.4 and PHP 5.5. It is also available from » PECL. A newer OCI8 2.0 version is available only from » PECL. OCI8 1.4 requires Oracle 12c, 11g, 10g or 9iR2 client libraries and will install on PHP 4.3.9 onwards. OCI8 2.0 requires Oracle 12c, 11g or 10g client libraries and will install on PHP 5.2 onwards.
If the Oracle Database is on the same machine as PHP, the database software already contains the necessary libraries. When PHP is on a different machine, use the free » Oracle Instant Client libraries.
Aleš KrajníkAleš Krajník