Open lanlin opened 3 years ago
执行 composer install 时报错
composer install
> composer install The disk hosting /root/.composer is full, this may be the cause of the following exception
除了这一句话什么其他的信息都没有,查看磁盘也是正常的
极大的可能是由于禁用了某些系统函数所导致的
在你的 php.ini 配置文件中,找到如下的地方
php.ini
;disable_functions="..." // 用 ; 暂时注释掉禁用的函数, 安装完成后再开启
场景
执行
composer install
时报错除了这一句话什么其他的信息都没有,查看磁盘也是正常的
原因
极大的可能是由于禁用了某些系统函数所导致的
解决
在你的
php.ini
配置文件中,找到如下的地方