Configuring Coldfusion On IIS -
i have export classic asp/asp.net 2.0 web site uses coldfusion 8, windows server 2003 iis6 windows server 2012 , iis 8.
i got working except setting coldfusion work iis. pages using coldfusion have .cfm extension.
i tried follow link here did not work
http://www.adobe.com/devnet/coldfusion/articles/iis-configuration.html
when try add handlers in iis, see warning saying site in classic mode , need manage managed handlers directly in config file.
i tried add handlers using appcmd this:
appcmd set config /section:handlers /+[name='cfmhandler',path='*.cfm',verb='*',type='c:\coldfusion8\runtime\lib\wsconfig\jrun_iis6.dll',precondition='integratedmode']
then added wildcard script map in iis per link, seems created , entry in web.config of site.
<system.webserver> <handlers> <add name="jwildcardhandler" path="*" verb="*" modules="isapimodule" scriptprocessor="c:\coldfusion8\runtime\lib\wsconfig\1\jrun_iis6_wildcard.dll" resourcetype="file" requireaccess="none" precondition="bitness32" /> </handlers> </system.webserver>
when try browse web site, if wildcard handler exists in web.config, error 404 on page, 1 not end .cfm
i removed wildcard , following error:
handler "cfmhandler" has bad module "managedpipelinehandler" in module list
most causes: managed handler used; however, asp.net not installed or not installed completely. there typographical error in configuration handler module list. during application initialization, either application initialization feature has set skipmanagedmodules true, or rewrite rule setting url maps managed handler , setting skip_managed_modules=1.
i tried run fix programmers mentioned in other questions, did not c:\windows\microsoft.net\framework64\v4.0.30319\aspnet_regiis -i
i tried add handler in web.config instead of doing through appcmd got same error.
<add name="cfmhandler" path="*.cfm" verb="*" type="c:\coldfusion8\runtime\lib\wsconfig\jrun_iis6.dll" precondition="classicmode" />
i have been trying work last 3 days without luck.
all need done make page ends .cfm handled coldfusion server. it's web site old .net , classismode. not find simple step step instructions other link above did not work me.
thank in advance
Comments
Post a Comment