I'm getting a similar error to this post http://stackoverflow.com/questions/1475128/ruby-on-rails-authlogic-password-not-valid "Password is not valid" which never seemed to be resolved
in the script/console if I create a new user:
myval = "[email protected]"
u = User.create(:email => myval, :password => myval, :password_confirmation => myval)
u.valid?
>> true
u.save
>> true
u.valid_password?(myval)
>>false
if i set in my user.rb:
acts_as_authentic do |c|
c.validate_password_field = false
end
i get the same response. Any suggestions?