How do you renew a session everytime a user requests a page?I am using the code below but does not seem to be working.
$zend_authNS = new Zend_Session_Namespace('Zend_Auth');
$zend_authNS->setExpirationSeconds( 3600);
This will expire the no matter what, if the user is clicking on diffrente pages or if it is inactive.
thank you.