How can I fix flash-flag PHP thread-safe / non-threaded safe mismatch?

This is outside the error log:

PHP Warning: PHP Startup: BOPEE Extension: Unable to initialize module
Module compiled with build ID=API20090626,TS,VC9
PHP    compiled with build ID=API20090626,NTS,VC9
These options need to match
 in Unknown on line 0

PHP Warning:  PHP Startup: CustomExt Module: Unable to initialize module
Module compiled with build ID=API20090626,TS,VC9
PHP    compiled with build ID=API20090626,NTS,VC9
These options need to match
 in Unknown on line 0

How do I get a non-threadsafe source for PHP? The only download link I found on windows.php.net/download was http://windows.php.net/downloads/releases/php-5.3.2-src.zip , and that seems to be file code --- or is there any way to tell the source that it is actually non-thread safe?

I tried putting --disable-ztson the command line for configure.bat, but so far this has a good effect on the exits from configure.bat, it looks like the source is no less thread safe.

+3
source share
1 answer

, PHP (NTS), (TS). , Zend Thread-Safe ZTS ( , VS 2008).

ZTS=1 ZTS=0 .
ZTS.

+6

Source: https://habr.com/ru/post/1755117/


All Articles