Я новичок в Zend Framework.
Я создал Zend-проект с Zend Tool и его работами. Затем я попытался создать модуль, но когда я пытаюсь получить к нему доступ через браузер, я получаю сообщение об ошибке.
Мои шаги:
$ sudo zf create project mystore
- положить Zend библиотека внутри библиотеки
тест : http://localhost/mystore/public/ ( рабочий )
Добавить модуль магазин ( не работает )
$ sudo zf create module store
добавить в application.ini путь к модулям
resources.frontController.moduleDirectory = APPLICATION_PATH "/ modules"
resources.modules = ""
test1: http://localhost/mystore/public/store/
test2: http://localhost/mystore/public/store/public/
test3: http://localhost/mystore/public/modules/store/public/
test1 + 2 + 3 результат:
An error occurred
Page not found
Exception information:
Message: Invalid controller specified (index.php)
Stack trace:
#0 /var/www/mystore/library/Zend/Controller/Front.php(954): Zend_Controller_Dispatcher_Standard->dispatch(Object(Zend_Controller_Request_Http), Object(Zend_Controller_Response_Http))
#1 /var/www/mystore/library/Zend/Application/Bootstrap/Bootstrap.php(97): Zend_Controller_Front->dispatch()
#2 /var/www/mystore/library/Zend/Application.php(366): Zend_Application_Bootstrap_Bootstrap->run()
#3 /var/www/mystore/public/index.php(25): Zend_Application->run()
#4 {main}
Request Parameters:
array (
'module' => 'store',
'controller' => 'index.php',
'action' => 'index',
)
Спасибо
Йосеф