Sunday, October 26, 2008

FIX ACTIVATION ACCOUNT EMAIL BUG FOR JOOMLA 1.5.5

ENGLISH:

Did you ever receive activation email to activating your account with information like this :

username : http://www.yourdomain.xxx
password : your username

but should be like this :

username : your username
password : your password



to fix it, check this out:

edit file www/components/com_user/controller.php:

$message = sprintf ( JText::_( 'SEND_MSG_ACTIVATE' ), $name, $sitename, $siteURL."index.php?option=com_user&task=activate&activation=".$user->get('activation'), $siteURL, $username, $password);

change to :

$message = sprintf ( JText::_( 'SEND_MSG_ACTIVATE' ), $name, $sitename, $siteURL."index.php?option=com_user&task=activate&activation=".$user->get('activation'), $username, $password);



BAHASA INDONESIA :

Memperbaiki bug email pengaktivasian akun Joomla 1.5.5

Apakah kamu pernah menerima email aktivasi dimana pada pemberitahuannya tertulis sbb :

username : http://www.domainlo.xxx
password : username lo

padahal seharusnya

username : username kamu
password : password kamu

Cara memperbaikinya adalah sebagai berikut :

edit file www/components/com_user/controller.php:

$message = sprintf ( JText::_( 'SEND_MSG_ACTIVATE' ), $name, $sitename, $siteURL."index.php?option=com_user&task=activate&activation=".$user->get('activation'), $siteURL, $username, $password);

menjadi

$message = sprintf ( JText::_( 'SEND_MSG_ACTIVATE' ), $name, $sitename, $siteURL."index.php?option=com_user&task=activate&activation=".$user->get('activation'), $username, $password);

No comments: