How to Auto load Zend framework modules?
Recently, I have to work with the zend framework modules. I came across a problem, by default zend command doesn't load the module and its resources. You have to define it manually.
1) You have to declare some options on the application.ini. These line will load the module controller and the action's.
resources.frontController.moduleDirectory = APPLICATION_PATH "/module"
resource.modules[] = ""
2) In order to load all the module resources, you have to create a Bootstrap file for each module. Eg, if you have a module called "test", then you got to create a following class
<?php
class Test_Bootstrap extends Zend_Application_Module_Bootstrap{}
Above two steps will solve the problem with the zend














