Mark Turner
Mark Turner

Reputation: 1

After upgrading from CF9 to CF10, website displays only blank screens

I have successfully installed ColdFusion 10. However my web site won't work without the previous Coldfusion 9 instance running.

It is like CF10 cannot see my IIS web site. I do not get any errors when I try using CF10, it just doesn't render a screen (all blank).

Upvotes: 0

Views: 1262

Answers (1)

Loftx
Loftx

Reputation: 1792

There could be a number of reasons for this, as quite a large number of people seem to be having issues with the upgrade to ColdFusion 10. Based on the information you've provided, it sounds like IIS is still connected to ColdFusion 9 rather than ColdFusion 10.

You can verify this by adding the following snippet to a ColdFusion page to output your ColdFusion version (when ColdFusion 9 is running):

<cfoutput>#SERVER.ColdFusion.ProductVersion#</cfoutput>

If it starts with 9, then IIS is connecting to the old ColdFusion version. If this is the case I would suggest rerunning the ColdFusion connector (for version 10). Instructions for using the configurator are available at http://help.adobe.com/en_US/ColdFusion/10.0/Installing/WSc3ff6d0ea77859461172e0811cdec18a15-7ffb.html but it should be a case of running this (the ColdFusion 10 configurator, not the ColdFusion 9 one), removing ColdFusion from all the IIS sites and then readding these entries in the configurator.

You should then find when loading a page ColdFusion 10 is used. If this doesn't work, you should ensure the ColdFusion 10 service is running review the log files as suggested by Aaron Greenlee.

Upvotes: 2

Related Questions