0

php 1.0を使用したウェブサイトの運営を継承しましたzend framework。そして、私はこのフレームワークの経験がまったくありません。ページの文言を変更したところ、次のエラー メッセージが表示されました。私は、この問題の修正をどこから始めるべきかを知っています。

Exception information:Message: Invalid controller specified (index) , 

#0 /usr/local/zend/share/ZendFramework/library/Zend/Controller/Front.php(954): 
Zend_Controller_Dispatcher_Standard->dispatch(Object(Zend_Controller_Request_Http), 
Object(Zend_Controller_Response_Http))#1 /usr/local/zend/share/ZendFramework/library
/Zend/Application/Bootstrap/Bootstrap.php(97): Zend_Controller_Front->dispatch()

#2 /usr/local/zend/share/ZendFramework/library/Zend/Application.php(366): 
Zend_Application_Bootstrap_Bootstrap->run()

#3 /var/www/ispadmin/public/index.php(47): Zend_Application->run()

#4 {main} array: 'module' => string 'agreements' (length=10), 'controller' => string 'index' (length=5), 'action' => string 'index' (length=5)  

助けてください、イヴェット。

4

1 に答える 1

0

メソッドでクラス Agreements_IndexController を作成する必要があると思います

public function indexAction() { }

ここに入れますapplication/modules/agreements/controllers/IndexController.php。ビューファイルを作成することを忘れないでくださいapplication/modules/agreements/views/sctipts/index/index.phtml.

基本的な構成では、それが役立つはずです。

于 2013-08-28T20:31:05.470 に答える