[fw-general] Unable to find controller index in module admin

2008-11-25 Thread vladimirn

Hello all!
I have to add admin folder into my application structure.
So far i did like this:
/application
-admin/
controllers/
---IndexController.php
views/
---scripts/
---index/
--index.phtml
controllers/
--IndexController.php
--ErrorController.php
views/
and so on...

When i point my url to www.domain.com/admin
i am getting this message:
Unable to find controller index in module admin

in my bootstrap i have something like:
$frontController = Zend_Controller_Front::getInstance();
/* Point the front controller to your action controller directory */
$frontController-addModuleDirectory($base.'/application/admin');
$frontController-setControllerDirectory(array('default'=$base.'/application/controllers','admin'=$base.'application/admin/controllers'));

What i need is to access admin folder which will have different controllers
then rest of the application, pointing URL to www.domain.com/admin
I thought to do this with routing, but i am not sure if this is a good
solution, because i will have a lot controllers in Admin folder, different
from controllers in application direcotory.

Thanks,
V
-- 
View this message in context: 
http://www.nabble.com/Unable-to-find-controller-%22index%22-in-module-%22admin%22-tp20679516p20679516.html
Sent from the Zend Framework mailing list archive at Nabble.com.



Re: [fw-general] Unable to find controller index in module admin

2008-11-25 Thread Matthew Weier O'Phinney
-- vladimirn [EMAIL PROTECTED] wrote
(on Tuesday, 25 November 2008, 03:31 AM -0800):
 
 Hello all!
 I have to add admin folder into my application structure.
 So far i did like this:
 /application
 -admin/
 controllers/
 ---IndexController.php

Is the class in the above file named Admin_IndexController?

 views/
 ---scripts/
 ---index/
 --index.phtml
 controllers/
 --IndexController.php
 --ErrorController.php
 views/
 and so on...
 
 When i point my url to www.domain.com/admin
 i am getting this message:
 Unable to find controller index in module admin
 
 in my bootstrap i have something like:
 $frontController = Zend_Controller_Front::getInstance();
 /* Point the front controller to your action controller directory */
 $frontController-addModuleDirectory($base.'/application/admin');
 $frontController-setControllerDirectory(array('default'=$base.'/application/controllers','admin'=$base.'application/admin/controllers'));
 
 What i need is to access admin folder which will have different controllers
 then rest of the application, pointing URL to www.domain.com/admin
 I thought to do this with routing, but i am not sure if this is a good
 solution, because i will have a lot controllers in Admin folder, different
 from controllers in application direcotory.
 
 Thanks,
 V
 -- 
 View this message in context: 
 http://www.nabble.com/Unable-to-find-controller-%22index%22-in-module-%22admin%22-tp20679516p20679516.html
 Sent from the Zend Framework mailing list archive at Nabble.com.
 

-- 
Matthew Weier O'Phinney
Software Architect   | [EMAIL PROTECTED]
Zend Framework   | http://framework.zend.com/


Re: [fw-general] Unable to find controller index in module admin

2008-11-25 Thread vladimirn

Hello Matt, 
i dunno why is your reply empty to me :)
However i find solution for this:
In Admin module, i need to name my indexController as Admin_indexController.

Also i changed my bootstrap :
$frontController-setControllerDirectory(
array(
'default' = $base . '/application/controllers',
'admin' = $base . '/application/admin/controllers'
)
);

Thankss,
V

Matthew Weier O'Phinney-3 wrote:
 
 -- vladimirn [EMAIL PROTECTED] wrote
 (on Tuesday, 25 November 2008, 03:31 AM -0800):
 
 Hello all!
 I have to add admin folder into my application structure.
 So far i did like this:
 /application
 -admin/
 controllers/
 ---IndexController.php
 
 Is the class in the above file named Admin_IndexController?
 
 views/
 ---scripts/
 ---index/
 --index.phtml
 controllers/
 --IndexController.php
 --ErrorController.php
 views/
 and so on...
 
 When i point my url to www.domain.com/admin
 i am getting this message:
 Unable to find controller index in module admin
 
 in my bootstrap i have something like:
 $frontController = Zend_Controller_Front::getInstance();
 /* Point the front controller to your action controller directory */
 $frontController-addModuleDirectory($base.'/application/admin');
 $frontController-setControllerDirectory(array('default'=$base.'/application/controllers','admin'=$base.'application/admin/controllers'));
 
 What i need is to access admin folder which will have different
 controllers
 then rest of the application, pointing URL to www.domain.com/admin
 I thought to do this with routing, but i am not sure if this is a good
 solution, because i will have a lot controllers in Admin folder,
 different
 from controllers in application direcotory.
 
 Thanks,
 V
 -- 
 View this message in context:
 http://www.nabble.com/Unable-to-find-controller-%22index%22-in-module-%22admin%22-tp20679516p20679516.html
 Sent from the Zend Framework mailing list archive at Nabble.com.
 
 
 -- 
 Matthew Weier O'Phinney
 Software Architect   | [EMAIL PROTECTED]
 Zend Framework   | http://framework.zend.com/
 
 

-- 
View this message in context: 
http://www.nabble.com/Unable-to-find-controller-%22index%22-in-module-%22admin%22-tp20679516p20680727.html
Sent from the Zend Framework mailing list archive at Nabble.com.