makki
makki

Reputation: 2107

How to develop modular application using Zend framework?

How to develop modular application using Zend framework?

Upvotes: 1

Views: 5464

Answers (2)

makki
makki

Reputation: 2107

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.

Upvotes: 2

DarkLeafyGreen
DarkLeafyGreen

Reputation: 70466

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

Upvotes: 5

Related Questions