I have tried to get this function working in the desired way but not having much luck. The good news is, is that it works. Only thing I wanted to get working correctly is the field validation error messages which I managed to, but could not login in even if the username and password were correct. I have rolled back the function in the hope that someone could shed some light on this for me please.
function login() {
$this->layout = 'login';
$this->set('title_for_layout', 'Login');
if (!empty($this->data) && $id = $this->Auth->user('id')) {
$this->User->id = $id;
$this->User->saveField('last_login', date('Y-m-d H:i:s'));
$this->Session->setFlash(__('You have successfully logged in', true));
$this->redirect(array('action'=>'index'));
}
}
The validation which I have setup in the users model:
var $validate = array(
'username' => array(
),
'login' => array(
'rule' => 'isUnique',
'message' => 'This username has already been taken',
),
'pattern' => array(
'rule' => array('custom','/[a-zA-Z0-9\_\-]{6,}$/i'),
'message' => 'Must be 6 characters or longer with no spaces',
),
'length' => array(
'rule' => array('maxLength', 15),
'message' => 'Please keep username under 15 characters',
),
'notempty' => array(
'rule' => array('notempty'),
'message' => 'Username cannot be empty',
),
),
'password' => array(
'notempty' => array(
'rule' => array('notempty'),
'message' => 'Password cannot be empty',
),
'length' => array(
'rule' => array('between', 5, 15),
'message' => 'Passwords must be between 5 and 15 characters long with no spaces',
'on' => 'create',
)
)
);
I shall unset certain validation rules for the login, I for now would just like to get the validation actually working in the correct manner.
Really, I have three questions...
Why is my validation not working correctly?
How can I display messages from the
AuthComponentin my views?How can I temporarily disable the
modifiedfield in my table from updating?
Many thanks!
&& $id = $this->Auth->user('id')in your if. Is that a typo? Should be==or===. – cspray Jul 30 '11 at 3:29