Re: [PHP] A SESSION Problem

2007-12-11 Thread Richard Lynch
On Tue, December 11, 2007 8:53 am, tedd wrote: > Hi gang: > > I just had this happen and wonder what the fix is for it. > > I am sending session data from a script in a http to another script > in https. However, sometimes the data gets through and sometimes it > don't. > > Any ideas or fixes? > >

Re: [PHP] A SESSION Problem

2007-12-11 Thread GoWtHaM NaRiSiPaLli
Looks like the session Id is getting regenerated when it moves from http to https. Check the cookie PHPSID cookie for your domain is same both the pages and if not then you will have to carry forward the SID to every new page and set SESSION_ID to that value and start the session. Hope this works

Re: [PHP] A SESSION Problem

2007-12-11 Thread Daniel Brown
On Dec 11, 2007 9:53 AM, tedd <[EMAIL PROTECTED]> wrote: > Hi gang: > > I just had this happen and wonder what the fix is for it. > > I am sending session data from a script in a http to another script > in https. However, sometimes the data gets through and sometimes it > don't. > > Any ideas or f

Re: [PHP] A SESSION Problem

2007-12-11 Thread Jochem Maas
are you looking at a cache problem - i.e. (pun intended ;-)) the second page is a locally cached copy and thereby not showing the data you would expect? tedd wrote: > Hi gang: > > I just had this happen and wonder what the fix is for it. > > I am sending session data from a script in a http to