If you are using CFMX, you would put this is your application file or individual template:
<cfsetting requesttimeout="500"> I think this is a much better implementation of the timeout setting than prior versions of CF. Brook At 11:03 PM 27/11/02 -0800, you wrote: >You can do this up to CF 5. You cannot do this using CFMX. > > >Paul Kenney >[EMAIL PROTECTED] > > > > -----Original Message----- > > From: Dave Carabetta [mailto:[EMAIL PROTECTED]] > > Sent: Wednesday, November 27, 2002 10:49 PM > > To: CF-Talk > > Subject: Re: Request Timeout > > > > > > > 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 Get the mailserver that powers this list at http://www.coolfusion.com

