Hi,
I am not sure if there is a bug raised or I am doing something totally wrong but I am setting my session like so:
$session = new SessionAdapter();
$session->setOptions(array('lifetime' => 60));
$session->start();
return $session;
When I do:
var_dump($session->getOptions());
It returns int(60)
I then check if the session has expired after 60 seconds, 60 minutes, 60 hours and it never expired, am I doing something wrong ?
I was thinking maybe the php.ini timeout value could be overwriting it ?