> How do I set application wide though without updating hundreds of these > darned includes...etc....can't I set something in application file as > this is a shared hosting account and cant set administratively. >
This is off the top of my head, but could you do a check for a cgi.query_string length in the Application.cfm and append the RequestTimeout there, like so: <cfif Len(cgi.query_string)> <cfset cgi.query_string = cgi.query_string & "&RequestTimeout=60"> <cfelse> <cfset cgi.query_string = "RequestTimeout=60"> </cfif> cgi.query_string is available on every page, so that should work. Haven't tested it though. Hope this helps, Dave. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~| Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4 Subscription: http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4 FAQ: http://www.thenetprofits.co.uk/coldfusion/faq This list and all House of Fusion resources hosted by CFHosting.com. The place for dependable ColdFusion Hosting.

