我在github回购中看到了这个。这是一个与laravel相关的配置。
Ensure permissions in storage folder has write access.
$ chmod -R 755 storage
$ chown www-data:www-data -Rf storage
我正在使用Windows,我是否必须执行上述命令?
答案 0 :(得分:0)
简单的引用来自Laravel permission issue in windows 但是,在Windows中,引用帖子here:
如果我想控制我的Program Files文件夹,我需要输入以下内容:
takeown /f "C:\Program Files" /r /d y
icacls "C:\Program Files" /grant christian:F /t /q
我还没有在我的系统上测试过这个,但我找到了至少两个使用它的参考页面。只需更改目录的路径,并注意
/r
表示递归,就像Linux系统的-R
一样。
希望这会有所帮助:)