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 time

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

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 a

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 t

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