laravel post 500错误
也不知道是改了哪儿的代码
还是因为从php 5.5换到php5.6
现在就是post提交
直接报500错误
我清除了下缓存
也看不到500错误了
直接是空白页
请教这是哪里有问题?
或者怎么才能让laravel给个错误页面
post的话
/public/index.php中
$response这里直接是空的
貌似是权限问题
改了777现在出现错误提示页面了
还是因为从php 5.5换到php5.6
现在就是post提交
直接报500错误
我清除了下缓存
也看不到500错误了
直接是空白页
请教这是哪里有问题?
或者怎么才能让laravel给个错误页面
$kernel = $app->make(Illuminate\Contracts\Http\Kernel::class);
$response = $kernel->handle(
$request = Illuminate\Http\Request::capture()
);
var_dump($response);
$response->send();
$kernel->terminate($request, $response);
post的话
/public/index.php中
$response这里直接是空的
貌似是权限问题
改了777现在出现错误提示页面了
0 个回复