即使获得正确的权限也无法写入日志文件夹
Cannot write in logs folder even after correct permissions
我遇到错误 The stream or file "/opt/lampp/htdocs/project/storage/logs/laravel-date.log" could not be opened: failed to open stream: Permission denied
我已经尝试将权限设置为 777
和 775
。我突然开始收到这个错误。这是项目的 ls -l
输出。
drwxrwxr-x 15 root www-data 4096 Dec 2 2018 project
我正在为我当前的开发环境使用 XAMPP,而不是本地 LAMPP 堆栈。
好的,所以我通读了 here 中的评论,并将 app
和 public
文件夹的目录权限更改为 777
。 775
为 storage
,其余为 664
。它奏效了。
我遇到错误 The stream or file "/opt/lampp/htdocs/project/storage/logs/laravel-date.log" could not be opened: failed to open stream: Permission denied
我已经尝试将权限设置为 777
和 775
。我突然开始收到这个错误。这是项目的 ls -l
输出。
drwxrwxr-x 15 root www-data 4096 Dec 2 2018 project
我正在为我当前的开发环境使用 XAMPP,而不是本地 LAMPP 堆栈。
好的,所以我通读了 here 中的评论,并将 app
和 public
文件夹的目录权限更改为 777
。 775
为 storage
,其余为 664
。它奏效了。