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