Edit report at https://bugs.php.net/bug.php?id=58744&edit=1
ID: 58744 Comment by: christian at cybernet1 dot com Reported by: gyoung dot hwa dot kim at gmail dot com Summary: php5.dll was not found in thread safe php. Status: Not a bug Type: Bug Package: PECL bug system Operating System: window PHP Version: 5.2.10 Block user comment: N Private report: N New Comment: I am having a similar issue with php5.4.11, when trying to execute php.exe, php-win.exe or php-cgi.exe I get php5.dll is missing. This is a Windows IIS 7.5 server, phpinfo loads fine on any of the websites stating the version 5.4.11 and thread safety is enabled. Any help would be appreciated. Thanks, -Christian Previous Comments: ------------------------------------------------------------------------ [2013-01-06 16:53:21] tyr...@php.net Thank you for taking the time to report a problem with PHP. Unfortunately you are not using a current version of PHP -- the problem might already be fixed. Please download a new PHP version from http://www.php.net/downloads.php If you are able to reproduce the bug with one of the latest versions of PHP, please change the PHP version on this bug report to the version you tested and change the status back to "Open". Again, thank you for your continued support of PHP. ------------------------------------------------------------------------ [2009-07-01 06:13:38] gyoung dot hwa dot kim at gmail dot com Description: ------------ I installed Apache 2.0, php-5.2.10-Win32.zip, db2 Express C. I followed all the instructions to set up php and phpinfo() can be displayed from the web page. I wrote a test.php which connects to a DB2 database and ran it with "php test.php". It failed with the following error message. "This application has failed to start because php5.dll was not found. Re-installing the application may fix this problem." In PHP directory, I have php5ts.dll not php5.dll. >From the dependency walker, php.exe should look for php5ts.dll. Because of the error, I installed php-5.2.10-nts-Win32.zip, this time I got error from apache saying "apache is running thread safe mode, and php is not in thread safe mode, so php cannot be started." So both of them didn't work with apache. Reproduce code: --------------- test.php source code <?php $conn = db2_connect('sample', 'userid', 'password'); if ($conn) { echo "Connection succeeded.\n"; if (db2_autocommit($conn)) { echo "Autocommit is on.\n"; } else { echo "Autocommit is off.\n"; } db2_close($conn); } else { echo "Connection failed."; } $create = 'DROP TABLE xmlTest'; $result = db2_exec($conn, $create); $create = 'CREATE TABLE xmlTest (id INTEGER, data XML)'; $result = db2_exec($conn, $create); $insert = "INSERT INTO xmlTest values (0, '<Client><Address><street>555 Bailey Ave</street><city>San Jose</city><state>CA</state><zip>95141</zip></Address><email>ranjanr @us.ibm.com</email></Client>')"; db2_exec( $conn, $insert ); if ($conn) { $sql = "SELECT data FROM xmlTest"; $stmt = db2_prepare( $conn, $sql ); db2_execute($stmt); while($result = db2_fetch_assoc($stmt)) { print_r($result); echo "\n"; } db2_close($conn); } else { echo "Connection failed.\n"; } ? Expected result: ---------------- I expected the connection to db2 is established. Actual result: -------------- failed with errors. ------------------------------------------------------------------------ -- Edit this bug report at https://bugs.php.net/bug.php?id=58744&edit=1 -- PECL development discussion Mailing List (http://pecl.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php