Skip to main content
Participant
June 22, 2009
Question

Error Code: 404 not found

  • June 22, 2009
  • 1 reply
  • 829 views

I have a web-based application
using cfm pages and updating records in the database. When the
application runs after 1 or 2 minutes, I am getting the window with the error

message : '404 Not Found - The requested item could not be located. (12028)',

but the back-end is still running and finishes update in the records.

So I am wondering if there is any solution in my case?
Thanks in advance!

    This topic has been closed for replies.

    1 reply

    Inspiring
    June 22, 2009

    To pass information between two forms across a redirect ("cflocation" tag), you must use Session variables.  It appears that you are attempting to "make a nod in that direction" with what you have written inside the "cflock" block in your "login" page, but it doesn't actually do so.  Go review the examples carefully again.

    I find that it helps considerably to "grab a pad of paper and a number-two pencil" and draw it.  Work out in your own mind exactly what is happening on both the client and the server side during each step of this interaction:

    1. Presenting the login page.
    2. Gathering the input from a login page and evaluating it.
    3. The "redirect" process.  ("What Would HTML Do?")
    4. Presenting the redirected page.

    You are on the right track, but "it hasn't quite 'clicked' yet."

    dyipuyAuthor
    Participant
    June 23, 2009

    Hi,

    The said page is working well in the Development and UAT environment. This only happens in the Production server. I believe it might have something to do in the Server settings (ISA or IIS) but I have no idea about it. Can someone have any idea on this?

    Btw, the page doesn't display the error if it has finished the process in less than two minutes. The error display if it takes more than to minutes to process. I already included a 10mins timeout in the code but still the error displayed.

    Thanks in advance.