Page not found error

Ask a Question related to Coldfusion Database Access, Design and Development.

  1. #1

    Default Page not found error

    I've just upgraded from CF 5.0 to CF MX 7.0. One of my CF scripts that includes
    looping through a DB query does not work well anymore. Under CF 5.0 on Win 2K
    it worked fine. Now under CF MX 7.0 on Win 2003 it starts off fine (displays
    page header) but then seems to timeout and then browser displays a page not
    found error. If I then run it again right away, it works fine. I know the query
    takes a long time (large DB with a complex view).

    I've tried changing the query timeout, and I've turned off the timeout in CF
    administrator, but I still get the same problem.

    There must be some IIS 6.0 setting that needs to be changed. I've played with
    some settings in the metabase, but they had no effect either.

    Has anyone seen this problem before? If so, what was the cure?

    Thanks.

    Lloyd.

    LStead Guest

  2. Similar Questions and Discussions

    1. Page Not Found Error after Installation
      I just installed coldfusion 7. For some reason the flash remoting did not get installed or enabled. Everything appears to say it installs by...
    2. Spontaneous Page Not Found error
      We've been experiencing some of our ColdFusion servers spontaneously stop being able to see a file, which results in a "Page cannot be found" error....
    3. What about page not found error?
      I am trying to create a custom Page Not Found page similar to a 404 redirect in IIS. I have placed the following code in my Application file but the...
    4. page not found error in mx 7
      I just downloaded the trial version of MX 7. This is a completely brand new installation on IIS 6 and what happens is that the installation runs...
    5. Page Cannot be Found Error
      that error is a server error and has nothing to do with Publisher. I accessed your site just fine. assuming they entered the correct url what most...
  3. #2

    Default Re: Page not found error

    I found a solution by flushing a space out to the browser for every loop through the query. That seems to keep the browser from timing out. Go figure.

    Thanks.

    Lloyd.
    LStead Guest

  4. #3

    Default Re: Page not found error

    Now that I see how you solved it, we have experienced something similar. What
    we found was, on long jobs, if the browser has nothing to do for a couple of
    minutes, it will send another http request and the job starts again. We solved
    our problem with the occasional flush.

    In your case, flushing a space each time through the loop might give you more
    spaces than you really want on the final web page. You might want to use the
    mod operator to reduce the flush to every hundreth iteration or so.

    Dan Bracuk 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