RE: [fw-general] $this->_forward() questions

2009-01-06 Thread Eric Haskins
Thx Ralph & Juan Shortly after I posted this I found $this->_helper->redirector('index', $auth->getInstance()->getIdentity()->type); This fixed my issue Eric Haskins

Re: [fw-general] $this->_forward() questions

2009-01-06 Thread Ralph Schindler
In this case instead of $this->_forward(), perhaps try a redirect: $this->_redirect(Œ/admin/index¹); return; There are also a number of other ways to "redirect": http://framework.zend.com/manual/en/zend.controller.actionhelpers.html Search for "redirector". -ralph On 1/6/09 8:00 PM, "Eric Ha

[fw-general] $this->_forward() questions

2009-01-06 Thread Eric Haskins
I have a loginController and after a user passes auth it uses $this->_forward('index','index','admin'); Problem is there is a table on that page with pagination when a user clicks next it errors because the url is still domain.com/login/login/ in the url box. If I manually type /admin/index