Re: Strange behaviour of Uploading control

  •  07-23-2012, 9:04 AM

    Re: Strange behaviour of Uploading control

    Hi koro,
     
    Is your site on the load balancing/web farm/cloud environment? If yes, please follow the step below to set the TempDirectory. 
     
    -------------------------------------------------------------------------------------------- 
    Setting temporary file location in web.config 

    Add the following tag into the <appSettings> element of your application web.config file:
    <add key="CuteWebUI.AjaxUploader.TempDirectory" value="~/UploaderTemp"/>

    In web farm environments, the Url that you specify must map to a central location, which is saved to by all servers in the farm. This can be done using a virtual directory that maps to a common shared folder on the network.

    <add key="CuteWebUI.AjaxUploader.TempDirectory" value="\\shareserver\temp"/>
     
    --------------------------------------------------------------------------------------------   
     
    Regards,
     
    Ken 
View Complete Thread