我已经在.htaccess中设置了日志流,并禁用了日志@ production,所以日志就像我希望看到它们一样。但是如何为访问者显示任何自定义错误屏幕?现在我得到了空白页面。任何sugestions?
干杯, 广告
答案 0 :(得分:0)
发生错误时执行try{...}catch{...}
,然后设置自定义错误消息。你应该有这样的东西:
<强>控制器强>
try
{
// stuff
}
catch(Zend_Exception $Ex)
{
$this->view->Error = 'My custom error';
}
查看强>
if ($this->Error !== null)
echo 'Error: ' . $this->Error;