Hello,
I noticed a lot of "Location Code: 26" questions and very few answers on the net. I received this error code a few days ago and I narrowed it down to the <cfoutput> tags in my code.
I have a page with 20 <cfoutput> tags where I am retrieving 'city' and 'province' data from an Access 2002 database. The query to retrieve the 'city' returns 849 records and the query to retrieve the 'province' returns 112 records.
My code looks something like this:
If all 20 <CFOUTPUT> tags are on the page, I receive this error:
If only 19 <CFOUTPUT> tags are on the page, it works perfectly.
Any ideas how I can include the 20th <CFOUTPUT> tag?
EDIT: This is on a Coldfusion 5 server!
Thank you in advance!
I noticed a lot of "Location Code: 26" questions and very few answers on the net. I received this error code a few days ago and I narrowed it down to the <cfoutput> tags in my code.
I have a page with 20 <cfoutput> tags where I am retrieving 'city' and 'province' data from an Access 2002 database. The query to retrieve the 'city' returns 849 records and the query to retrieve the 'province' returns 112 records.
My code looks something like this:
Code:
<CFQUERY name="city_query" datasource="locationDB">
SELECT *
FROM Cities
ORDER BY cityName;
</CFQUERY>
<CFQUERY name="province_query" datasource="locationDB">
SELECT *
FROM Provinces
ORDER BY provName;
</CFQUERY>
<!--- the 1st CFOUTPUT section --->
<P><b>City</b><br />
<SELECT Name="Main_City">
<CFOUTPUT QUERY="city_query">
<OPTION VALUE=#cityID#>#cityName#</OPTION>
</CFOUTPUT>
</SELECT></P>
<P><b>Province</b><br />
<SELECT Name="Main_Province">
<CFOUTPUT QUERY="province_query">
<OPTION VALUE=#provID#>#provName#</OPTION>
</CFOUTPUT>
</SELECT></P>
.
.
.
.
.
.
<!--- the 20th CFOUTPUT section --->
<P><b>City</b><br />
<SELECT Name="Main_City">
<CFOUTPUT QUERY="city_query">
<OPTION VALUE=#cityID#>#cityName#</OPTION>
</CFOUTPUT>
</SELECT></P>
<P><b>Province</b><br />
<SELECT Name="Main_Province">
<CFOUTPUT QUERY="province_query">
<OPTION VALUE=#provID#>#provName#</OPTION>
</CFOUTPUT>
</SELECT></P>
If all 20 <CFOUTPUT> tags are on the page, I receive this error:
Code:
Error Diagnostic Information
Request canceled or ignored by serverServer busy or unable to fulfill request. The server is unable to fulfill your request due to extremely high traffic or an unexpected internal error. Please attempt your request again (if you are repeatedly unsuccessful you should notify the site administrator). (Location Code: 26)
If only 19 <CFOUTPUT> tags are on the page, it works perfectly.
Any ideas how I can include the 20th <CFOUTPUT> tag?
EDIT: This is on a Coldfusion 5 server!
Thank you in advance!