在lamp下使用laravel 出现的一些问题
1: 第一次打开连个欢迎界面都不出现 直接给500错误
需要给storage 777的权限
chmod -R 777 storage
2:然后继续打开 又他么错误 这次直接就一英语 Whoops, looks like something went wrong.
好吧 需要打开调试模式
在config/app.php 把debug 改为true 就能看到具体是啥问题了
3: No supported encrypter found. The cipher and / or key length are invalid.
APP_KEY 的问题 重新生成下
php artisan key:generate
然后将生成的数据放进 app.php 的APP_KEY 对应的值中记得带上base64哈
网友评论