Re: A key is required to write a cookie containing the session data.

2010-02-11 Thread Trevor Turk
On Feb 8, 11:23 pm, Charles M Magid cmma...@gmail.com wrote:     cookie_store.rb:163:in `ensure_session_key':   A key is required to write a cookie containing the session data.   Use config.action_controller.session =   { :key = _myapp_session, :secret = some secret phrase }   in config/

Re: A key is required to write a cookie containing the session data.

2010-02-09 Thread Keenan Brock
Hey Chaz, for rails apps, config/initializers/session_store.rb usually has a secret key ActionController::Base.session = { :key = '_charles_session', :secret = 'XX' } you can get a good session key by running: rake secret Create the file and see how it goes. --Keenan On

A key is required to write a cookie containing the session data.

2010-02-08 Thread Charles M Magid
Thank you very much in advance for any and all help on this. Symptom: The app http://hope-for-the-future.heroku.com/ returns 'App failed to start' on load. See Pastie: http://pastie.org/815793 for trace github: http://github.com/trevorturk/static See deployment to heroku 2/3 of the way