Re: Django HTTPS and HTTP Sessions

2009-12-10 Thread Carlos Ricardo Santos
Is is possible to change the uploaded filename like: request.FILES['file']['filename']=current.user.username+'_'+str( current.user.id) It says 'InMemoryUploadedFile' object does not support item assignment. Anyway to override this? Thanks. -- You received this message because you are

Django HTTPS and HTTP Sessions

2009-12-10 Thread Tony Thomas
Hi, I'm using Django 1.1.1 with the ssl redirect middleware. Sessions data (authentication etc.) created via HTTPS are not available in the HTTP portions of the site. What is the best way to make it available without having to make the entire site HTTPS? -- You received this message because