I found a solution, I think! :) This is a problem when adding the following resource to the application.ini file
resources.frontController.defaultModule = "Default"
and also you use some parameters. I think this is a mistake.
The correct way to implement modules is:
1 - Create the necessary modules and the default module using the zf tool
2 - In apllication.ini, tell ZF where the modules are and where the controllers of these modules are located, with
resources.frontController.moduleDirectory = APPLICATION_PATH "/modules" resources.frontController.moduleControllerDirectoryName = "controllers"
Use famous
resources.modules = ""
And install:
resources.frontController.params.prefixDefaultModule = ""
This is important because the zf tool sets the value to "1". Here is the error. :)
And remember, DO NOT START THAT THE DEFAULT MODULE!
3 - Create a boot file for each module and put:
If my module is "Evacol":
<?php class Evacol_Bootstrap extends Zend_Application_Module_Bootstrap { }
Save it in / modules / Evacol / obviously
Pay attention to Evacol _ ... and ..._ Module_Bootstr ... NAME OF MY MODULE EXTENDING THE RIGHT CLASS. Do not use the default value for the boot file created with the zf tool. I did it :)
CANNOT CHANGE ANYTHING. THIS IS NOT NECESSARY.
And voila! Trust me. He works!
It was Zend Framework 1.10.8