I've got the same problem. I've read all the docs and tutortials and can't seem to get around it. I've also tried adding all the authlogic columns and changing the size limit on the various restful auth columns vs just trying the DB "as-is" but changing the code to use authlogic and the following setting:
acts_as_authentic do |c|
c.act_like_restful_authentication = true
end
I just always get "Password is not valid" preventing the user_session from being saved. I'm guessing it's to do with the crypto routines but there shouldn't have been anything non-standard about the way we were using restful-authentication.
When I add the required columns and take out the "act_link_restful_authentication = true" it works fine (the straight up default authlogic).
Has anyone got any more ideas as to what might be wrong?