0

当我在 Zend Framework 应用程序中处理一些异常时,我看到以下错误消息:

Uncaught exception 'Zend_View_Exception' with message 'script 'error/error.phtml' not found in path (C:\wamp\www\my_app\application/views/)' in 

如果我将 error/error.phtml 移动到“view”文件夹中,一切正常。

而且我不明白为什么zend在“view”文件夹中搜索error.phtml文件,而不是在“view/scripts”文件夹中。

请帮忙

4

1 回答 1

0

您可以将以下代码添加到引导程序中,这样它就不会检查 error.phtml。

$oFrontController->throwExceptions(true);
于 2013-10-15T22:46:42.783 回答