-- debussy007 <[EMAIL PROTECTED]> wrote
(on Wednesday, 26 September 2007, 11:07 PM -0700):
> Whenever I try to forward to another module, 
> it keep trying to find the action/controller inside the current module.
> It's like it doesn't consider the third parameter of _forward method, which
> specifies the module.
> 
> e.g. with this code in the "default" module : 
> 
> $this->_forward('index','auth','partners');
> return;
> 
> I have the following error : 
> 
> Uncaught exception 'Zend_View_Exception' with message 'script
> 'auth/index.phtml' not found in path
> (.\application\modules\default\views\scripts\)'
> 
> As you see it tries to find the action/controller in default module, even if
> I specified to find it in the "partners" module.

Actually, what that tells me is that the view path isn't being updated
correctly -- it's running the appropriate action/controller/module
pairing, but since the view path is not updated, it's not inding the
view script where it expects. 

I'll run some tests and see if I can recreate the issue.

-- 
Matthew Weier O'Phinney
PHP Developer            | [EMAIL PROTECTED]
Zend - The PHP Company   | http://www.zend.com/

Reply via email to