CFMX7's numerous "request has exceeded the allowabletime limit Tag" bomboffs

Ask a Question related to Macromedia ColdFusion, Design and Development.

  1. #1

    Default CFMX7's numerous "request has exceeded the allowabletime limit Tag" bomboffs

    Prior to CFMX, you could bump up the RequestTimout on the URL, example:
    mypage.cfm?RequestTimeout=120. Under CFMX (6.1) you could do it with cfset
    Variables.RequestTimeout = 120 (from Ben Forta, and that always seems to work)
    or reputedly by cfsetting (from the documentation, and I say reputedly because
    I don't know anyone who's ever gotten that way to work).

    Now, under CFMX7, I'm seeing "request has exceeded the allowable time limit
    Tag: (((tagname)))" EVERYWHERE. Just for fun, go to Google and search for
    "request has exceeded the allowable time limit" (with the double quotes).
    You'll find page after page after page of ColdFusion pages that crashed while
    the Google spider was indexing them. I find it difficult to believe that
    suddenly so many people don't know how to set the RequestTimeout.

    Have the rules for changing RequestTimeout changed AGAIN in CFMX7? Does
    cfsetting finally work now, and they took away setting Variables.RequestTimeout
    without telling anyone??? Or is there something else going on besides the
    request timeout?


    WebManWlkg Guest

  2. Similar Questions and Discussions

    1. #39978 [NEW]: ALERT - Configured request variable limit exceeded
      From: pierre at decamps dot org Operating system: OpenSuSE 10.2 PHP version: 5.2.0 PHP Bug Type: *General Issues Bug...
    2. Help: "256 levels of recursion were exceeded in one action list."
      I'm trying to make this very simple mathematical flash-program that factorizes a number. So far i have succeded, but flash dosent allow the program...
    3. "lipping path limit reached for TIFF Preview" error message
      Has anyone encounter the error, "Clipping path limit reached for TIFF Preview," when saving and Illustrator CD file as EPS? I've created a fairly...
    4. Request.Form("Field Name") Versus Request.QueryString("Field Name")
      I want to know what's the differences between Request.Form("Field Name") and Request.QueryString("Field Name") OR they function exactly the...
    5. "Paging" (First/Previous/Next/Last to limit # of listings per page)
      I'm trying to get a handle on the best way to handle setting up my listings so that I display groups of about 25 records per page. I currently have...
  3. #2

    Default Re: CFMX7's numerous "request has exceeded the allowabletime limit Tag" bomboffs

    I just wrote a little test program that loops millions of times (doing nothing
    else) and takes 67.316 seconds to complete. I set the request timeout in CF
    Admin to 60 seconds. I tried setting Variables.RequestTimeout to 120 and
    crashed with "request has exceeded the allowable time limit". I tried again
    with cfsetting RequestTimeout="120" and that works now.

    So the answer is, if you're running CFMX 6.1 and can't seem to get cfsetting
    requestTimeOut to work, try Ben Forta's method of setting
    Variables.RequestTimeout instead. But remember, when you upgrade to CFMX 7,
    you'll have to convert over to using the documented way, because it now works
    in CFMX 7, and Variables.RequestTimeout doesn't.

    I feel sorry for everyone who used Ben Forta's undocumented feature because
    they couldn't get the documented unfeature to work.


    WebManWlkg Guest

Posting Permissions

  • You may not post new threads
  • You may post replies
  • You may not post attachments
  • You may not edit your posts

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139