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 am using CakePHP 2.1 and i am trying to do user registration, the password does not get hashed before saving in the database.

Do we need to have Auth for this to happen?.

share|improve this question
I recommend using a behavior to keep the code DRY: dereuromark.de/2011/08/25/working-with-passwords-in-cakephp – mark Apr 8 '12 at 9:55

1 Answer

up vote 1 down vote accepted

Cake 2.x does not automatically hash your password for you, as explained here:

http://book.cakephp.org/2.0/en/tutorials-and-examples/blog-auth-example/auth.html#authentication-login-and-logout

This decision was made because auto hashing was too magical, and interfered with things like validation. So, a simple addition to beforeSave on your User model will solve the problem!

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.