Re: IE6 is not accepting session cookies

2007-05-04 Thread omat * gezgin.com
Solved, finally. It was both the SESSION_COOKIE_DOMAIN and two IEs running side by side. For IE6 to accept session cookies, put the SESSION_COOKIE_DOMAIN = "domain.com" in your settings.py file. And if you are running IE6 and IE7 together, watch out. IE6 standalone version cannot accept cookies

Re: IE6 is not accepting session cookies

2007-05-03 Thread omat * gezgin.com
No, the domain is "turkpop.com". I tried setting SESSION_COOKIE_DOMAIN to "turkpop.com", ".turkpop.com" and "www.turkpop.com". I also tried some combinations for the "localhost" and "127.0.0.1". Neither of them worked. I am running IE6 standalone version together with installed IE7 on the same ma

Re: IE6 is not accepting session cookies

2007-05-03 Thread Jeremy Dunck
On 5/3/07, omat * gezgin.com <[EMAIL PROTECTED]> wrote: > > I cannot set session cookies in IE6, thus I cannot handle sessions of > my users that are using IE6. I can't find the MSDN article now, but there is an issue with IE (not) storing cookies for sites whose host/domain name includes a dash

IE6 is not accepting session cookies

2007-05-03 Thread omat * gezgin.com
I cannot set session cookies in IE6, thus I cannot handle sessions of my users that are using IE6. In the FAQ, there is a section mentioning a similar problem in the admin site and tells to set the SESSION_COOKIE_DOMAIN parameter in the admin settings. As my problem is not limited to admin, I tr