notes icon indicating copy to clipboard operation
notes copied to clipboard

composer install error: The disk hosting /root/.config/composer is full, this may be the cause of the following exception

Open lanlin opened this issue 4 years ago • 0 comments

场景

执行 composer install 时报错

> composer install
The disk hosting /root/.composer is full, this may be the cause of the following exception

除了这一句话什么其他的信息都没有,查看磁盘也是正常的

原因

极大的可能是由于禁用了某些系统函数所导致的

解决

在你的 php.ini 配置文件中,找到如下的地方

;disable_functions="..."     // 用 ; 暂时注释掉禁用的函数, 安装完成后再开启

lanlin avatar Sep 02 '21 10:09 lanlin