Hi all,
I am new to zend, i need help in creating zend application using modules.
please help thanks
Hi all,
I am new to zend, i need help in creating zend application using modules.
please help thanks
Go through this tutorial Modular application with Zend Framework. There also some good tutorials on youtube, zend framework-modular application
I made it working as a module based application, by just adding following lines in my application.ini
; FrontController Resource Settings
resources.frontController.defaultController = "index"
resources.frontController.defaultAction = "index"
resources.frontController.defaultModule = "default"
resources.frontController.prefixDefaultModule = true
resources.frontController.moduleDirectory = APPLICATION_PATH "/modules"
resources.frontController.params.displayExceptions = 1
where i have "default" module as my default module and index controller/action as my default controller/action respectively.