Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I did same as show in authlogin example. User is created successfully and session also maintained and logout also working fine. After logout I try to login again the application getting following error

NoMethodError in UserSessionsController#create

undefined method `[]' for false:FalseClass

In user_session controller

app/controllers/user_sessions_controller.rb:13:in `create'

UserSessionController Code

...     
 def create
   @user_session = UserSession.new(params[:user_session])
   if @user_session.save
     flash[:notice] = "Login successful!"
     redirect_back_or_default user_path(current_user)
   else
     render :action => :new
   end
 end
...

I am using

  • ruby -v ruby 1.9.2p180
  • rails -v Rails 3.1.3
  • authlogic (2.1.6)
share|improve this question

1 Answer

up vote 0 down vote accepted

After Updating authlogic version 2.1.6 to 3.1.0 it works fine.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.