I am facing an issue on one of my clients' websites, where it seems two users' sessions are being swapped. I am using CodeIgniter and have the following configuration:
$config['sess_cookie_name'] = 'ci_session';
$config['sess_expiration'] = 7200;
$config['sess_expire_on_close'] = FALSE;
$config['sess_encrypt_cookie'] = FALSE;
$config['sess_use_database'] = TRUE;
$config['sess_table_name'] = 'sessions';
$config['sess_match_ip'] = TRUE;
$config['sess_match_useragent'] = TRUE;
$config['sess_time_to_update'] = 300;
Yesterday I was facing an issue where one of the users was having his session re-generated on every page. I incremented the size of the User-Agent database field in the sessions table, and switched match_ip above to TRUE, as an extra precaution.
Today, it seems two users are logging in, and they are each having the "Welcome X" message in the header as the name of the other person. Unfortunately, I only get this information from my client, so I am unable to debug the issue or replicate it on my machine, as sessions seem to be working fine for me (locally and online).
Does anyone have any suggestion or insight on how I could further debug, knowing my circumstances, or on what the issue might be? I tried adding:
$this->session->sess_destroy();
$this->session->sess_create();
On user logging, but I am not sure if that could be the issue.
I also of course double-checked that there is nothing wrong with my actual login code... However, it is simply retrieving email+password from POST and finding a matching record in the database, the usual procedure.