Arrow Home arrow Forums
larger font smaller font default font Fixed screen resolution Auto adjust screen size

Joomlapolis Forums  


<< Start < Prev 1 2 Next > End >>
User login issue E_SESSION_TIMEOUT
Date: 2008/03/08 05:04 By: synking Status: User  
Karma: 0  
Fresh Joomlapolitan

Posts: 6
graphgraph
I have an issue with regesitered user logging in.

when they login from the main page they get a page that says E_SESSION_TIMEOUT. that's it no error's or logging in.

i checked the user managment area in the CB admin and i see this error.


Warning: Invalid argument supplied for foreach() in C:severapache2htdocscomponentscom_comprofilerpluginuserplug_cbcorecb.core.php on line 240

can anyone help. or do you need more info.
Click here to see the profile of this user The administrator has disabled public write access.

Re:User login issue E_SESSION_TIMEOUT
Date: 2008/03/09 00:01 By: synking Status: User  
Karma: 0  
Fresh Joomlapolitan

Posts: 6
graphgraph
Is there anything that i can do for this... i ave checked the php forms. and check the settings of the CB admin but unable to work. any help please.
Click here to see the profile of this user The administrator has disabled public write access.

Re:User login issue E_SESSION_TIMEOUT
Date: 2008/03/10 23:20 By: beat Status: Admin  
Karma: 241  
Admin

Posts: 4061
graphgraph
Did you search forum with " l i n e 2 4 0 " (adding spaces to not clutter your search results ) ?

Probably a sessions storage issue in your server. Try changing settings saving parameter in global 1.5.1 site config.
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
Click here to see the profile of this user The administrator has disabled public write access.

Re:User login issue E_SESSION_TIMEOUT
Date: 2008/03/17 19:30 By: StefanF Status: User  
Karma: 1  
Fresh Joomlapolitan

Posts: 2
graphgraph
To fix CB login issues in Joomla 1.5, try the following (tested in IE and Firefox):

in mod_cblogin.php, change:
Code:

 $request_uri mosGetParam$_SERVER'REQUEST_URI'null );


to:
Code:

 $request_uri base64_decode(mosGetParam$_GET'return''' ));



in comprofiler.php, add:
Code:

 $return str_replace'&''&'$return );


after:
Code:

 $return        trimcbGetParam$_POST'return'null ) );



Moderators: please re-post this wherever this problem is mentioned.

Edit: The above only works when a return path is definded. Add the following (to the above) to cater for all scenarios.

in mod_cblogin.php, add:
Code:

 if (strlen($request_uri) == 0)     $request_uri request_uri();


just below:
Code:

 $request_uri base64_decode(mosGetParam$_GET'return''' ));



in mod_cblogin.php, add:
Code:

 function request_uri() {   if (isset($_SERVER['REQUEST_URI'])) {     $uri $_SERVER['REQUEST_URI'];   }   else {     if (isset($_SERVER['argv'][0])) {       $uri $_SERVER['SCRIPT_NAME'] .'?'$_SERVER['argv'][0];     }     elseif (isset($_SERVER['QUERY_STRING'])) {       $uri $_SERVER['SCRIPT_NAME'] .'?'$_SERVER['QUERY_STRING'];     }     else {       $uri $_SERVER['SCRIPT_NAME'];     }   }   return $uri; }


at the top of the file

Post edited by: StefanF, at: 2008/03/17 20:47
Click here to see the profile of this user The administrator has disabled public write access.

Re:User login issue E_SESSION_TIMEOUT
Date: 2008/10/05 03:37 By: diorist Status: CB Doc subscriber  
Karma: 0  
Fresh Joomlapolitan

Posts: 6
graphgraph
Unfortunately, the "fix" didn't fix the timeout error for me.

FWIW, diagnosis-wise, the issue appears after two unsuccessful login attempts, even if the third login is successful.
Click here to see the profile of this user The administrator has disabled public write access.

Re:User login issue E_SESSION_TIMEOUT
Date: 2008/10/06 13:18 By: beat Status: Admin  
Karma: 241  
Admin

Posts: 4061
graphgraph
diorist wrote:
Unfortunately, the "fix" didn't fix the timeout error for me.

FWIW, diagnosis-wise, the issue appears after two unsuccessful login attempts, even if the third login is successful.


That has finally been fixed for this Joomla 1.5 in SEF more error in CB 1.2 RC 3 (and not before that RC).
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
Click here to see the profile of this user The administrator has disabled public write access.

<< Start < Prev 1 2 Next > End >>

Documentation

Documentation Subscription Service
(updated for CB 1.2 RC2)

What?

Why?

Where?

Just click here for answers!

Click here for a yearly subscription: subscribe now

Download Latest Release

The latest stable Community Builder Release is version 1.1 for Joomla 1.0 and Mambo.
You need to be a registered member of Joomlapolis to download.

The latest release candidate of Community Builder is version 1.2 RC3, native for Joomla 1.0, 1.5 and Mambo.
It is available as "thank you" to all CB documentation subscribers at this time.

CB Login