kwylez wrote:
>
> Everything works great at this point. I can start my sessions (user
> login) and see the information in the database. My question is how do I
> get the session lifetime to change from the default, 1440 seconds, to the
> remember_me_seconds, 2592000.
>
Zend_Session::rememberMe($sessionLifetime);
$saveHandler = Zend_Session::getSaveHandler();
$saveHandler->setLifetime($sessionLifetime)
->setOverrideLifetime(true);
Regards,
Goran Juric
http://gogs.info/
--
View this message in context:
http://www.nabble.com/Session-DB-Save-Handler-Lifetime-Override-tp20444102p20486956.html
Sent from the Zend Framework mailing list archive at Nabble.com.