My Cake built site is in QA and is receiving bugs from testers saying
they are getting involuntarily logged out at random places in both the
admin and public side. I'm using a simple implementation of the Auth
component...no Acl. I have my Security set to low for long sessions.
But I'm really stuck as to what could be happening. Anyone have ideas
about where to start looking. Here's my Auth variables.
$this->Auth->allow('display');
$this->Auth->allow('recoverpassword_submit');
$this->Auth->allow('*');
$this->Auth->loginRedirect = '/';
$this->Auth->loginAction = array('controller' => 'users', 'action' =>
'login');
$this->Auth->logoutRedirect = array('controller' => 'pages', 'action'
=> 'homepage');
$this->Auth->autoRedirect = false;
// additional login criteria
$this->Auth->userScope = array(
'User.inactive' => '0',
'User.deleted' => '0'
);
$this->Auth->fields = array(
'username' => 'email',
'password' => 'password'
);
Thanks.
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups
"CakePHP" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to
[email protected]
For more options, visit this group at
http://groups.google.com/group/cake-php?hl=en
-~----------~----~----~----~------~----~------~--~---