losing session in rails 2.3.2 app using subdomain
- by mike in africa
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] = "xxx.com"
# in rails 2.2.2, this is what i used to do:
# ActionController::Base.session_options[:session_domain] =…