On Tue, 28 Dec 2004 10:14:25 -0500, Matthew Small <[EMAIL PROTECTED]> wrote: > Thanks, but I've already tried that and it didn't do anything for me. Here > is the present content of my CFAPPLICATION tag: > > <cfapplication name="mrktPromoTool" sessionmanagement="yes" > clientmanagement="yes" clientStorage = "cookie" setClientCookies="yes"/> > > I've also had the clientStorage and setClientCookies attributes removes and > that does not help. I'm using CFMX 6.1 if that's of any use. > > Here is the offending line of code: > <cfparam name="client.currentMarket" default="0"> > > What am I doing wrong? >
To my knowledge, there's no way of explicitly disabling client variables (i.e., through a CFMX Administrator setting or some such). Where is this cfapplication declaration located? Are you sure that you don't have an Application.cfm that gets executed before this code that might have another cfapplication directive in it? Also, I would not use cookies for clientStorage due to security considerations (the data is stored in clear text on the user's machine) -- it would be preferable to use your database to store the client variables. However, that being said, one thing at a time. Have you checked for any possible conflicting cfapplication directive in an Application.cfm file that's being executed? Regards, Dave. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~| Special thanks to the CF Community Suite Gold Sponsor - CFHosting.net http://www.cfhosting.net Message: http://www.houseoffusion.com/lists.cfm/link=i:4:188861 Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4 Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4 Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4 Donations & Support: http://www.houseoffusion.com/tiny.cfm/54

