Transition from restful authentication to authlogic in not working in rails

Posted by user163352 on Stack Overflow See other posts from Stack Overflow or by user163352
Published on 2010-05-25T06:14:13Z Indexed on 2010/05/25 6:21 UTC
Read the original article Hit count: 381

Filed under:
|

I'm using restful authentication in rails. Now I just want to change it to Authlogic.

I used

  acts_as_authentic do |c|
    c.transition_from_restful_authentication = true
  end

and changed the password and salt field to 128 characters.But, if I create a new user crypted password length is 40 characters length(Its not changing to 128 as in authlogic).

Plz suggest me, how to change from restful to Authlogic from the start.

i.e I have restful authentication now.(how to change it to authlogic..plz explain from start)

© Stack Overflow or respective owner

Related posts about ruby-on-rails

Related posts about ruby