我正在使用Laravel 5.4,我运行作曲家更新以更新到最新版本5.4.27。当我尝试使用命令 php artisan serve 运行我的服务器时,它不起作用,并且我在所有 php artisan 命令上都不断收到此错误 [错误异常] file_put_contents(/bootstrap/cache/ 服务.php(: 无法打开流: 权限被拒绝
问题是工匠无法写入"bootstrap/cache/services.php您可以通过使用 chmod 更改权限来解决此问题:
# chmod 664 bootstrap/cache/services.php
另外,不要忘记设置此文件的正确所有者/组(可能是www-data(:
# chgrp www-data bootstrap/cache/services.php