This is out of the error log:
PHP Warning: PHP Startup: BOPEE Extension: Unable to initialize module
Module compiled with build ID=API20090626,TS,VC9
PHP
In your case above, PHP itself is non-thread-safe (NTS), but the module is thread-safe (TS). The module is thread-safe because the Zend Thread-Safe ZTS
constant is defined (either in the module's source code or in VS 2008's Preprocessor Definitions).
Simply changing ZTS=1
to ZTS=0
does not work.
You must completely remove the definition of ZTS
.