Re: Development server: cookies not working

2011-05-12 Thread Frederik Vogelsang
Hi, one quick update: the problem was the Set-Cookie line. I did set SESSION_COOKIE_SECURE = True in my settings.py, this is why it did not work with the localserver. Thanks everyone! Frederik -- You received this message because you are subscribed to the Google Groups "Django users" group.

Re: Development server: cookies not working

2011-05-12 Thread Frederik Vogelsang
Hi, 2011/5/5 Tom Evans : > If you can see the Set-Cookie header in the responses, but your > browser is not accepting them, verify that the path and domain are > correct in that response. Browsers will ignore cookies for domains > other than the domain serving the page, and for paths other than th

Re: Development server: cookies not working

2011-05-05 Thread Tom Evans
On Thu, May 5, 2011 at 2:02 PM, fsang wrote: > Hi, > > I am running my Django project on a remote host (with Apache) and on > my current machine (localhost, using "runserver"). Cookies and > sessions work fine when the project is served via Apache from the > remote host. But for some reasons all o

Development server: cookies not working

2011-05-05 Thread fsang
Hi, I am running my Django project on a remote host (with Apache) and on my current machine (localhost, using "runserver"). Cookies and sessions work fine when the project is served via Apache from the remote host. But for some reasons all of my browsers reject the cookies from the development ser