Hello, I am working on a project that uses subdomain keyed accounts. Everything works great (using SubdomainFu for much of that heavly lifting) until I get to storing sessions across the subdomains. I want the entire site to share cookies, such as the auth_token from restful_authentication.
I've read numerous blog posts regarding this setup, and everyone seems to say that if you set the session_domain everything should work fine: #development.rb: ActionController::Base.session_options[:session_domain] = 'equvents.local' I've also tried: ActionController::Base.session_options[:session_domain] = '.equvents.local' And what seems to be an older method: ActionController::CgiRequest::DEFAULT_SESSION_OPTIONS.update (:session_domain => ".equvents.local") The trouble is, this isn't having any effect on the domain my app stores cookies for. The cookies are still getting set individually for www.equvents.local, testaccount.equvents.local, equvents.local, etc. What am I missing? Thanks so much for your help! Les Freeman --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to rubyonrails-talk@googlegroups.com To unsubscribe from this group, send email to rubyonrails-talk+unsubscr...@googlegroups.com For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en -~----------~----~----~----~------~----~------~--~---