2009-11-06 6 views
-2

Действительно раздражает!Как избавиться от этих предупреждений после установки ядра zend?

PHP Warning: PHP Startup: bcmath: Unable to initialize module 
Module compiled with module API=20060613, debug=0, thread-safety=0 
PHP compiled with module API=20060613, debug=0, thread-safety=1 
These options need to match 
in Unknown on line 0 
PHP Warning: PHP Startup: curl: Unable to initialize module 
Module compiled with module API=20060613, debug=0, thread-safety=0 
PHP compiled with module API=20060613, debug=0, thread-safety=1 
These options need to match 
in Unknown on line 0 
PHP Warning: PHP Startup: gd: Unable to initialize module 
Module compiled with module API=20060613, debug=0, thread-safety=0 
PHP compiled with module API=20060613, debug=0, thread-safety=1 
These options need to match 
in Unknown on line 0 
PHP Warning: PHP Startup: imap: Unable to initialize module 
Module compiled with module API=20060613, debug=0, thread-safety=0 
PHP compiled with module API=20060613, debug=0, thread-safety=1 
These options need to match 
in Unknown on line 0 
PHP Warning: PHP Startup: mbstring: Unable to initialize module 
Module compiled with module API=20060613, debug=0, thread-safety=0 
PHP compiled with module API=20060613, debug=0, thread-safety=1 
These options need to match 
in Unknown on line 0 
PHP Warning: PHP Startup: soap: Unable to initialize module 
Module compiled with module API=20060613, debug=0, thread-safety=0 
PHP compiled with module API=20060613, debug=0, thread-safety=1 
These options need to match 
in Unknown on line 0 
PHP Warning: PHP Startup: sockets: Unable to initialize module 
Module compiled with module API=20060613, debug=0, thread-safety=0 
PHP compiled with module API=20060613, debug=0, thread-safety=1 
These options need to match 
in Unknown on line 0 
PHP Warning: PHP Startup: mysqli: Unable to initialize module 
Module compiled with module API=20060613, debug=0, thread-safety=0 
PHP compiled with module API=20060613, debug=0, thread-safety=1 
These options need to match 
in Unknown on line 0 
PHP Warning: PHP Startup: mysql: Unable to initialize module 
Module compiled with module API=20060613, debug=0, thread-safety=0 
PHP compiled with module API=20060613, debug=0, thread-safety=1 
These options need to match 
in Unknown on line 0 
PHP Warning: PHP Startup: pdo_mysql: Unable to initialize module 
Module compiled with module API=20060613, debug=0, thread-safety=0 
PHP compiled with module API=20060613, debug=0, thread-safety=1 
These options need to match 
in Unknown on line 0 
PHP Warning: PHP Startup: pdo_pgsql: Unable to initialize module 
Module compiled with module API=20060613, debug=0, thread-safety=0 
PHP compiled with module API=20060613, debug=0, thread-safety=1 
These options need to match 
in Unknown on line 0 
PHP Warning: PHP Startup: pgsql: Unable to initialize module 
Module compiled with module API=20060613, debug=0, thread-safety=0 
PHP compiled with module API=20060613, debug=0, thread-safety=1 
These options need to match 
in Unknown on line 0 
^C 

ответ

0

Этот вопрос уже задан. Вы пытаетесь загрузить не-потокобезопасные расширения в PHP, который был скомпилирован с потоковой безопасностью. Перекомпилируйте PHP или модули.

0

Ошибка в том, что модули модулей имеют thread-safety = 0 , а PHP имеет thread-safety = 1, и эти 2 должны совпадать.

Вариант компиляции для безопасности потока должен быть идентичным.

 Смежные вопросы

  • Нет связанных вопросов^_^