|
Mark,
Cheers for the reply, but right now that just isn't
an option...
I've implemented some cookie cleaning code to see
how that works... still watching it to see what happens!
----- Original Message -----
Sent: Wednesday, September 08, 2004 2:05
PM
Subject: Re: [ cf-dev ] duplicate cookie
keys in cfmx 6.1
At 11:57 08/09/2004, you wrote: >Tom Smith
wrote: > >>nice:) not the solution I want, as I'm going
to need to contact a lot of >>people, but I'm trying something
else... I know this has been a problem >>for others:) Well one
other for certain! > >How about adding a cookie clean up routine
in the application.cfm?
or set setClientCookies="no" in your
cfapplication and then manually create cfid and cftoken cookies (which
also means you can use per-session cookies if you want),
e.g.
<cfapplication ... setClientCookies="no">
<cfif
not isDefined("cookie.cfid")>
<!--- set cfid and cftoken cookies
as session cookies ---> <cflock scope="session" type="readonly"
timeout="3"> <cfcookie name="cfid"
value="#session.cfid#"> <cfcookie name="cftoken"
value="#session.cftoken#"> </cflock>
</cfif>
--
These lists are syncronised with the CFDeveloper forum at http://forum.cfdeveloper.co.uk/ Archive:
http://www.mail-archive.com/dev%40lists.cfdeveloper.co.uk/ CFDeveloper
Sponsors and contributors:- *Hosting and support provided by
CFMXhosting.co.uk* :: *ActivePDF provided by
activepdf.com* *Forums provided by
fusetalk.com* :: *ProWorkFlow provided by
proworkflow.com*
*Tutorials provided by helmguru.com* :: *Lists hosted by
gradwell.com*
To unsubscribe, e-mail: [EMAIL PROTECTED]
|