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?.
|
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?. |
|||
|
|
Cake 2.x does not automatically hash your password for you, as explained here: This decision was made because auto hashing was too magical, and interfered with things like validation. So, a simple addition to |
|||
|
|