Tue 07 Apr |
|
This change will log your Joomla 1.5 users in to your site as soon as they have completed the registration process. This works only if the user doesn't have to confirm his/her registration by email. The registration welcome email will still be sent. Open file joomla_root/components/com_user/controller.php in any text editor and go to line 282.
Comment out the line $this->setRedirect('index.php', $message);
and add this after it -
//$this->setRedirect('index.php', $message);
Now as soon as they have clicked the submit button their username and password will be filled in and they will be logged in to the front page.$usersipass['username'] = $user->get('username'); $usersipass['password'] = $password; $mainframe->login($usersipass); $mainframe->redirect( 'index.php' ); If you would like them to be redirected to a special welcome page, thank you etc then change this line to the required page - e.g.
//$mainframe->redirect( 'index.php' ); $mainframe->redirect( 'index.php?option=com_content&view=article&id=45&Itemid=53' ); |
Last Updated on Wednesday, 22 April 2009 20:18 |