当前位置:首页 > linux教程 > 列表

安装laravel后出现Whoops, looks like something went wrong

发布:smiling 来源: PHP粉丝网  添加日期:2015-04-28 15:36:42 浏览: 评论:0 

有朋友会发现安装laravel后出现Whoops, looks like something went wrong错误了,这个是什么问题呢?下面一起来看看吧.

首次安装laravel后,浏览测试地址出现错误提示.

http://192.168.128.128/public/index.php

页面上出现一行字:Whoops,looks like something went wrong。

解决办法:首先打开debug模式后显示错误,打开你larave项目的app/config/app.php文件,将其debug选项设置为true,再次运行页面,你会发现程序打印了异常.

file_put_contents(/var/www/html/app/storage/meta/services.json): failed to open stream: Permission denied

给app/storage目录设置权限即可解决问题:chmod -Rvc 777 app/storage,如果有些版本不起作用.使用

find app/storage -type d -exec chmod -vc 777 {} \;

find app/storage -type f -exec chmod -vc 777 {} \;

任何人都有读、写、运行三项权限.

Tags: Whoops looks like something

分享到: