When a user checks the "Remember me" check box at login they still have to log back in on the next visit, no matter how soon after that next visit is. It seems that the cookie isn't set correctly. Where and how can I verify this?
In config.php the following lines are set:
$config['site']['path'] = '/';
$config['site']['server'] = 'localtwit';
session_set_cookie_params(0, '/'. $config['site']['path'] .'/');
The cookie looks like this (somewhat obscured) when I check it in Webdeveloper:
Name PHPSESSID
Value 061b8533dd208c9.................
Host localtwit
Path ///
Secure No
Expires At End Of Session
I have a problem with the path having too many slashes in it, and that shows up in the cookie. Can this be the problem?