zendのcontrollersについて
Zendを始めたばかりのものです。
サーバ:XPで自営 Apache2,php5
Zendをダウンロードし、Cドライブのルートに「ZendFramework-1.9.0」
という名前で配置しました。
php.iniのinclude_pathの設定も変更し、
htdocsの直下にindex.phpを作成し
<?php
require_once 'Zend/Version.php'; //ライブラリの読み込み
echo Zend_Version::VERSION; //現在のZend Frameworkのバージョンを表示
とすると、正常にバージョンが表示されます。
zendappsというフォルダーをhtdocsの中に作成し、index.phpに
<?php
require_once 'Zend/Controller/Front.php';
Zend_Controller_Front::run('../zendapps/controllers');
とするとエラーになります。(エラーは長いので後述)
'../zendapps/controllers'の部分かとも思いますが、
お分かりになる方、教えていただけると幸いです。
エラーの内容
Fatal error: Uncaught exception 'Zend_Controller_Dispatcher_Exception' with message 'Invalid controller specified (error)' in C:\ZendFramework-1.9.0\library\Zend\Controller\Dispatcher\Standard.php:242 Stack trace: #0 C:\ZendFramework-1.9.0\library\Zend\Controller\Front.php(946): Zend_Controller_Dispatcher_Standard->dispatch(Object(Zend_Controller_Request_Http), Object(Zend_Controller_Response_Http)) #1 C:\ZendFramework-1.9.0\library\Zend\Controller\Front.php(212): Zend_Controller_Front->dispatch() #2 C:\Program Files\Apache Software Foundation\Apache2.2\htdocs\zendapps\index.php(3): Zend_Controller_Front::run('../zendapps/con...') #3 {main} thrown in C:\ZendFramework-1.9.0\library\Zend\Controller\Dispatcher\Standard.php on line 242