Hi, Currently we're having some issues with a user of our product who uses a proxy on their internal network.
According to their system administrator the proxy is open to port 80 and 443, and doesn't do anything with cookies and such, only blocks out some sites. Now, with Django we wrote an application who doesn't function really good within their network. The problem; example 1: 1. User takes a test, ten questions on ten different pages 2. User completes the test, his score is saved and a session is removed (with which question where already answered, and that the user is in a test) 3. User get's redirected to the homepage, which opens the correct page when the test is succesfully completed Now, at step 3 the right page doesn't get loaded. Only AFTER the user is logged out, and then logged in again it works. Example 2: But this doesn't only happen with a test (as describe as above), also at some pages with a small memory-like quiz (only javascript used), when that is succesfully completed (checked with a ajax-request), the next page is set active (also in the ajax call) and the user gets redirected to the next page. Also, when this doesn't go right. Logging out and in fixes it. Example 3: ALSO, which is weird: when the user opens the application on a computer, he is logged in as a user who didn't use the computer before (but is behind the same proxy)?! This shouldn't be possible (django default auth app is used). The software we're using is Apache, Nginx, Django 1.0 and Postgresql. Also note that it does work when run with runserver, but not with nginx. This only occurs with this user with the proxy, everywhere else, it does work. Anyone experienced this before? If so, how'd you solve it? Thanks in advance! Stefan -- You received this message because you are subscribed to the Google Groups "Django users" group. 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/django-users?hl=en.

