I'm having problems with the Zend session because it expires very fast, I've tried everything!
I use a base controller, where all others extend it in the init () method of the base controller I have already put:
Zend_Session::rememberMe(864000);
Zend_Session::start();
2- No Apllication.ini
;SESSÃO
resources.session.save_path = APPLICATION_PATH "/../data/session/"
resources.session.gc_maxlifetime = 864000
resources.session.remember_me_seconds = 864000
3- I have already changed the permissions of these data / session files to 777
4- already put in bootstrap.php
protected function _initSession()
{
Zend_Session::rememberMe(864000);
Zend_Session::start();
$this->bootstrap('session');
}
And nothing solved.