Rails session cookie not getting set

Posted by bwizzy on Stack Overflow See other posts from Stack Overflow or by bwizzy
Published on 2010-04-07T17:50:24Z Indexed on 2010/04/07 17:53 UTC
Read the original article Hit count: 410

Filed under:
|
|
|

I have a rails app that is a CMS that uses dynamic subdomains for each site. For some reason when I deployed to production the session cookie is not getting set. I'm thinking this is leading to the "Invalid Authenticity Token" errors that are being thrown everywhere.

I have my production.rb setup so that I can share sessions across subdomains. What could be going wrong that the cookie isn't being set at all?

#production.rb
config.action_controller.session[:domain] = '.domain.com'


#environment.rb
config.action_controller.session = {
   :session_key => '_app_session',
   :secret      => '.... nums and chars .....'
 }

© Stack Overflow or respective owner

Related posts about ruby-on-rails

Related posts about ruby