Pages

Saturday, January 15, 2011

UploadModule is not installed into web.config.! using

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>

1 comment:

  1. when I do using localhost, it is working fine. but When,

    After uploading this type error given..

    Unable to write to folder:~/UploaderTemp. Please change the permissions of this folder or specify a temporary folder using TempDirectory property or setting temporary file location in web.config.

    ReplyDelete