I created a project test using zend tool. Then I created a module test. Then I created TestController in test module.
Now when I access test.dev/test/test/index, it show following error.
Message: Invalid controller specified (test)
How to enable my modules in zend. I think I have to enable my application.ini or Bootstrap.php
Add this to your application.ini
You may not set the default one. Then all the URI-s will be /modulename/controllername/actionname. Having a default module allows you to omit the “/modulename” part.
For other objects access set the includePath-s and autoloadernamespaces in application.ini:
And follow the Zend naming conthention then in this dir. Say, Form_User_Login class must be defined in
APPLICATION_PATH . "/../library/Form/User/Login.php"