Eric Sloane
2006-Feb-01 04:25 UTC
[Rails] LoginGenerator - Firefox Problem -The page isn''t redirecting properly
Hi, HAs anyone come across this issue in Firefox; I''ve just installed LoginGenerator and I''m allowing cookies to be set yet any all to http://apollo:3000/account/login results in the error; Firefox has detected that the server is redirecting the request for this address in a way that will never complete. Any Clues?? Eric.
Benjamin Cabé
2006-Feb-16 14:09 UTC
[Rails] LoginGenerator - Firefox Problem -The page isn''t redirecting properly
Hi, Make sure you have excluded the "login" action from being protected by the before_filter "login" by doing something like : require_dependency "login_system" class ApplicationController < ActionController::Base include LoginSystem model :user before_filter :login_required, :except => [:login, :signup] end _______________ Hi, HAs anyone come across this issue in Firefox; I''ve just installed LoginGenerator and I''m allowing cookies to be set yet any all to http://apollo:3000/account/login results in the error; Firefox has detected that the server is redirecting the request for this address in a way that will never complete. Any Clues?? Eric.