views:

65

answers:

2

Hi all,

I am new to zend, i need help in creating zend application using modules.

please help thanks

+2  A: 

Go through this tutorial Modular application with Zend Framework. There also some good tutorials on youtube, zend framework-modular application

ArtWorkAD
thanks, the tutorial is really good, will see the video too.
makki
+1  A: 

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.

makki