> I need to measure bandwidth used because this is how I > charge. Uploading is fine to measure, but is it possible > to measure how many times an attachment was successfully > accessed (either opened in browser or downloaded)?
I would advise parsing the web server logs for this information for two reasons: 1) It will be more accurate and give you exact byte counts for the files that were accessed. 2) It will not tie up ColdFusion threads as using CFCONTENT would to serve them up. If you have several people downloading large files at once over relatively slow connections there is a chance that all of the available CF threads could be ties up and the site would appear to become unresponsive to others. -Justin ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~| Want to reach the ColdFusion community with something they want? Let them know on the House of Fusion mailing lists Archive: http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:330335 Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4

