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]
