Zend Gurus:
I have a problem that my session expires if I refresh a page many times quickly .. ?
I log into my site, after I'm logged in, I just press F5 many times quickly, and my session expires. I'm no expert, but it's troubling to me.
Should I just abandon Zend Session(s) ?? Any ideas.. ?
Thank you everyone,
-P
This is how I check if I User is logged in ..
public function isloggedin() {
$session = Zend_Registry::get('session');
if ($session->login) {
return (1);
}
else {
//Application_Model_System::rr_log( "not Logged in");
return 0;
}
}
BootStrap.php
This is one of the first lines in my bootstrap
Zend_Session::start();
Zend_Session::rememberMe(864000); // How long the sessions will last
//StackOverFlow is great..