Hi,
I am working in a coldfusion application which is hosted in 2 windows servers with IIS versions 6.0 and 7.5. The problem is that nowadays the users are getting the IE error page 'Internet Explorer cannot display this webpage'. This issue is not bounded to a single page. Users are getting this issue in different pages when they click links or click the submit button. And this issue is replicated in two different servers. I thought of being this as a cache issue and tried with the nocache. But it didnt work. I am clueless about this now. Please help me out. Thanks.
Hi Adam,
I tried with the onError also. I was not able to register the error. I built a small cfm file which is just taking a single row of data from db and displaying. And I made this page to refresh @ an interval of 3 minutes. I was able to regenerate the issue about 9 times within 4 hours. But the cause of the issue is unknown. Along with this I made a html page which showed this issue for about 2 times within this 4 hour. So I am totally confused about this. ![]()
If it's occuring with a HTML file, then CF is playing no part in it, so I'd focus on looking at the network between the clients and the web server, and indeed the web server itself.
Perhaps perform your test from a browser on the web server itself (using localhost as the domain name, so as to stay off the network), and see if you still get the error. If you do, it's something with IIS. If not, it points to your network.
--
Adam
Still I am having the issue. I did what all I could do
. Thought of updating here what all I did. I created one test html and 1 test cfm page and I kept them in the same folder in which the application resides. These pages will refresh by itself in every 3 minutes. The html page is just displaying a message and the cfm file is just picking up the first record from a table and displaying it. Now for both this html as well as cfm pages, we got this same issue. I need to confirm about one thing here. When we run this html page, will it go to the coldfusion application server? If it is going to the server, then the cf application server may have the issue. If it is not going to the application server, it is something related to IIS or server? Ok.. Now I thought of moving my application to another server and I put this test pages in that to confirm whether this issue is not there. But I found this issue there too. Not in that frequency that I used to get in the other server. I then tried with different IIS settings in these servers which also didnt solve my issue.
So is this any problem with the coldfusion installation?
Anything related to IIS or server?
When we run an html page which is kept in the same folder of our coldfusion application, will it hit coldfusion application server?
Is there anything that I am missing.. Please help!!! Thanks..
balumohan wrote:
When we run an html page which is kept in the same folder of our coldfusion application, will it hit coldfusion application server?
Hi balumohan,
Like Adam said, no, an html page request will not hit the CF Application server, even if the html page is kept in the same folder as your CF application.
Thanks,
-Aaron
balumohan wrote:
Ok. Thanks Aaron... Out of these what I have mentioned above... What can be the reason of the issue? Do you feel anything that I should try? Thanks..
Hi balumohan,
Basically I'd do exactly as Adam suggested. Load the .html page via http://localhost/.... (load the page locally on the server itself). You might also watch the site's IIS log to see if the request was logged and if it was logged as an error, when the issue occurs.
Thanks,
-Aaron
Now, on to something else. Since the problem occurs when your users "click links or click the submit button" it could be an encoding issue. Does it help when you place the following two lines at the beginning of onRequestStart (in Application.cfc)?
<cfscript>
setEncoding("url", "UTF-8");
setEncoding("form", "UTF-8");
</cfscript>
balumohan wrote:
Below are my system details:
Windows server 2003 r2 :: 64 bit service pack 2
IIS 6.0
coldfusion :: 9,0,0,251028
Adobe Driver Version 4.0 (Build 0005)
You should be thinking of updating. ColdFusion 9 is now at:
1) update 1 (9.0.1) and Cumulative Hot Fix 2;
2) update 2 (9.0.2): [Note from the official documentation: "This Updater release is a follow-up of ColdFusion 9 Update 1 release. However, note that, unlike ColdFusion 9.0 Update 1, ColdFusion 9.0 Update 2 is a full installer. Hence, do not install ColdFusion 9.0.2 alongside an existing ColdFusion 9.0 or ColdFusion 9.0.1 installation.
ColdFusion 9.0.2 update is a summation of ColdFusion 9.0.1, ColdFusion 9.0.1 Cumulative HotFixes 1 & 2, all ColdFusion 9.0.1 Security HotFixes, but without Verity."]
Yes. the site and the localhost are in the same web server. I am thinking like it is a server issue?
But the problem is that I have this issue in another server also. So both these servers are having the issue?
But as the test page is HTML, it is not coldfusion related??
A 3rd server which is not having coldfusion installed is not showing this issue.
CONFUSED!!!!![]()
balumohan wrote:
But as the test page is HTML, it is not coldfusion related??
A 3rd server which is not having coldfusion installed is not showing this issue.
We can already get this question out of the way. The browser's HTML request does not reach ColdFusion. It is served directly by the web server. How does your typical HTML code look like?
North America
Europe, Middle East and Africa
Asia Pacific