On Tue, May 5, 2009 at 11:14 PM, Sergio Rinaudo
<[email protected]> wrote:
> Hi,
> I'm trying to implement a persistent login using Zend_Session::rememberMe,
> without success.
> Anyone of you succeeded on using this method?
> Any advice is appreciated...
Not with rememberMe().
1) I set the lifetime of a session, etc. through Zend_Session::setOptions()
2) $auth = Zend_Auth::getInstance();
3) $auth->setStorage(new Zend_Auth_Storage_Session('authSession'));
4) Assign $auth to my controller ($frontController->setParam(...))
Till