|
|
|
User login issue E_SESSION_TIMEOUT
|
|
Date: 2008/03/08 05:04
|
By: synking
|
Status: User
|
|
|
Karma: 0  
|
|
Fresh Joomlapolitan  | Posts: 6 |   | |
|
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.
|
|
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 |   | |
|
|
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.
|
|
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 |   | |
|
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
|
|
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 |   | |
|
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 = trim( cbGetParam( $_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
|
|
The administrator has disabled public write access. |
|
|
|
|
Re:User login issue E_SESSION_TIMEOUT
|
|
Date: 2008/10/05 03:37
|
By: diorist
|
Status:
|
|
|
Karma: 0  
|
|
Fresh Joomlapolitan  | Posts: 6 |   | |
|
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.
|
|
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 |   | |
|
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
|
|
The administrator has disabled public write access. |
|
|