Hi, Ive got an application that lets users dynamically generate subdomains for the website. The problem is that in IE7 and 8, when Im logged in at http://mywebsite.com, I get my custom 404 when I try to access http://subdomain.mywebsite.com . Once I logout though, I get the expected page at http://subdomain.mywebsite.com . Anyone got any idea how to resolve this issue? This problem does not exist in IE6. Cheers, Vinay. -- You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org To unsubscribe from this group, send email to rubyonrails-talk+unsubscribe-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en.
Anyone? Long shots are welcome too :) On Feb 27, 12:48 pm, Ram <yourstruly.vi...-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> wrote:> Hi, > > Ive got an application that lets users dynamically generate subdomains > for the website. The problem is that inIE7and 8, when Im logged in > athttp://mywebsite.com, I get my custom 404 when I try to accesshttp://subdomain.mywebsite.com. Once I logout though, I get the > expected page athttp://subdomain.mywebsite.com. > > Anyone got any idea how to resolve this issue? This problem does not > exist in IE6. > > Cheers, > Vinay.-- You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org To unsubscribe from this group, send email to rubyonrails-talk+unsubscribe@googlegroups.com. For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en.
> > Ive got an application that lets users dynamically generate subdomains > for the website. The problem is that in IE7 and 8, when Im logged in > at http://mywebsite.com, I get my custom 404 when I try to access > http://subdomain.mywebsite.com . Once I logout though, I get the > expected page at http://subdomain.mywebsite.com . > > Anyone got any idea how to resolve this issue? This problem does not > exist in IE6. >The 404 comes from the server, so I would recommend looking at the logs (put them in DEBUG mode) and also possible logging the cookies/session objects (using inspect or whatnot) so you can see what''s being requested with what context. There''s nothing obvious that springs to mind, but the information you can gather above should help you see what''s different between the two contexts. It could be something simple like IE7 is treating a cookie domain mywebsite.com differently from IE6 (it may be that IE7 is stricter in requiring it to be .mywebsite.com whereas IE6 will happily accept mywebsite.com - note the initial .). A couple of cookie/IE7 hints found on PHP.net''s page: If you are having issues with IE7 and setcookie(), be sure to verify that the cookie is set via http for http sites, and https for https site. Also, if the time is incorrect on your server, IE7 will also disallow those cookies from being set. Good luck, Cheers, Andy -- You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org To unsubscribe from this group, send email to rubyonrails-talk+unsubscribe-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en.
I believe your session cookies were turned off. Turn it on via: - Internet Explorer > Tools > Internet Options > Privacy tab > Advanced button > tick "Always allow session cookies" Ram wrote in post #892517:> Hi, > > Ive got an application that lets users dynamically generate subdomains > for the website. The problem is that in IE7 and 8, when Im logged in > at http://mywebsite.com, I get my custom 404 when I try to access > http://subdomain.mywebsite.com . Once I logout though, I get the > expected page at http://subdomain.mywebsite.com . > > Anyone got any idea how to resolve this issue? This problem does not > exist in IE6. > > Cheers, > Vinay.-- Posted via http://www.ruby-forum.com/. -- You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org To unsubscribe from this group, send email to rubyonrails-talk+unsubscribe-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org For more options, visit https://groups.google.com/groups/opt_out.