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
Thanks to all for their help on this. As a follow-up, and after a bunch of playing around with this yesterday, here's what I've come to learn. Perhaps it will be helpful to others: With enable-trans-id compiled into PHP and the following directives in php.ini: session.use_cookies = 0(PHP u

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
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. ---John Holmes... - Original Message - From: "Jeff Field" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent

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