[eluser]benharrison[/eluser]
Yes I am using the database. Here is a copy of my settings:
Code:
$config['sess_cookie_name'] = 'cart_session';
$config['sess_expiration'] = 7200;
$config['sess_encrypt_cookie'] = FALSE;
$config['sess_use_database'] = TRUE;
$config['sess_table_name'] = 'cart_sessions';
$config['sess_match_ip'] = FALSE;
$config['sess_match_useragent'] = TRUE;
$config['sess_time_to_update'] = 300;
By using the database I could tell that I was getting a new session on each page load. For instance, upon visiting the page I would start a new session. Then logging in would create another new session (with correct information). After a successful login I would redirect the user back to the home page, and this creates a 3rd blank session. All of this is visible in my database table. Which sounds like the exact same problem as the author of this post:
[quote author="jaystang" date="1279413167"]...I can see where the issue is a little easier. On every page load of the site I can see a new record w/ a different 'session_id' is created in the database...[/quote]