Zend Framework 2本地设置中缺少其他错误信息

时间:2014-12-04 22:41:52

标签: zend-framework2

我设置了zend app,我收到了500条错误消息

An error occurred
An error occurred during execution; please try again later.

缺少其他信息部分

我需要设置dev环境变量吗?

我无法弄清楚问题

1 个答案:

答案 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

 //...

希望这有帮助。