Jun 13th, 2010, 9:36 AM
Hi dnice,
The only difference between logging in as a client and as an administrator is the content that's loaded in sessions. On a couple of servers I've found that they limited the maximum amount of information that can be stored there - and that prevents the script from working properly, and booting the user out like this. It's a rare case, but it may be what's happening to you.
But hopefully it's an easy fix. Add the following line to your /global/config.php file:
That bypasses the default PHP sessions and stores session information in the database instead. That may circumvent the problem.
Let me know how it goes!
- Ben
The only difference between logging in as a client and as an administrator is the content that's loaded in sessions. On a couple of servers I've found that they limited the maximum amount of information that can be stored there - and that prevents the script from working properly, and booting the user out like this. It's a rare case, but it may be what's happening to you.
But hopefully it's an easy fix. Add the following line to your /global/config.php file:
PHP Code:
$g_session_type = "database";
That bypasses the default PHP sessions and stores session information in the database instead. That may circumvent the problem.
Let me know how it goes!
- Ben