|
|
Bug in "Resend Activation Emails"
|
|
Date: 2007/04/11 17:50
|
By: yogiboy
|
Status:
|
|
|
Karma: 0  
|
|
Junior Joomlapolitan  | Posts: 28 |   | |
|
Hello
I was doing some testing in my sending of Reactivation emails. I resent myself a reactivation email and this is what I got back.
Hello Aaron Star,
Thank you for registering at Hot Nude Yoga - Naked Gay Men Exploring Tantra. Your account is created and must be activated before you can use it. To activate the account click on the following link or copy-paste it in your browser: http://www.hotnudeyoga.com/index.php?option=com_comprofiler&task=confirm&confirmcode= Thank you.
As You can see, the full link did not show up. Is there anything I can do?
Thanks Aaron Star Aaron Star www.chelseayoga.net
|
|
The administrator has disabled public write access. |
|
|
|
Re:Bug in "Resend Activation Emails"
|
|
Date: 2007/08/26 02:13
|
By: yogiboy
|
Status:
|
|
|
Karma: 0  
|
|
Junior Joomlapolitan  | Posts: 28 |   | |
|
again is anyone out there? Aaron Star www.chelseayoga.net
|
|
The administrator has disabled public write access. |
|
|
|
|
Re:Bug in "Resend Activation Emails"
|
|
Date: 2007/10/12 16:23
|
By: gmallette
|
Status: User
|
|
|
Karma: 0  
|
|
Fresh Joomlapolitan  | Posts: 1 |   | |
|
Hi Aaron,
Did you find and answer for this problem, my site also doe not put the confirm code sequence into the 'Confirm Registration' e-mail message.
Regards,
Glenn
|
|
The administrator has disabled public write access. |
|
|
|
Re:Bug in "Resend Activation Emails"
|
|
Date: 2007/10/12 16:42
|
By: yogiboy
|
Status:
|
|
|
Karma: 0  
|
|
Junior Joomlapolitan  | Posts: 28 |   | |
|
No, this has not been resolved. It is a little frustrating that no one has resolved. Aaron Star www.chelseayoga.net
|
|
The administrator has disabled public write access. |
|
|
|
|
Re:Bug in "Resend Activation Emails"
|
|
Date: 2007/12/19 11:12
|
By: B0ris
|
Status: User
|
|
|
Karma: 0  
|
|
Fresh Joomlapolitan  | Posts: 2 |   | |
|
I have the same problem. When user is not confirmed it gets an email with registration confirmation but the registration code (link) is not right: http://www.dijaki.info/index.php?option=com_comprofiler&task=confirm&confirmcode=
Anyone solved this ?
|
|
The administrator has disabled public write access. |
|
|
|
|
Re:Bug in "Resend Activation Emails"
|
|
Date: 2007/12/19 14:43
|
By: B0ris
|
Status: User
|
|
|
Karma: 0  
|
|
Fresh Joomlapolitan  | Posts: 2 |   | |
|
Since i din't find any solution to this problem, i manage to find a solution by myself. I'm just a beginner in PHP, so i don't know if this is a good solution, but it works on my site.
add this code to file comprofiler.php
arround line 1441 replace
| Code: |
elseif ($row->confirmed != 1){
$cbNotification = new cbNotification();
$cbNotification->sendFromSystem($row->id,getLangDefinition(stripslashes($ueConfig['reg_pend_appr_sub'])),getLangDefinition(stripslashes($ueConfig['reg_pend_appr_msg'])));
$resultError = _LOGIN_NOT_CONFIRMED;
}
|
with this code:
| Code: |
elseif ($row->confirmed != 1){
$user_id = $row->user_id;
$randomHash = md5( cbMakeRandomString() );
$scrambleSeed = (int) hexdec(substr( md5 ( $mainframe->getCfg( 'secret' ) . $mainframe->getCfg( 'db' ) ), 0, 7));
$scrambledId = $scrambleSeed ^ ( (int) $row->id );
$rowExtras->cbactivation = "reg" . $randomHash . sprintf( "%08x", $scrambledId );
$_CB_database->setQuery( "UPDATE #__comprofiler "
. "\n SET cbactivation='".$rowExtras->cbactivation."' "
. "\n WHERE user_id='".$user_id."' "
);
$_CB_database->query();
$cbNotification = new cbNotification();
$cbNotification->sendFromSystem($row->id,getLangDefinition(stripslashes($ueConfig['reg_pend_appr_sub'])),getLangDefinition(stripslashes($ueConfig['reg_pend_appr_msg'])));
$resultError = _LOGIN_NOT_CONFIRMED;
}
|
|
|
The administrator has disabled public write access. |
|
|