salmarayan wrote:
> 
> If there is a page that requires Login, so i made a pre-dispatch function
> . I want after the user makes successful login, i want him to be
> redirected to the pre-requested page
> Any Ideas, i tried using
> Zend_Controller_Action::getRequest()->getActionName();
> but it doesnt work plz help. thanks
> 



After the login form passes validation just redirect to the desired page

$this->_helper->redirector('index', 'index', 'default');

redirects the browser to the default module, index controller, index action.





-- 
View this message in context: 
http://www.nabble.com/Redirect-user-to-a-pre-requested-page-that-requires-Login-tp24672923p24673203.html
Sent from the Zend Framework mailing list archive at Nabble.com.

Reply via email to