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













