IIS Error

Posted by Community Admin on 04-Aug-2018 10:00

IIS Error

All Replies

Posted by Community Admin on 01-Feb-2013 00:00

In the process of setting up Sitefinity 5.3 Trial for access by other users, every time I try to access localhost, it returns an error saying "Handler "WildCard32" has a bad module "IsapiModule" in its module list". 

The potential causes for this are listed as Handler "WildCard32" has a bad module "IsapiModule" in its module listed as incomplete installation of ASP.NET which isn't true because I've cross checked the installation and it's complete, and another reason is listed as a typographical error which I've confirmed to be not the case.

How do I proceed?

Posted by Community Admin on 05-Feb-2013 00:00

Hi,

Thank you for contacting Telerik Support.

I'm sorry to hear about the problems you've experienced running your project. Can you please confirm if you have everything registered in IIS as described in this article of our Installation and Administration guide and inform us if the issues persist?
Alternatively you can try moving the wildcard handlers to the bottom of the handlers section in web.config

<add name="WildCard" path="*" verb="*" modules="IsapiModule" scriptProcessor="%windir%\Microsoft.NET\Framework64\v4.0.30319\aspnet_isapi.dll" resourceType="Unspecified" requireAccess="None" preCondition="classicMode,runtimeVersionv4.0,bitness64" />

      <add name="WildCard32" path="*" verb="*" modules="IsapiModule" scriptProcessor="%windir%\Microsoft.NET\Framework\v4.0.30319\aspnet_isapi.dll" resourceType="Unspecified" requireAccess="None" preCondition="classicMode,runtimeVersionv4.0,bitness32" />

The web.config should be looking like

<add name="Telerik_Web_UI_DialogHandler_aspx" verb="*" preCondition="integratedMode" path="Telerik.Web.UI.DialogHandler.aspx" type="Telerik.Web.UI.DialogHandler" />

     <add name="Telerik.ReportViewer.axd_*" verb="*" preCondition="integratedMode" path="Telerik.ReportViewer.axd" type="Telerik.ReportViewer.WebForms.HttpHandler, Telerik.ReportViewer.WebForms" />

     <add name="WildCard" path="*" verb="*" modules="IsapiModule" scriptProcessor="%windir%\Microsoft.NET\Framework64\v4.0.30319\aspnet_isapi.dll" resourceType="Unspecified" requireAccess="None" preCondition="classicMode,runtimeVersionv4.0,bitness64" />

     <add name="WildCard32" path="*" verb="*" modules="IsapiModule" scriptProcessor="%windir%\Microsoft.NET\Framework\v4.0.30319\aspnet_isapi.dll" resourceType="Unspecified" requireAccess="None" preCondition="classicMode,runtimeVersionv4.0,bitness32" />

   </handlers>

   <staticContent>

Write back if the issue still persist after making the change in web.config.


Regards,
Boyan Barnev
the Telerik team
Do you want to have your say in the Sitefinity development roadmap? Do you want to know when a feature you requested is added or when a bug fixed? Explore the Telerik Public Issue Tracking system and vote to affect the priority of the items

This thread is closed