Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Eg: My place at profile page, when session expired, i refresh, redirect to login page. How to redirect to profile page after login?. Im using joomla 2.5. Thanks!

share|improve this question

1 Answer

This is one of the way to redirect to the previous page after login.

$app                = JFactory::getApplication();

/*Return Url*/
$url = base64_encode(JRoute::_('index.php?option=com_test&view=products));

/*Login Url*/
$link = JRoute::_('index.php?option=com_users&view=login&return='.$url);

$app->Redirect($link);
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.