Re: Session issues in Internet Explorer

2010-10-19 Thread Daniel Roseman
On Oct 19, 3:13 pm, Quiet Light Development wrote: > Hello, > > I am having trouble getting sessions to work with my production > server. When I move from one page to the next and try to call > request.session["app"] it is giving me a key error even though I know > I had set it in the previous pag

Re: Session issues in Internet Explorer

2010-10-19 Thread Jonathan Barratt
On 19 ?.?. 2010, at 22:25, Tom Evans wrote: The server is running Apache 2.2.12 on Ubuntu. >>> >>> You are running in a threaded environment then, your sessions can't persist >>> without cookies or equivalent external storage because the HTTP exchange is >>> not all contained within the s

Re: Session issues in Internet Explorer

2010-10-19 Thread Tom Evans
2010/10/19 Jonathan Barratt : > > On 19 ต.ค. 2010, at 21:49, Jonathan Barratt wrote: > >> >> On 19 ต.ค. 2010, at 21:32, Quiet Light Development wrote: >> >>> Thank you Masklinn and Jonathan for your responses. I don't know a lot >>> about the physical set-up of the system, I can ask the server >>>

Re: Session issues in Internet Explorer

2010-10-19 Thread Jonathan Barratt
Ben, Yes, that is definitely going to be the quickest way to resolve your issue, and I see no reason not to use them - Django hashes the data in them so it's safe from casual prying... Hth, Jonathan ? 19 ?.?. 2553 21:54 Ben Luedtke ?: > Thanks Jonathan, > > Either way though, the s

Re: Session issues in Internet Explorer

2010-10-19 Thread Ben Luedtke
Thanks Jonathan, Either way though, the solution is to set the cookie to allow the session to persist correct? Thanks, Ben On Oct 19, 9:51 am, Jonathan Barratt wrote: > On 19 ต.ค. 2010, at 21:49, Jonathan Barratt wrote: > > You are running in a threaded environment then, your sessions can't pe

Re: Session issues in Internet Explorer

2010-10-19 Thread Jonathan Barratt
On 19 ?.?. 2010, at 21:49, Jonathan Barratt wrote: > > On 19 ?.?. 2010, at 21:32, Quiet Light Development wrote: > >> Thank you Masklinn and Jonathan for your responses. I don't know a lot >> about the physical set-up of the system, I can ask the server >> administrators that question. >> >> T

Re: Session issues in Internet Explorer

2010-10-19 Thread Jonathan Barratt
On 19 ต.ค. 2010, at 21:32, Quiet Light Development wrote: > Thank you Masklinn and Jonathan for your responses. I don't know a lot > about the physical set-up of the system, I can ask the server > administrators that question. > > The server is running Apache 2.2.12 on Ubuntu. You are running i

Re: Session issues in Internet Explorer

2010-10-19 Thread Quiet Light Development
Thank you Masklinn and Jonathan for your responses. I don't know a lot about the physical set-up of the system, I can ask the server administrators that question. The server is running Apache 2.2.12 on Ubuntu. Thanks, Ben On Oct 19, 9:20?am, Jonathan Barratt wrote: > ?On 19 ?.?. 2010, at 21:13,

Re: Session issues in Internet Explorer

2010-10-19 Thread Jonathan Barratt
On 19 ต.ค. 2010, at 21:13, Quiet Light Development wrote: > Hello, > > I am having trouble getting sessions to work with my production > server. When I move from one page to the next and try to call > request.session["app"] it is giving me a key error even though I know > I had set it in the pre

Re: Session issues in Internet Explorer

2010-10-19 Thread Masklinn
On 2010-10-19, at 16:13 , Quiet Light Development wrote: > I'm not using cookies at all presently, but trying to track sessions > through the database. This is only the server-side storage of the session, you still need a way to match a given client and its session, and that's generally done via a

Session issues in Internet Explorer

2010-10-19 Thread Quiet Light Development
Hello, I am having trouble getting sessions to work with my production server. When I move from one page to the next and try to call request.session["app"] it is giving me a key error even though I know I had set it in the previous page. This error is only occurring in IE. Firefox and Chrome work