I have a 2.2.3 app which I upgraded to 2.3.2
It's a multi-site (using 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 started to happen after I upgraded I can no longer log in using restful authentication; it does authenticate me, but as soon as I'm redirected, it would ask me to log in again.
As I said, I use restful_authentication and I also use passenger 2.1.2. Can anyone help?