It depends on whether you just want the session count, or if you want to know exactly who is logged in. If you just want a number of active sessions, Google "coldfusion sessiontracker" for the code that will tell you how many active sessions there are. Remember that "logged in" and "active sessions" are two different things. Sessions continue to run after a user logs out. If you want to track who is logged in, they you need to program your own code. The code involves tracking logins using a structure in the Application scope.
Good luck, Mike Chabot On Nov 23, 2007 5:51 PM, Richard White <[EMAIL PROTECTED]> wrote: > Hi, > > we are incrementally submitting our software to our customer and because it > is incremental we therefore have various updates to upload. we do not want to > just set a time of day that we do this. we want to also be able to see if > anyone is currently logged onto the software. if not then we know we can lock > off the software without someone losing their data. > > is there a way to find out how many people are currently logged on. > > i was thinking that we could customise this feature ourselves through the > onsessionstart and onsessionend methods but was wondering if there is a way > that people do generally do this. > > thanks > > richard > > ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~| Check out the new features and enhancements in the latest product release - download the "What's New PDF" now http://download.macromedia.com/pub/labs/coldfusion/cf8_beta_whatsnew_052907.pdf Archive: http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:293738 Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4

