Skip to main content
Participant
November 18, 2013
Question

Can't open cfm pages

  • November 18, 2013
  • 1 reply
  • 2303 views

New install of CF10 on IIS7 does not open any cfm pages tries to download instead.

This topic has been closed for replies.

1 reply

Legend
November 18, 2013

First try running the connector tool. C:\ColdFusion10\cfusion\runtime\bin\wsconfig.exe. Select "all" when prompted and then OK. Then try CF again.

Participant
November 18, 2013

It was one of the first things I tried. Thanks

vishu_13
Inspiring
November 20, 2013

Usually, when a server attempts to offer a file that is supposed to be executed as a download instead, there is no file extension association for it.  This can be checked in both the handler mappings (where CF-associated file types are pointed to the isapi_redirect.dll file) and in your mime types (ensure that entries for CF-related extensions do NOT exist, or they may be interfering with the rendering process).

ColdFusion default renders CFM/L pages as text/html unless otherwise specified, so no mime type entries should exist.  (But handlers need to exist, or CF is never handed off the request when someone visits a page)


You can try changing the application pool for your site and then observe the behavior. Like you have test site and default site then there will be 2 pools for each of them i.e test and default app pool. If you are facing issue with default web site then change the app pool of default site to test pool and then test the behavior. It might be the issue with the app pool

Thanks

VJ