> I'm getting really frustrated from this CFCOOKIE thing.
> Apparently, after I assign the cookie with Expires="Never" the
> cookie is deleted and terminated every time the user closes the browser.
> I need it to last longer, prefarbly forever.
>
> no cflocation in page, tried to link one process page to another.
> didn't work!

Can you try something for me...

Make a page with 2 lines in it;
<cfcookie name="TempCookie" value="0" expires="never">
Cookie placed

Another page with the following code;
<cfif isDefined("cookie.TempCookie")>
        Cookie Exists
<cfelse>
        Cookie does not exist
</cfif>


Now, run the first, then the second - then close the browser and run the
second - if the results are the same then you've not got a problem

If the second one NEVER returns a "Cookie Exists" then your cookie settings
are screwed in your browser

There is another possible issue;
Is your Temporary Internet Files location on your machine and not on the
network?
If it's local, check you've got enough hard disk space - clear down your
cache, try killing some of the "rubbish" cookies to ensure IE's not getting
confused, etc.

I hope some of this helps...

Philip Arnold
Director
Certified ColdFusion Developer
ASP Multimedia Limited
T: +44 (0)20 8680 1133

"Websites for the real world"

**********************************************************************
This email and any files transmitted with it are confidential and
intended solely for the use of the individual or entity to whom they
are addressed. If you have received this email in error please notify
the system manager.
**********************************************************************



~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/[email protected]/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists

Reply via email to