up vote 2 down vote favorite
share [g+] share [fb]

When using a subdomain and trying to view anything related to current_user. user is sent to a new session page, the page shows the session is created and gives the option to logout. I can use no subdomain and it works fine.

link|improve this question
feedback

3 Answers

Set it in your environment.rb (or environments/*.rb if you'll use different domains for each environment):

ActionController::CgiRequest::DEFAULT_SESSION_OPTIONS.update( :session_domain => '.domain.com')
link|improve this answer
feedback

FYI... as of Rails 2.3, this setting has changed. The rails 2.3+ version looks like:

ActionController::Base.session_options[:domain] = '.domain.com'

Just in case anyone else lands here from Google and gets confused like I did.

link|improve this answer
feedback

@jkrall - to add to that, the whole options hash moved to :key, :secret, and :domain vs :session_key, :session_domain, etc.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown