I'm using Rails 3 for my website. I have cases where my site users have blocked my site from storing cookie data in their browser.
I have a public part of my web site, where users need not sign in to access it. There, I need to store some info temporarily in session[] until next few requests.
Since users have disabled cookies for my site, I chose the :active_record_store for :session_store. Even after doing this, I'm not able to store and retrieve values successfully from the session[]
Cart::Application.config.session_store :active_record_store, :key => '_cart_session', :domain => :all
what can I do to store values in session[] in those cases. please help.