问题 在zend框架中报告错误


我在zend框架中报告错误时遇到问题,错误消息没有显示在浏览器上,我发现错误是这样的:

发生错误

应用程序错误

但是我已经在我的application.ini文件中使用了这些配置:

phpSettings.display_startup_errors = 1

phpSettings.display_errors = 1

phpSettings.track_errors = 1

phpSettings.error_reporting = E_ALL

先谢谢了


6351
2018-03-22 14:46


起源

你能告诉我们你的errorController中的一些代码吗? - kjy112


答案:


你提到的设置是php错误管理,而你正在寻找的是Zend错误和异常报告。正如kjy112所提到的,看起来Zend默认为生产环境,它不显示任何错误报告。

Zend快速入门可能是帮助您快速实现此目标的最快方法: http://framework.zend.com/manual/en/zend.application.quick-start.html

基本上你可以在index.php文件中设置一个define(不是最干净的),或者我建议你在apache配置中设置它,然后从index.php文件中读取它。我在我的Bootstrap中使用这样的东西:

if (!defined('APPLICATION_ENVIRONMENT'))
{
    if (getenv('APPLICATION_ENVIRONMENT')) {
        define('APPLICATION_ENVIRONMENT', getenv('APPLICATION_ENVIRONMENT'));
    } else {
        define('APPLICATION_ENVIRONMENT', 'production');
    }
}

默认的Zend error.phtml视图类似于以下代码,它阻止生产环境中的显示:

<?php if ('production' !== $this->env): ?>
<div id="error">
    <p>
        <ul class="errorList">
            <li>
                <h3><?php echo $this->message ?></h3> 
            </li>
            <li>
                <h4>Exception information:</h4>
                <p><?php echo $this->exception->getMessage() ?></p>
            </li>
            <li>
                <h4>Stack trace:</h4>
                <p><?php echo $this->exception->getTraceAsString() ?></p>
            </li>
            <li>
                <h4>Request Parameters:</h4>
                <p><?php var_dump($this->request->getParams()) ?></p>
            </li>
        </ul>
    </p>
</div>
<?php endif ?>

13
2018-03-22 14:54



是的,有一个阻止生产环境的if语句 - Ahmad A Bazadgha


我有同样的问题,最终分为两步:

1.Open {project name}/application/configs/application.ini 并在最后添加以下行:

[development : production]  
phpSettings.display_startup_errors = 1
phpSettings.display_errors = 1
resources.frontController.params.displayExceptions = 1
settings.debug.enabled = 1

2.Modify {project name}/public/index.php

<?php    
// Define path to application directory
defined('APPLICATION_PATH') || define('APPLICATION_PATH', realpath(dirname(__FILE__) . '/../application'));

// Define application environment
defined('APPLICATION_ENV') || define('APPLICATION_ENV', (getenv('APPLICATION_ENV') ? getenv('APPLICATION_ENV') : 'production'));

// Typically, you will also want to add your library/ directory
// to the include_path, particularly if it contains your ZF installed
set_include_path(implode(PATH_SEPARATOR, array(
    dirname(dirname(__FILE__)) . '/library',
    get_include_path()
)));

/**
 * Zend_Application
 */
require_once 'Zend/Application.php';

// Create application, bootstrap, and run
$application = new Zend_Application(APPLICATION_ENV, APPLICATION_PATH . '/configs/application.ini');
$application->bootstrap()->run();

?>

希望这对你也有用。


2
2017-09-10 12:33