I am upgrading a CF app written in CF 4.5 to CFMX 6.1. THe page is bing
modified to run in the UK and US. via manipulating the session locale.

There is one web page, a dynamic report criteria selection page, that is will
not load on one of the productions web server when a specific report is
selected from a side bar navigation hyperlink.

The page is running properly on other servers and workstations e.g. two W2K
servers, a W2k Pro development workstations and a project manager's Win XP
laptop.

The page is called from three hyperlinks each using a report_name="" query
string to differentiate the requested reports.
Example:
<a href="reports/report_criteria.cfm?report_name=report_uhu"
target="main">Vehicle Utilization</a><br>
<a href="reports/report_criteria.cfm?report_name=report_ofc"
target="main">Ordering Facility</a><br>
<a href="reports/report_criteria.cfm?report_name=report_t" target="main">Trip
List</a><br>

The top two links will work, the bottom link will not. It does not matter
where the third link is placed in the order or if I rename the query string
variable. e.g. report_trl.

When the Trip List link is click the end user gets a "loading data" notice in
the browser's status bar and nothing else.

I have global error handler template in the application.cfm page set to trap
any exception, which is returning errors if I select the other reports, but no
errors are being trapped and returned when Trip List report is requested.

There is a <cfif findNoCase("report_t", URL.report_name) gte 1> statement
wrapping code to retrieve data from the underlying SQL db. Even if I remove
the CFML code blocks , the page will not load on this one server.

Has anyone ran into this problem before?? If so, How did you resolve it??