Hi have a problem with the authlogic session in production mode.
First of all, say that in development mode the sessions work ok without errors, but in production mode the sessions doesn't work correctly.
Example:
- Logged in and go back to the login view, but the session hasn't destroyed because i can enter again and again back to the login view, also the destroy action doesn't remove the session because i can enter again in the app
Which is the problem?
Thanks you so much
EDIT: My UserSessionsController
class UserSessionsController < ApplicationController
before_filter :require_no_user, :only => [:new, :create]
before_filter :require_user, :only => :destroy
# Create new object session
# GET /user_sessions/new
def new
@user_session = UserSession.new
end
# Create new session if the login is successful
# POST /user_sessions
def create
@user_session = UserSession.new(params[:user_session])
user = User.find_by_email(params[:user_session][:email])
if(user.nil? || user.level >= User::LEVEL_SUBSCRIBER)
flash[:warning] = I18n.t('authlogic.error_messages.general_credentials_error')
redirect_to login_url
else
if @user_session.save
flash[:notice] = "Login successful!"
redirect_to map_path
else
flash[:warning] = I18n.t('authlogic.error_messages.general_credentials_error')
redirect_to login_url
end
end
end
# Create new session if the login is successful
# DELETE /user_sessions/{the current user session}
def destroy
current_user_session.destroy
flash[:notice] = "Logout successful!"
redirect_to login_url
end
end
And this is the code to generate the logout link:
<%= link_to I18n.t('views.logout'), logout_path %>
raise current_user_session.inspectbefore the linecurrent_user_session.destroy? Are you able to see that the current_user_session object is not nil? – Charles Feb 1 '12 at 16:05