Categories:
.NET (357)
C (330)
C++ (183)
CSS (84)
DBA (2)
General (7)
HTML (4)
Java (574)
JavaScript (106)
JSP (66)
Oracle (114)
Perl (46)
Perl (1)
PHP (1)
PL/SQL (1)
RSS (51)
Software QA (13)
SQL Server (1)
Windows (1)
XHTML (173)
Other Resources:
In Which Does File FireFox Store Persistent Cookies
In Which Does File FireFox Store Persistent Cookies? - PHP Script Tips - Understanding and Managing Cookies
✍: FYIcenter.com
If you change FireFox to keep cookies "until they expire", FireFox will store persistent cookies from all Web servers in a single file at: \Documents and Settings\$user\Application Data\Mozilla \Firefox\Profiles\xby7vgys.default\cookie.txt.
Open your FireFox browser to visit this page: http://localhost/setting_persistent_cookies.php. Then open FireFox cookie file. You will see:
# HTTP Cookie File # http://www.netscape.com/newsref/std/cookie_spec.html # This is a generated file! Do not edit. # To delete cookies, use the Cookie Manager. localhost FALSE / FALSE 1149219379 CouponValue 100.00 localhost FALSE / FALSE 1149219379 CouponNumber 07470433 ......
2007-04-24, 5347👍, 0💬
Popular Posts:
Can one change the mouse pointer in Forms? The SET_APPLICATION_PROPERTY build-in in Oracle Forms all...
Rachel opened her math book and found that the sum of the facing pages was 245. What pages did she o...
How do you pass control from one JSP page to another? Use the following ways to pass control of a re...
Write out a function that prints out all the permutations of a string. For example, abc would give y...
What will happen in these three cases? if (a=0) { //somecode } if (a==0) { //do something } if (a===...