我设置了zend app,我收到了500条错误消息
An error occurred
An error occurred during execution; please try again later.
缺少其他信息部分
我需要设置dev环境变量吗?
我无法弄清楚问题
答案 0 :(得分:2)
您可以直接在php.ini
文件或index.php
文件中将php错误显示设置为true,以显示有关错误的更多信息。
在index.php
文件中,您可以按以下方式执行此操作:
<?php
error_reporting(E_ALL);
ini_set('display_errors', true);
编辑:
另外,请务必在display_exceptions
文件中将true
设为module.config.php
:
<?php
return array(
//...
'view_manager' => array(
'display_not_found_reason' => true,
'display_exceptions' => true, //set this parameter to true
//...
希望这有帮助。