Click to See Complete Forum and Search --> : Physical location of cookies created by setCookie() function, and expiry


knkk
08-25-2007, 10:44 AM
I am not able to locate the cookies created by the setCookie function. They are not in the standard IE folder where temporary Internet files and cookies are placed. Does anyone know where I search, or how I trace them?

Also, I created cookies using this command:


$string_to_check = $type."_".$pid;
setCookie("$string_to_check", "1", time()+30*1);

The cookie doesn't expire in 30 seconds - in fact, it doesn't seem to expire at all.

One of the reasons that I want to see the actual cookies is to see what the expiration time is being set to.

I'd be quite grateful for any pointers. Thank you very much for your time!

sitehatchery
08-25-2007, 05:35 PM
I use firefox and add the web developer addon. It gives a very simple interface to add, delete and edit cookies.

knkk
08-26-2007, 02:12 AM
Also, I just noticed that my code works in FF but not in IE. That is, the cookie expires in FF in 30s, but not in IE. But sitehatchery, I do not see the actual cookie in FF either (when I do Tools -> Options -> Show Cookies).

knkk
08-26-2007, 02:54 AM
Well, I am able to see the actual cookie in FF and in IE now (though I did nothing different ). I guess it was always visible in FF - it was just expiring in 30s, before I could see it. In IE, however, it is showing up suddenly now, and this is the text of the cookie file:

events_3525
1
www.mydomain.com/
1536
3949138304
29878276
3661621984
29878196
*

Would anyone know what all those numbers mean? Thank you for your time.

knkk
08-26-2007, 07:21 AM
I just figured that my IE cookie expires in about 9 hours and 33 minutes though I set it to expire in 30 seconds. Cannot figure out why :(.

knkk
08-26-2007, 08:24 AM
Okay, so I figured this out. The time zones in the client machine and the server were different. I set them both to the exact same time and zone, and IE too started working.

For anyone who needs to do the same on a Linux box (change the time zone):

http://www.linuxsa.org.au/tips/time.html