美文网首页
laravel 使用中的一些问题

laravel 使用中的一些问题

作者: 没有昵称会怎样 | 来源:发表于2017-05-02 08:15 被阅读28次

    在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哈

    相关文章

      网友评论

          本文标题:laravel 使用中的一些问题

          本文链接:https://www.haomeiwen.com/subject/fofctxtx.html