Upload Module is not installed into the Web.config

  •  06-23-2009, 11:23 AM

    Upload Module is not installed into the Web.config

    I am using the multiple-files-upload.aspx method to upload files on my development box. I have bought the Ajaxuploader and installed the .dll and .lic file in the bin folder of the app.  I have the following references to the uploader in my web.config. 
     
    AppSettings
        <add key="CuteWebUI.AjaxUploader.GlobalMaxSizeKB" value="100000"/>
        <add key="CuteWebUI.AjaxUploader.TempDirectory" value="~/UploaderTemp"/>
     
    <system.web>
    <pages>
          <controls>
            <add namespace="CuteWebUI" assembly="CuteWebUI.AjaxUploader" tagPrefix="CuteWebUI"/>
       </controls>
        </pages>
     
     <httpModules>
    <add name="CuteWebUI.UploadModule" type="CuteWebUI.UploadModule,CuteWebUI.AjaxUploader"/>
    </httpModules>
     </system.web>
     
    The IIS version is 5.1.2600.0 (By looking at Computer Management -> Help -> About Computer Management) My dev box is a XP box and is not a Integrated environment.
     
    When I click on UPload Multiple files button, I get the "Upload Module is not installed into the Web.config!" error.  This happens only in C:\inetpub\wwwroot\app2.
     
    There is another app1 C:\inetpub\wwwroot\app1. The uploader works perfectly in app1. No issues in app1. I have compared the web.config in both the apps and I do not find any difference. I am using the same dll and lic file in both the apps.
     
    Appreciate your help.
     
    Thanks,
     
     
     
     
     
     
View Complete Thread