quot;The stream or file quot;laravel.logquot; could not be opened: failed to open stream: Permission deniedquot;(“流或文件laravel.log无法打开:无法打开流:权限被拒绝)
问题描述
几天前我将文件上传到我的cent OS服务器,它工作正常,但从今天开始我收到错误.
I upload the file to my cent OS server a few days ago, it was working fine, but from today I am getting the error.
流或文件/var/www/html/hasibtest/storage/logs/laravel.log"无法打开:无法打开流:权限被拒绝
The stream or file "/var/www/html/hasibtest/storage/logs/laravel.log" could not be opened: failed to open stream: Permission denied
我的日志文件在哪里具有 777 权限,我也在尝试使用 0755、0644
Where My log file is with 777 permission I am also trying with 0755, 0644
谁能告诉我如何解决这个问题?
can anyone tell me how I can resolve this issue?
推荐答案
先试试这个递归获取目录的所有权
first try this to take ownership of the directory recursively
sudo chown -R $USER:www-data storage
sudo chown -R $USER:www-data bootstrap/cache
然后使用以下设置正确的目录访问权限
Then use the following to set proper directory access
chmod -R 775 storage
chmod -R 775 bootstrap/cache
永远不要将目录权限设置为 777(除非您知道自己在做什么)
这篇关于“流或文件"laravel.log"无法打开:无法打开流:权限被拒绝"的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:“流或文件"laravel.log"无法打开:无法打开流:权限被拒绝"
基础教程推荐
- 如何在 PHP 中的请求之间持久化对象 2022-01-01
- Libpuzzle 索引数百万张图片? 2022-01-01
- 通过 PHP SoapClient 请求发送原始 XML 2021-01-01
- 在多维数组中查找最大值 2021-01-01
- 在 PHP 中强制下载文件 - 在 Joomla 框架内 2022-01-01
- mysqli_insert_id 是否有可能在高流量应用程序中返回 2021-01-01
- 在 Woocommerce 中根据运输方式和付款方式添加费用 2021-01-01
- 超薄框架REST服务两次获得输出 2022-01-01
- XAMPP 服务器不加载 CSS 文件 2022-01-01
- WooCommerce 中选定产品类别的自定义产品价格后缀 2021-01-01