Re: [PHP] Re: Trying to make my session code smarter

2003-12-17 Thread Gerard Samuel
On Wednesday 17 December 2003 01:33 am, Justin Patrin wrote: You can turn on URL rewriting for sessions. I'm not sure where it is just nowjust search the PHP docs. Yes I know about this feature. Unfortunately, its an insecure feature. http://us2.php.net/manual/en/ref.session.php

Re: [PHP] Re: Trying to make my session code smarter

2003-12-17 Thread Chris Shiflett
--- Gerard Samuel [EMAIL PROTECTED] wrote: On Wednesday 17 December 2003 01:33 am, Justin Patrin wrote: You can turn on URL rewriting for sessions. I'm not sure where it is just nowjust search the PHP docs. Yes I know about this feature. Unfortunately, its an insecure feature. You

Re: [PHP] Re: Trying to make my session code smarter

2003-12-17 Thread Gerard Samuel
On Wednesday 17 December 2003 11:58 am, Chris Shiflett wrote: You can use GET data, POST data, or cookies. Since these users opt to not use cookies, and you seem to not want to use GET data, I suppose passing the information via POST is the only option left. :-) Its not that I dont want to

Re: [PHP] Re: Trying to make my session code smarter

2003-12-17 Thread Chris Shiflett
--- Gerard Samuel [EMAIL PROTECTED] wrote: Its not that I dont want to use GET, Im just heeding the warning about its insecurities from the manual. The code Im writing, is meant for others to use, and may not have access to ini directives. But from what I've read in the archives

[PHP] Re: Trying to make my session code smarter

2003-12-16 Thread Justin Patrin
Gerard Samuel wrote: Currently in my code, if a user is blocking cookies (for what ever reason that may be), it keeps generating session ids for each page load. Is there a way to ignore and/or work around these users?? Thanks You can turn on URL rewriting for sessions. I'm not sure where it is