I am trying to use the Firebird extension in PHP. I have extension files ( php_pdo_firebird.dll, php_interbase.dll ) in my ext folder. I add them to my php.ini file this way
... [PHP_PDO_FIREBIRD] extension=php_pdo_firebird.dll [PHP_INTERBASE] extension=php_interbase.dll ...
No errors occur, saying that extensions cannot be loaded, and yet whenever I print my phpinfo , I do not see any of them. What am I missing here?
For what it's worth, I am running PHP version 5.3.14 TS using Apache 2.2 on Windows 7.
Edit: It seems that some errors are being logged, this is just that my error_log parameter has been overwritten (for those who see this, double check the C: \ Windows \ Temp \ php-errors log). Now he tells me that the specified modules cannot be found when the file explicitly exists.
PHP Warning: PHP Startup: Unable to load dynamic library 'C:\Program Files (x86)\PHP\ext\php_pdo_firebird.dll' - The specified module could not be found. in Unknown on line 0 PHP Warning: PHP Startup: Unable to load dynamic library 'C:\Program Files (x86)\PHP\ext\php_interbase.dll' - The specified module could not be found. in Unknown on line 0
source share