Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have a notEmpty validation rule set to my password field. The problem is, the AuthComponent auto hashes the string. So if the password is empty it will turn into a hash before the validation so it will appear not empty when hashed, but the actual plain text password is empty.

The best solution I can think of is to make the AuthComponent not hash an empty string. Can anyone tell me how to do that? or a better solution?

share|improve this question

1 Answer

up vote 2 down vote accepted

An idea: you could reset the password in the beforeValidate callback method of your user model like:

public function beforeValidate() {
    App::import('Core', 'Security'); // not sure whether this is necessary
    if ($this->data['User']['password'] == Security::hash('', null, true)) {
        $this->data['User']['password'] = '';
    }
    return true;
}
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.