I'am using cakePHP 2 and I have a weird issue with one of my customer when she tries to log in to the application. So here's the story: She has an account set in the DB, I am able to log in using her account information but she can't. She has no error displayed (like wrong email/password). When she press login, she hits the login form again.
So, in my AppController.php
public $components = array(
'Acl',
'Auth' => array(
'authorize' => array('Actions' => array('actionPath' => 'controllers')),
'authenticate' => array('Form' => array('fields' => array('username' => 'email')))
),
'RequestHandler',
'Session'
);
public function beforeFilter() {
$group = $this->Auth->user('Group.name');
$this->Auth->loginAction = array('controller' => 'users', 'action' => 'login');
$this->Auth->logoutRedirect = array('controller' => 'users', 'action' => 'login');
if ($group == 'customer') {
$this->layout = "customer";
$this->Auth->loginRedirect = array('controller' => 'overviews', 'action' => 'index');
}
else {
$this->layout = "default";
$this->Auth->loginRedirect = array('controller' => 'pages', 'action' => 'index');
}
}
In my Config/core.php
Configure::write('Session', array(
'defaults' => 'cake',
'checkAgent' => false,
'timeout' => '120',
));
Configure::write('Security.level', 'low');
I really don't know where the problem could be... I am not able to reproduce the issue on my own computer.
EDIT : UsersController.php login()
public function login() {
$this->layout = 'login';
if ($this->request->is('post')) {
if ($this->Auth->login()) {
$this->redirect(array('controller' => 'pages', 'action' => 'index'));
} else {
$this->Session->setFlash('Vos identifiants sont incorrectes.');
}
}
}
Userscontroller. Maybe the problem is there. Very important question: do all users have this issue or just this one? – Borislav Sabev Dec 6 '12 at 6:52