|
|
Re:[SOLV]:registration session expired and/or cookies
|
|
Date: 2007/04/27 01:39
|
By: beat
|
Status: Admin
|
|
|
Karma: 244  
|
|
Admin  | Posts: 4066 |   | |
|
To solve the problem with hardened php version with cookie names length limitations, here is the fix implemented in next cb release:
in comprofile.class.php, search for:
| Code: | $validate = 'cbj' . md5( $mainframe->getCfg('secret') ) . md5( $mainframe->getCfg( 'db' ) . date( 'dmY' ) );
|
and change the 2 occurences to:
| Code: | $validate = 'cbj' . md5( $mainframe->getCfg('secret') . $mainframe->getCfg( 'db' ) . date( 'dmY' ) );
|
Please feedback any problems you would still experience (or if this proposed fix fixes this) in this thread Beat - Developer on Community Builder core Team - If you like CB and this forum, you will love Nick's CB 1.1 reference manual ! : Click here to Get it now  - Would like to help us move faster ? Get it, and/or help us spend more time coding by helping others in this forum, many thanks
|
|
The administrator has disabled public write access. |
|
|
|
Re:[SOLV]:registration session expired and/or cook
|
|
Date: 2007/04/29 10:44
|
By: mblue
|
Status: User
|
|
|
Karma: 0  
|
|
Fresh Joomlapolitan  | Posts: 24 |   | |
|
We tried to fix the bug with your help, but it doesn´t work. Did we need another fix, because we use Joomla 1.0.12?
|
|
The administrator has disabled public write access. |
|
|
|
Re:[SOLV]:registration session expired and/or cook
|
|
Date: 2007/04/30 11:32
|
By: mblue
|
Status: User
|
|
|
Karma: 0  
|
|
Fresh Joomlapolitan  | Posts: 24 |   | |
|
|
I CAN´T SOLVE THE PROBLEM WITH 1.0.12!!!!!!!!!!!!!
|
|
The administrator has disabled public write access. |
|
|
|
Re:[SOLV]:registration session expired and/or cook
|
|
Date: 2007/04/30 14:41
|
By: beat
|
Status: Admin
|
|
|
Karma: 244  
|
|
Admin  | Posts: 4066 |   | |
|
mblue wrote: We tried to fix the bug with your help, but it doesn´t work. Did we need another fix, because we use Joomla 1.0.12?
One of the two fixes could, depending on other extensions installed. Did you try to apply them both ?
If yes and still have problem, I would need to have a nearer look, as i don't have that problem on our websites. Could you please PM me exact way to reproduce problem with links and access details to your site and how to reach you. I need to look at this to fix it in upcomming version. Beat - Developer on Community Builder core Team - If you like CB and this forum, you will love Nick's CB 1.1 reference manual ! : Click here to Get it now  - Would like to help us move faster ? Get it, and/or help us spend more time coding by helping others in this forum, many thanks
|
|
The administrator has disabled public write access. |
|
|
|
Re:[SOLV]:registration session expired and/or cook
|
|
Date: 2007/06/02 21:23
|
By: fredbradley
|
Status:
|
|
|
Karma: 0  
|
|
Fresh Joomlapolitan  | Posts: 3 |   | |
|
hey - thanks! - it worked!
Using CB 1.0.2 and Joomla 1.0.12
Had to use both patches.
thankyou people!! - I was getting worried there!!
~fb/
|
|
The administrator has disabled public write access. |
|
|
|
|
Re:[SOLV]:registration session expired and/or cook
|
|
Date: 2007/06/06 07:31
|
By: pkpandya
|
Status: User
|
|
|
Karma: 0  
|
|
Fresh Joomlapolitan  | Posts: 2 |   | |
|
Yes even I had the problem and solution suggested by you worked. Just for novice like me: modify comprofiler.class.php file in administrator>>components>>com_comprofiler directory as under: 1) Search for $validate = 'cbj' You will find this in function cbGetSpoofInputTag(). And replace the line as follows: $validate = 'cbj' . md5( $mainframe->getCfg('secret') . $mainframe->getCfg( 'db' ) . date( 'dmY' ) );
2) You will also need to make similar correction in function cbSpoofCheck()
3) Search for function cbRegAntiSpamCheck() Replace three === to two == before "1", as under: if ( ( $validateValuePost == "1" ) && ( $validateValueCookie === $validate[1] ) )
Thank you beat and all kind hearted people for providing this solution.
Post edited by: pkpandya, at: 2007/06/06 07:32
|
|
The administrator has disabled public write access. |
|
|