uploadmodule is not installed into web.config

Last post 04-15-2011, 6:43 AM by shailen. 3 replies.
Sort Posts: Previous Next
  •  10-11-2009, 1:37 PM 56321

    uploadmodule is not installed into web.config

    Get this error when deploying to a test server. On localhost it works fine....
     
    Any ideas?
  •  10-11-2009, 10:27 PM 56324 in reply to 56321

    Re: uploadmodule is not installed into web.config

    hanseilers,
     
    Please check your IIS mode then change the web.config.
     

    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>

    asp.net Chat http://cutesoft.net/ASP.NET+Chat/default.aspx
    Web Messenger: http://cutesoft.net/Web-Messenger/default.aspx
    asp.net wysiwyg editor: http://cutesoft.net/ASP.NET+WYSIWYG+Editor/default.aspx
    asp wysiwyg html editor: http://cutesoft.net/ASP
    asp.net Image Gallery: http://cutesoft.net/ASP.NET+Image+Gallery/default.aspx
    Live Support: http://cutesoft.net/live-support/default.aspx

  •  01-15-2011, 2:15 AM 65730 in reply to 56324

    Re: uploadmodule is not installed into web.config

    Thanks,
     
    This is helpful for me in my project.
  •  04-15-2011, 6:43 AM 67184 in reply to 56324

    Re: uploadmodule is not installed into web.config

    Hi Adam,
     
    I have already done the above in my web.cofig file still when I try to upload the files, it gives different behaviours in different browsers.
     
    For Chrome, I am getting following javascript alert
     
    UploadModule is not installed into web.config.! 
     
    When I use the upload in Firefox, it give javascript error as following
     
    Error: CuteWebUI_AjaxUploader_Initialize is not defined
    Source File: BLOCKED SCRIPTalert('TODO: FIXME')
    Line: 0 
     
    what should I do to solve this issue?
     
    Thanks,
    Shailen 
View as RSS news feed in XML