我正在使用Symfony3为我的网站编写安全包/登录页面。
在某些时候,网站突然开始返回: 500内部服务器错误
我通过评论代码的最后部分,添加die()
或尝试访问其他路由来回滚代码。一切都过去了,毫无用处。 Symfony日志很干净,它们显示路由已找到,但每次刷新通常应该工作的页面时,Apache错误日志都会显示:
[Sun Feb 28 17:27:19.351415 2016] [fcgid:warn] [pid 30242](104)通过对等方重置连接:[client IP_ADDRESS:57160] mod_fcgid:从FastCGI服务器读取数据时出错
[Sun Feb 28 17:27:19.351469 2016] [core:error] [pid 30242] [client IP_ADDRESS:57160]标题前的脚本输出结束:index.php
[Sun Feb 28 17:27:19.844505 2016] [fcgid:warn] [pid 30242](104)通过对等方重置连接:[client IP_ADDRESS:57160] mod_fcgid:从FastCGI服务器读取数据时出错
[Sun Feb 28 17:27:19.844535 2016] [core:error] [pid 30242] [client IP_ADDRESS:57160]标题前的脚本输出结束:index.php
我试图通过在触发错误之前添加die()
来查看来自哪里,并且卡在HttpKernel
中:
$event = new GetResponseEvent($this, $request, $type);
die("ss");
$this->dispatcher->dispatch(KernelEvents::REQUEST, $event);
以这种方式显示 ss ,如果我在调度员之后移动die("ss");
,我会收到错误500.
任何想法为什么FastCGI都失败了?
由于