How to store a session variable for someone with disabled cookies in rails -


i'm using active records session store in rails.

i use store value pass view page of model once successful create event has happened. want value trigger on first visit view page , never again.

i've noticed on browsers cookie disabled value isn't coming through. thought using active record store solve didn't.

is there way pass value page, either using sessions or otherwise (i can't have querystrings since users bookmarking page , saves value if do).

activerecord session store means session data stored in db instead of cookie itself. cookie still needed identify client on subsequent requests. alternative option identify client via session id passed uri parameter. however, mean session id disclosed , knows it, can hijack session. in addition, not built rails.


Comments