安装thinkphp5.1出错,显示
The Process class relies on proc_open, which is not available on your PHP installation
出现这样的原因是因为php.ini禁用了一个函数,即proc_open ,找到php.ini去掉这个就可以啦
解决办法:我这里以centos为例
vim /usr/local/php/etc/php.ini
然后用 / 命令查找 disable_functions
如果在出现 proc_get_status() has been disabled for security reasons 的话
同样去到php.ini 查找 proc_get_status ,删掉这个就可以了
The Process class relies on proc_open(安装thinkphp5.1出错)
原文:https://www.cnblogs.com/wt722/p/14413092.html