UploadModule is not installed in web.config

Last post 04-10-2014, 8:59 AM by Corobori. 2 replies.
Sort Posts: Previous Next
  •  04-09-2014, 8:27 AM 80237

    UploadModule is not installed in web.config

    I am struggling with an issue on my production server with the Uploader. I am getting the error saying "UploadModule is not installed in web.config.!"

    I checked out a few similar messages in the board but couldn't find the problem.

     

    In System.web I have

     

      <httpModules>

          <add name="CuteEditor.UploadModule" type="CuteEditor.UploadModule,CuteEditor" />

          <add type="DevExpress.Web.ASPxClasses.ASPxHttpHandlerModule, DevExpress.Web.v10.2, Version=10.2.8.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a" name="ASPxHttpHandlerModule" />

          <add name="ScriptModule" type="System.Web.Handlers.ScriptModule, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35" />

          <add name="ErrorLog" type="Elmah.ErrorLogModule, Elmah" />

        </httpModules> 

     

    In  <system.webServer> 

     

      <modules>

            <add type="DevExpress.Web.ASPxClasses.ASPxHttpHandlerModule, DevExpress.Web.v10.2, Version=10.2.8.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a" name="ASPxHttpHandlerModule" />

          <add name="ScriptModule" preCondition="managedHandler" type="System.Web.Handlers.ScriptModule, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35" />

          <add name="CuteWebUI.UploadModule" type="CuteWebUI.UploadModule,CuteWebUI.AjaxUploader"/>

        </modules>

        <handlers>

          <remove name="WebServiceHandlerFactory-Integrated" />

          <remove name="ScriptHandlerFactory" />

          <remove name="ScriptHandlerFactoryAppServices" />

          <remove name="ScriptResource" />

          <add type="DevExpress.Web.ASPxUploadControl.ASPxUploadProgressHttpHandler, DevExpress.Web.v10.2, Version=10.2.8.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a" verb="GET,POST" path="ASPxUploadProgressHandlerPage.ashx" name="ASPxUploadProgressHandler" preCondition="integratedMode" />

          <add name="ScriptHandlerFactory" verb="*" path="*.asmx" preCondition="integratedMode" type="System.Web.Script.Services.ScriptHandlerFactory, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35" />

          <add name="ScriptHandlerFactoryAppServices" verb="*" path="*_AppService.axd" preCondition="integratedMode" type="System.Web.Script.Services.ScriptHandlerFactory, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35" />

          <add name="ScriptResource" verb="GET,HEAD" path="ScriptResource.axd" preCondition="integratedMode" type="System.Web.Handlers.ScriptResourceHandler, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35" />

        </handlers>

      </system.webServer> 

     

    Looking at my error log I can see this error message  The file '/CuteWebUI.AjaxUploader.ashx' does not exist.

     

    I tried http://www.mywebsite.com/CuteWebUI_Uploader_Resource.axd?type=file&file=uploading.gif it gives a "Resource not found message"

    What I am missing ?

     

  •  04-10-2014, 7:24 AM 80239 in reply to 80237

    Re: UploadModule is not installed in web.config

    Hi Corobori,

     

    Please remove the code below from the <modules>section and add the same one into the <httpModules> section, it will fix this error.

     

    <add name="CuteWebUI.UploadModule" type="CuteWebUI.UploadModule,CuteWebUI.AjaxUploader"/> 

     

    Regards,

     

    Ken 

  •  04-10-2014, 8:59 AM 80243 in reply to 80239

    Re: UploadModule is not installed in web.config

     Kenneth,

     

    I am really ashamed on this one. What confused me was that in my web.config I had reference to the CuteEditor.

    Indeed when I uploaded the update including the Uploader I thought strange that the Upload module was already referenced in the web.config, I guess reading Cute... was enough for me ! I should have read 'til the end. It sounds that I really need to upgrade ... my eyeglasses.

View as RSS news feed in XML