Ralph wrote:
phpBB is not saving the autologin to on in the config, I need to update the forum to the latest version anyhow, so i'll take a look at this again when I do that.
I think this could be cookie related Ralph, check the following:
http://www.neothermic.com/kb/article69.htmlQuote:
• The Log Me In Automatically Box is not working:
This is because you have not set up the cookie domain or path correctly. Read the above information and double check your setup.
What version of phpBB is this forum running on btw? If it is indeed an error within phpBB there could be a simple fix that would not require an update of the entire forum structure. I'd be glad to help finding such a solution but need to know what version of phpBB you are running.
Depending on what version of phpBB you are running this could be a possible fix:
Quote:
I think i found the problem:
in constants.php (in the includes dir) there was a line missing:
define('SESSIONS_TABLE', $table_prefix.'sessions');
The following needs to be added right below the line above:
define('SESSIONS_KEYS_TABLE', $table_prefix.'sessions_keys');
After adding this line the autologin is now working.