Laravel项目部署到现场报错
There is no existing directory at "D:\ProgramFiles\phpstudy_pro\WWW\laravel10\storage\logs" and it could not be created: Permission denied
如下图所示:
解决这个问题,首先我们先清理下缓存
1、清理路由缓存
php artisan route:clear
2、清理配置缓存
php artisan config:clear
3、清理cache缓存
php artisan cache:clear
如果还有问题,我们可以继续下面操作
删除根目录下config.php:路径为 bootstrap/cache/config.php,如果不想删除可以重命名
删除storage/logs文件:路径为 storage/logs
文章评论(0)