我是Zend Framework的新手。我正在爲前端和管理面板使用模塊。Zend模塊與表格
在管理面板,我想有登錄表單,則文件夾結構是
應用/
modules/
backend/
controllers/
LoginController.php
forms/
LoginForm.php
views/
scripts/
login/
index.phtml
我有一個錯誤「致命錯誤:類‘Backend_Forms_LoginForm’未找到在第9行D:\ wamp \ www \ ioc \ Application \ modules \ backend \ controllers \ LoginController.php「
請幫我解決這個問題。
謝謝。
我使用以下URL http://weierophinney.net/matthew/archives/165-Login-and-Authentication-with-Zend-Framework.html
在控制器中創建控制器和形式,它由
返回新Backend_Forms_LoginForm(陣列( '動作'=> '/登錄/過程', 調用形式'method'=>'post', ));
請幫我解決這個問題。
+1模塊自動加載器只會在模塊引導類存在時註冊 – Phil 2011-03-23 03:00:44
@Phil謝謝,我在創建其他模塊時缺少Bootstrap.php。 – steve 2012-06-22 00:42:01