异常处理程序出错:
无法打开流或文件“/home/wwwroot/default/tor_service/app/storage/logs/laravel.log”:无法打开流:/ home / wwwroot / default / vendor / monolog中的权限被拒绝/monolog/src/Monolog/Handler/StreamHandler.php:84
任何人都知道如何解决这个问题? 谢谢。
答案 0 :(得分:-1)
存储文件夹应该可以由您的网络服务器写入。
您可以将var MyForm: TMyForm;
...
//Dynamically create the form
MyForm := TMyForm.Create(Application)
...
//Destroy the form to free up memory
Application.RemoveComponent(MyForm);//reduces RefCount from 4 to 2
if MyForm.RefCount=1 then //RefCount is 2 here
MyForm := nil
else
ShowMessage('Cannot release MyForm: RefCount='+inttostr(MyForm.RefCount));
目录的所有者更改为storage
www-data
或者如果您在开发环境中,则可以更改文件夹的权限(不推荐)
chown -R www-data:www-data storage