I have an application 2.2.3 that I updated to 2.3.2
This is a multi-site (using a subdomain) that creates one top-level session for all sites.
This is how I change the domain in production.rb:
ActionController::Base.session_options[:domain] = "example.com"
# in rails 2.2.2, this is what i used to do:
# ActionController::Base.session_options[:session_domain] = "example.com"
Strange things began to happen after I updated. I can no longer log in using quiet authentication; it authenticates me, but as soon as I am redirected, it will ask me to log in again.
As I said, I use restful_authentication and I also use passenger 2.1.2. Can anyone help?
source
share