Just a thought - have you locked all the session variables? If not, it can blow up the app with corrupted data.
If you want to use client variables, set it up in the <cfapplication> tag: <CFAPPLICATION NAME="XXXX" SETCLIENTCOOKIES="no" clientMANAGEMENT="yes" SESSIONMANAGEMENT="no" clientStorage="XXXX"> Just add an entry into CF administrator to use a database for NAME=XXXX client storage. This will store a cookie containing CFID and CFTOKEN data which will link to records in the db. HTH, Doug -----Original Message----- From: Simon Harper [mailto:[EMAIL PROTECTED]] Sent: 10 July 2002 09:08 To: CF-Linux Subject: Client vs Session variables I've been trying to track down a 'SIG11' error that's bringing our site down every half an hour (on a good day). I'm really not getting anywhere so I thought I might try a different approach ... The users' experience is that when CF crashes their session is lost. Our site uses session variables heavily for navigation. We allow people to post messages to a dicussion board in one area of the site, so when they post their carefully crafted message they'll often find that their session is already toast and that the app has no idea what to do with their message (so throws it away). On the other hand, the crashes per se are not that disruptive (if you're unlucky to see the error message you can usually 'refresh' to get going again). So my question is, can we convert all our session variable into client variable which will be nicely maintained in the database, and should survive a restart ? Thanks for any advice you may have, Cheers, Simon. --- [EMAIL PROTECTED] Applications Development Manager Warwick Business School ______________________________________________________________________ Structure your ColdFusion code with Fusebox. Get the official book at http://www.fusionauthority.com/bkinfo.cfm ------------------------------------------------------------------------------ Archives: http://www.mail-archive.com/cf-linux%40houseoffusion.com/ To Unsubscribe visit http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_linux or send a message to [EMAIL PROTECTED] with 'unsubscribe' in the body.
