我的服务器上有 centos 6.5。我升级到了 centos 7。
这次升级后,我拥有的是 php 5.4,而不是 php 5.3。
除 APC 和 xhprof 扩展外,一切运行正常。
这是我尝试重新启动 apache 或任何其他与 Web 服务器有关的操作时遇到的错误。
PHP Warning: PHP Startup: apc: Unable to initialize module
Module compiled with module API=20090626
PHP compiled with module API=20100525
These options need to match
in Unknown on line 0
PHP Warning: PHP Startup: xhprof: Unable to initialize module
Module compiled with module API=20090626
PHP compiled with module API=20100525
These options need to match
in Unknown on line 0
PHP 5.4.16 (cli) (built: Oct 31 2014 12:59:36)
谁能帮忙啊!
答案1
您可能通过 pecl 安装了 apc。如果是,则必须通过 pecl 重新安装 APC 和 xhprof,以便针对您当前的 PHP 版本重新编译它们
pecl install apc
pecl install xhprof