Re: [PHP] Sessions question (-enable-trans-sid)

2002-06-06 Thread Justin French
on 06/06/02 10:20 PM, Jeff Field ([EMAIL PROTECTED]) wrote: > So, it would seem, while the SID being appended to all URI's should work for > all users, non-PHP pages will break the session (not good). And, as for the > cookie method, not all users have cookies enabled for their browser (also, >

RE: [PHP] Sessions question (-enable-trans-sid)

2002-06-06 Thread Jeff Field
eff Field [mailto:[EMAIL PROTECTED]] > Sent: Wednesday, June 05, 2002 11:56 AM > To: [EMAIL PROTECTED] > Subject: [PHP] Sessions question (-enable-trans-sid) > > > Hi, > > I'm confused about one thing regarding sessions and haven't been able to > find the de

Re: [PHP] Sessions question (-enable-trans-sid)

2002-06-05 Thread Nick Wilson
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 * and then 1LT John W. Holmes declared > I guess PHP just can't tell that cookies are enabled. I'm sure the method > isn't full proof. Your sessions get through either way, so what's the big > deal? Mainly in SEO stuff. If an SE like google as a

Re: [PHP] Sessions question (-enable-trans-sid)

2002-06-05 Thread 1LT John W. Holmes
TECTED]> Sent: Wednesday, June 05, 2002 4:50 PM Subject: Re: [PHP] Sessions question (-enable-trans-sid) > > Hmmm I've had a problem with this: I have --enable-trans-sid but I > > see url appends on my browser when I *know* cookies are working. > > > Personally I c

Re: [PHP] Sessions question (-enable-trans-sid)

2002-06-05 Thread Dan Hardiker
> Hmmm I've had a problem with this: I have --enable-trans-sid but I > see url appends on my browser when I *know* cookies are working. Personally I cant say this is a bad thing... not all browsers enable cookies and they can be messy and insecure at times (eg: cross domain issues). Placing

Re: [PHP] Sessions question (-enable-trans-sid)

2002-06-05 Thread Nick Wilson
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 * and then 1LT John W. Holmes declared > If you compile it with --enable-trans-sid, then PHP will use cookies when > they are available and if they are not, it'll append the SID to links and > forms. Basically, it's automatic. Hmmm I've had

Re: [PHP] Sessions question (-enable-trans-sid)

2002-06-05 Thread 1LT John W. Holmes
> To: <[EMAIL PROTECTED]> Sent: Wednesday, June 05, 2002 12:56 PM Subject: [PHP] Sessions question (-enable-trans-sid) > Hi, > > I'm confused about one thing regarding sessions and haven't been able to > find the definitive answer anywhere. Hopefully, I can here. > &

Re: [PHP] Sessions question (-enable-trans-sid)

2002-06-05 Thread Martin Clifford
I'm sure this is not a definitive answer, but I would assume that since you would be passing the information through both the URI and Cookies, it will work regardless of cookies enabled or disabled. On the other hand, if you are passing the session id through the URI in the first place, you do

[PHP] Sessions question (-enable-trans-sid)

2002-06-05 Thread Jeff Field
Hi, I'm confused about one thing regarding sessions and haven't been able to find the definitive answer anywhere. Hopefully, I can here. There are two ways to enable sessions: 1) Session ID is passed through cookies 2) Session ID is passed through the URL, either done manually or by automatic