views:

52

answers:

1

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)

A: 

Here's a detailed tutorial.

Simone Carletti