Re: Error: UploadModule is not installed into web.config

  •  04-15-2011, 7:39 AM

    Re: Error: UploadModule is not installed into web.config

    Dear shailen,
     
    http://ajaxuploader.com/Deployment.htm , please check whether you followed step 2.

    To allow Ajax Uploader to handle upload requests, you need to add its HttpModule to your application.

    IIS 6.0 and IIS 7.0 Classic mode

    <configuration>
    <system.web>
    <httpModules>
    <add name="CuteWebUI.UploadModule" type="CuteWebUI.UploadModule,CuteWebUI.AjaxUploader"/>
    </httpModules>
    </system.web>
    </configuration>

    IIS 7.0 Integrated mode

    <configuration>
    <system.webServer>
    <modules>
    <add name="CuteWebUI.UploadModule" type="CuteWebUI.UploadModule,CuteWebUI.AjaxUploader"/>
    </modules>
    </system.webServer>
    </configuration>
     
    Thank you for asking
View Complete Thread