Kartik Sahoo

Results 2 comments of Kartik Sahoo
trafficstars

I'm also facing this problem. Can somebody suggest how to encrypt or sign the cookie?

Solved the problem by using the following patch. Source: https://github.com/rails/rails/blob/master/actionpack/lib/action_dispatch/middleware/session/cookie_store.rb Created a "config/initializers/activerecord-session_store.rb" with following content ```ruby module ActionDispatch module Session class ActiveRecordStore < ActionDispatch::Session::AbstractStore private def extract_session_id(req) stale_session_check! do...