Exit
  • Global community
    • Language:
      • Deutsch
      • English
      • Español
      • Français
      • Português
  • 日本語コミュニティ
  • 한국 커뮤니티
0

maximum execution time

New Here ,
Sep 07, 2008 Sep 07, 2008
I am a newbie.

does maximum execution time exist? if yes, how could we change it?

I have an application to run for several hours. will it work?

pls kindly advise.
541
Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
LEGEND ,
Sep 07, 2008 Sep 07, 2008
what exactly are you referring to? max execution time of what? a single
request? application timeout? session timeout?

all those can be set in CF Administrator and also in individual pages
(look up <cfsetting> tag).

hth

Azadi Saryev
Sabai-dee.com
http://www.sabai-dee.com/
Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
New Here ,
Sep 09, 2008 Sep 09, 2008
Basically, just add requestTimeout=time at the end of your page. E.g. :

http://www.mysite.com/mypage.cfm?requestTimeout=86400

This will allow your script to run for 24 hours without stopping. But please make sure that you know what you're doing when you're allowing your script to run for a long time.
Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
LEGEND ,
Sep 09, 2008 Sep 09, 2008
germ wrote:
> Basically, just add requestTimeout=time at the end of your page. E.g. :
>
> http://www.mysite.com/mypage.cfm?requestTimeout=86400
>

Does this still work? I thought the requestTimeout URL variable had
been deprecated in the latest versions of ColdFusion.
Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
LEGEND ,
Sep 09, 2008 Sep 09, 2008
LATEST
Ian Skinner wrote:
> germ wrote:
>> Basically, just add requestTimeout=time at the end of your page. E.g. :
>> http://www.mysite.com/mypage.cfm?requestTimeout=86400
>>
>
> Does this still work? I thought the requestTimeout URL variable had
> been deprecated in the latest versions of ColdFusion.

This is what I found with a brief search. This if from some CF6
documentation.

<quote
src=" http://livedocs.adobe.com/coldfusion/6/CFML_Reference/Tags-pt36.htm">
The cfsetting requestTimeout attribute replaces the use of requestTmeOut
within a URL.
</quote>
Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Resources