laravel 5.3 新增数据时,显示 500 错误,头都大了。已经开启 debug,怎么显示具体错误呢?

2016-09-25 19:09:58 +08:00
 fkbd
已经尝试了 db 和 Eloquent ORM 两种方法,结果都是新增数据时报错 500 错误并失败。
但是修改查找数据却都是正常。
laravel 的运行环境是 lnmp 。

<?php

namespace App\Http\Controllers;

use Illuminate\Http\Request;
use App\Http\Requests;
use App\Http\Controllers\Controller;
use App\Items;

class MainController extends Controller
{

public function additems() {
$items = new Items;
$items->name = 'John';
$items->save();
}
}
3421 次点击
所在节点    问与答
4 条回复
linkbg
2016-09-25 19:25:48 +08:00
应该把 error 提示也给放上来
chenset
2016-09-25 19:28:02 +08:00
把 storage 目录再重新设置一次读写权限就能看到错误信息了.
fkbd
2016-09-25 19:36:58 +08:00
@linkbg 就直接显示了 500 错误, log 里也没有 error 提示

@chenset 给 laravel.log 777 权限就行
linkbg
2016-09-25 19:46:25 +08:00
nginx 和 php-fpm 的 log 看一下,

这是一个专为移动设备优化的页面(即为了让你能够在 Google 搜索结果里秒开这个页面),如果你希望参与 V2EX 社区的讨论,你可以继续到 V2EX 上打开本讨论主题的完整版本。

https://www.v2ex.com/t/308863

V2EX 是创意工作者们的社区,是一个分享自己正在做的有趣事物、交流想法,可以遇见新朋友甚至新机会的地方。

V2EX is a community of developers, designers and creative people.

© 2021 V2EX