拉取项目,然后执行 composer install
报如下错误:
1 | [Symfony\Component\Process\Exception\RuntimeException] |
解决方法:
找到php配置文件php.ini
打开,搜索disable_functions
指令,找到类似如下内容:
1 | disable_functions = passthru,exec,system,chroot,scandir,chgrp,chown,shell_exec,proc_get_status,popen,ini_alter,ini_restore,dl,openlog,syslog,readlink,symlink,popepassthru,stream_socket_server |
找到proc_open
并删除即可,然后重启php。
再次 composer install
又报了如下错误:
1 | [ErrorException] |
同样的,找到php配置文件php.ini
打开,搜索disable_functions
指令,找到类似如下内容:
1 | disable_functions = passthru,exec,system,chroot,scandir,chgrp,chown,shell_exec,popen,ini_alter,ini_restore,dl,openlog,syslog,readlink,symlink,popepassthru,stream_socket_server |
找到proc_get_status
并删除即可,然后重启php。