Open beJuvenile opened 4 years ago
在安装的时候一直报 Unable to find the composer executable. 各种依赖也都安装好了,就是安装不成功 最后没办法只能看源码个来查找问题,终于找到问题了 在 src/System/UnixSystem.php 中,第40行 if (!function_exists('exec')) { 使用了被禁用的函数,在 php.ini 中打开这个函数就可以安装成功了
Unable to find the composer executable.
src/System/UnixSystem.php
if (!function_exists('exec')) {
On some PHP configurations "exec" is blocked by default as being dangerous, I'm not sure this really an issue.
在安装的时候一直报
Unable to find the composer executable.
各种依赖也都安装好了,就是安装不成功 最后没办法只能看源码个来查找问题,终于找到问题了 在src/System/UnixSystem.php
中,第40行if (!function_exists('exec')) {
使用了被禁用的函数,在 php.ini 中打开这个函数就可以安装成功了