> Anyone have any ideas on setting domain level cookies when > you're running CF4? It doesn' support the "domain" parameter > in <CFCOOKIE> and also doesn't allow "setdomaincookies" in a > <CFAPPLICATION> tag. Javascript perhaps?
You can just set the CFID and CFTOKEN cookies yourself using the CFHEADER tag. This is kind of a pain, since you have to build a valid GMT date string, but it'll work. The cookie header generally looks something like this: Set-Cookie: cookiename=cookievalue; path=/; expires=Sat, 10-Jul-04 20:14:28 Dave Watts, CTO, Fig Leaf Software http://www.figleaf.com/ voice: (202) 797-5496 fax: (202) 797-5444 ______________________________________________________________________ Structure your ColdFusion code with Fusebox. Get the official book at http://www.fusionauthority.com/bkinfo.cfm FAQ: http://www.thenetprofits.co.uk/coldfusion/faq Archives: http://www.mail-archive.com/[email protected]/ Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists

