Hi all,

  i am using Rails 3.1.3 and ruby 1.9.3.i need to set the cookies for 
multiple domain,
         Example: test.abc.com and example.abc.com are the two different 
domain, i need to set the same cookie for the both domain. If user login 
with test.abc.com can automatically login with example.abc.com..

I have tried :
            Rails.application.config.session_store :cookie_store, :key => 
'_Admin_Kernel_session', :domain=>:all
            Rails.application.config.session_store :cookie_store, :key => 
'_Admin_Kernel_session', :domain=>".abc.com"
            cookies.permanent.signed[:new_cookie] = {:value => new_value, 
:domain => ".abc.com"}
            cookies[:some_cookie] = {:value => "whatever", :domain => 
".abc.com", :expires => 1.year.from_now.utc} 
        
            i have tested with middle-ware also to set session domain but 
no use.

Please could any one tell me how to implement.

Kingston.s



-- 
You received this message because you are subscribed to the Google Groups "Ruby 
or Rails Oceania" group.
To view this discussion on the web visit 
https://groups.google.com/d/msg/rails-oceania/-/vBZ6nb_t7WQJ.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to 
[email protected].
For more options, visit this group at 
http://groups.google.com/group/rails-oceania?hl=en.

Reply via email to