In the session4.inc, the line
$lifetime = time()+$this->lifetime*60;
should be
$lifetime = $this->lifetime*60;
because
session_set_cookie_params()
expects a lifetime and not a point in time!
Log in to post a comment.