Php Zend框架。致命错误

Php Zend框架。致命错误,php,zend-framework,Php,Zend Framework,请帮帮我。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/libra

请帮帮我。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

我该怎么办?

ZF为您的消息模块找到了一个引导类(可能位于
应用程序/modules/messages/bootstrap.php
)。它期望该文件定义一个名为
Messages\u Bootstrap
的类,但它没有。添加类或删除引导文件

如果添加该类,它将如下所示:

class Messages_Bootstrap extends Zend_Application_Module_Bootstrap
{

}