Re: [PHP] session - cookie issues

2006-10-23 Thread Richard Lynch
On Fri, October 20, 2006 5:20 am, Dave Goodchild wrote: Hi all, I am having issues with users not being able to post their details to my site. The system uses sessions, so when they hit the index page a test cookie is set thus: setcookie('djst', 'test'); You should *NOT* set the timeout to

[PHP] session - cookie issues

2006-10-20 Thread Dave Goodchild
Hi all, I am having issues with users not being able to post their details to my site. The system uses sessions, so when they hit the index page a test cookie is set thus: setcookie('djst', 'test'); and then I test whether that cookie is set on the next page. If not, I direct the users to an

Re: [PHP] session - cookie issues

2006-10-20 Thread Mukul Sabharwal
The way you're setting cookies (without a time parameter), it's set to expire at the end of the current session. Though it should work regardless, try setting an expire time: setcookie('djst', 'test', time()+3600); // expire in an hour On 10/20/06, Dave Goodchild [EMAIL PROTECTED] wrote: Hi

Re: [PHP] session - cookie issues

2006-10-20 Thread Jürgen Wind
Dave Goodchild wrote: Hi all, I am having issues with users not being able to post their details to my site. The system uses sessions, so when they hit the index page a test cookie is set thus: setcookie('djst', 'test'); and then I test whether that cookie is set on the next page.

Re: [PHP] Session / cookie issues

2006-08-24 Thread Andrew Kreps
Could it be a 3rd party cookie problem? Does IE display the little eyeball privacy icon on the troubled user's browser status bar? I seem to remember having issues when Microsoft started supporting the cookie privacy stuff. On 8/23/06, Dave Goodchild [EMAIL PROTECTED] wrote: Hi all. I mailed

Re: [PHP] Session / cookie issues

2006-08-24 Thread Dave Goodchild
On 24/08/06, Andrew Kreps [EMAIL PROTECTED] wrote: Could it be a 3rd party cookie problem? Does IE display the little eyeball privacy icon on the troubled user's browser status bar? I seem to remember having issues when Microsoft started supporting the cookie privacy stuff. I will check

[PHP] Session / cookie issues

2006-08-23 Thread Dave Goodchild
Hi all. I mailed some time ago regarding a cookie/session issue I am having and thank you all for your useful and knowledgeable responses. I have now used 10 separate testers and 9 are able to progress through a 3-stage form process that validates data as it goes along and enters the data into