Ah... interesting.
In that case, I'd use database sessions instead. Form Tools comes with the option of storing all session data in the database rather than in files using the default PHP sessions. To do this, just log out then add this line to your config.php file:
Once you log back in, all sessions are stored in a separate table in the database. This *should* solve the problem... knock on wood.
Just thought I'd mention it in case other folk encounter a similar problem!
- Ben
In that case, I'd use database sessions instead. Form Tools comes with the option of storing all session data in the database rather than in files using the default PHP sessions. To do this, just log out then add this line to your config.php file:
PHP Code:
$g_session_type = "database";
Once you log back in, all sessions are stored in a separate table in the database. This *should* solve the problem... knock on wood.
Just thought I'd mention it in case other folk encounter a similar problem!
- Ben