【发布时间】:2011-03-18 17:15:44
【问题描述】:
所以我将这一行添加到 bootstrap.php
protected function _initSetDefaultKeywords() {
$view = $this->bootstrap('view')->getResource('view');
$view->keywords = 'default keywords';
}
但它会显示错误
Fatal error: Uncaught exception 'Zend_Application_Bootstrap_Exception' with message 'Resource matching "view" not found
所以我尝试将 resources.view[] = "" 添加到 application.ini,但是当这种情况发生时,我所有的视图助手突然停止工作
* s
An error occurred
Application error
Exception information:
Message: Plugin by name 'X' was not found in the registry
我该如何解决这个问题
当前 app.ini
[production]
phpSettings.display_startup_errors = 0
phpSettings.display_errors = 0
includePaths.library = APPLICATION_PATH "/../library"
bootstrap.path = APPLICATION_PATH "/Bootstrap.php"
bootstrap.class = "Bootstrap"
appnamespace = "Application"
resources.frontController.controllerDirectory = APPLICATION_PATH "/controllers"
resources.frontController.params.displayExceptions = 0
resources.frontController.defaultControllerName = "view"
resources.view[] = ""
[staging : production]
[testing : production]
phpSettings.display_startup_errors = 1
phpSettings.display_errors = 1
[development : production]
phpSettings.display_startup_errors = 1
phpSettings.display_errors = 1
resources.frontController.params.displayExceptions = 1
【问题讨论】:
-
您可以发布您当前的 application.ini 文件吗?
标签: php zend-framework bootstrapping