make test 有出错
make test 有报错:
Build
complete.
Don't forget to run 'make
test'.
+-----------------------------------------------------------+
| !
ERROR ! |
| The test-suite requires that proc_open() is available. |
|
Please check if you disabled it in php.ini.
|
+---------------------------------------------
解决方法:
vi
/usr/local/php/etc/php.ini
找到disable_functions = shell_exec, system,
passthru, exec, popen, proc_open
改为disable_functions = shell_exec, system,
passthru, exec, popen
保存退出。
接着
make test
通过测试