请帮帮我。 Zend Framework输出错误:
Fatal error: Uncaught exception 'Zend_Application_Resource_Exception' with message 'Bootstrap file found for module "messages" but bootstrap class "Messages_Bootstrap" not found' in
/home/aqq10697/public_html/readder.ru/library/Zend/Application/Resource/Modules.php:82 Stack trace: #0
/home/aqq10697/public_html/readder.ru/library/Zend/Application/Bootstrap/BootstrapAbstract.php(680): Zend_Application_Resource_Modules->init() #1
/home/aqq10697/public_html/readder.ru/library/Zend/Application/Bootstrap/BootstrapAbstract.php(623): Zend_Application_Bootstrap_BootstrapAbstract->_executeResource('modules') #2
/home/aqq10697/public_html/readder.ru/library/Zend/Application/Bootstrap/BootstrapAbstract.php(583): Zend_Application_Bootstrap_BootstrapAbstract->_bootstrap(NULL) #3
/home/aqq10697/public_html/readder.ru/library/Zend/Application.php(355): Zend_Application_Bootstrap_BootstrapAbstract->bootstrap(NULL) #4
/home/aqq10697/public_html/readder.ru/index.php(52): Zend_Application->bootstrap() #5 {main} thrown in
/home/aqq10697/public_html/readder.ru/library/Zend/Application/Resource/Modules.php on line 82
我该怎么办?
答案 0 :(得分:2)
ZF为你的消息模块找到了一个bootstrap类(可能在application/modules/messages/Bootstrap.php
)。期望这个文件定义一个名为Messages_Bootstrap
的类,但它没有。添加类或删除引导程序文件。
如果您添加该类,它将看起来像这样:
class Messages_Bootstrap extends Zend_Application_Module_Bootstrap
{
}