Mar 22nd, 2010, 8:21 PM
Heya,
It sounds like maybe PHP sessions aren't enabled on Server B. If you get booted out the moment you log in, that generally means that the page you were logged into couldn't find evidence of you BEING logged in, and threw you out again.
One easy thing you could try is adding this line to your /global/config.php file:
That will tell Form Tools to use database sessions instead. That can sometimes get around problems with PHP sessions.
- Ben
It sounds like maybe PHP sessions aren't enabled on Server B. If you get booted out the moment you log in, that generally means that the page you were logged into couldn't find evidence of you BEING logged in, and threw you out again.
One easy thing you could try is adding this line to your /global/config.php file:
PHP Code:
$g_session_type = "database";
That will tell Form Tools to use database sessions instead. That can sometimes get around problems with PHP sessions.
- Ben