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
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
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
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 inf
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
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
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 the
7 matches
Mail list logo