Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

In Ruby on Rails, how do I set the session cookie's httpOnly setting to false?

share|improve this question

2 Answers

up vote 6 down vote accepted

I figured this out. In /config/environment.rb include this code:

config.action_controller.session = { :httponly => false }

share|improve this answer
For what version of rails was this? I'm trying in rails 3, and get the following error: undefined method `session=' for ActionController::Base:Class – Peter Ehrlich Dec 2 '11 at 4:12
@Peter This was written before RoR 3 for version 2.3. It has not been tested with 3. – kingjeffrey Dec 3 '11 at 4:53
I made a workaround, here: stackoverflow.com/questions/8351871/… – Peter Ehrlich Dec 4 '11 at 19:44

This is how i did it with Rails 3:

Testapp::Application.config.session_store :cookie_store, key: '_testapp_session', :domain => :all, :httponly => false
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.