php artisan cache:clear命令报错
生活随笔
收集整理的這篇文章主要介紹了
php artisan cache:clear命令报错
小編覺得挺不錯的,現(xiàn)在分享給大家,幫大家做個參考.
在搭建Laravel 5.7版本以上的項(xiàng)目中使用清除緩存命令:
php artisan cache:clear?
有時(shí)候會出現(xiàn)以下報(bào)錯:
“Failed to clear cache. Make sure you have the appropriate permissions”
原因是差個目錄,需要新建一個目錄,就可以了。
mkdir -p storage/framework/cache/data
同時(shí)你需要設(shè)置目錄權(quán)限?
chmod 777 /home/www/dir/bootstrap/cache && chmod 777 /home/www/dir/bootstrap/cache/*
?
參考:
“Failed to clear cache. Make sure you have the appropriate permissions” in Laravel 5.7_陽水平的博客-CSDN博客
總結(jié)
以上是生活随笔為你收集整理的php artisan cache:clear命令报错的全部內(nèi)容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: vue中form表单支持回车键提交踩坑
- 下一篇: 关于laravel框架中and 和orW