You need to be logged in to post in the forums. If you do not have an account, please sign up first.
Session Cookies from rails app
Hi,as you may know - Ruby on Rails applications is setting up session cookies that defined in code like below
ActionController::Base.session = {
:key => 'my_session',
:secret => 'supersecret'
}
as _my_session (starting with "_"). I have developed some solution that allows cross-domain logon (look here - sorry only Russian version but you can use google translate
) and it is working in all browsers excepting Opera. Is it a bug in Opera browser or specific issue?