Further to my previous post about the problems with the Coldfusion enablement in WebsitePanel, I have now found a better solution until this is fixed, therefore if you did follow those instructions already you may now be getting an "internal server error", if so then then please click the below screenshot for the solution.

ColdFusion is now simply enabled on all sites by default, so you do not need to enable it via WebsitePanel any longer or apply the aforementioned fix, you only need to enable the virtual directories on the ColdFusion tab.
If you use Railo then there is a very slight change to the Railo instructions HERE, the change simply disables the ColdFusion handler to make sure you are using railo and not ColdFusionm this is done simply by adding the following to the handlers section.
<remove name="coldfusion" />
If you are an exisitng Railo user then you may posisbly find that your site is now using ColdFusion instead, in which case simply apply the above change in your web.config.
Please ignore the below instructions, a new solution has been implemented which can be found HERE.
---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
Hey folks, if you are using the developer hosting then you may find that ColdFusion is no longer working on your site, this is because I had to make some changes to fix a bug with the coldfusion connector. this does not affect Railo.
Unfortunately this has had an adverse side effect and now when WebsitePanel enables ColdFusion it doesn't work.
Until I have fixed this the current work around is to manually enable ColdFusion. To do this simply edit the web.config file in your website root (wwwroot) and add the following in the <handlers> section, I suggest you backup the file first just in case as this can break your site.
<remove name="ColdFusion (*)" />
<add name="ColdFusion (*)" path="*" verb="*" modules="IsapiModule" scriptProcessor="C:\ColdFusion9\runtime\lib\wsconfig\1\jrun_iis6_wildcard.dll" resourceType="Unspecified" requireAccess="None" />
In addition you may also need to check that you have index.cfm set as a default document.
so your entire web.config should look something like this, unless you have customised it.
<?xml version="1.0" encoding="UTF-8"?>
<configuration>
<system.webServer>
<directoryBrowse enabled="false" />
<defaultDocument>
<files>
<clear />
<add value="Default.htm" />
<add value="Default.asp" />
<add value="index.htm" />
<add value="index.html" />
<add value="iisstart.htm" />
<add value="default.aspx" />
<add value="index.cfm" />
</files>
</defaultDocument>
<handlers>
<remove name="ColdFusion (*)" />
<add name="ColdFusion (*)" path="*" verb="*" modules="IsapiModule" scriptProcessor="C:\ColdFusion9\runtime\lib\wsconfig\1\jrun_iis6_wildcard.dll" resourceType="Unspecified" requireAccess="None" />
</handlers>
</system.webServer>
</configuration>
Recent Comments