Re: Intermittent problem with temporary file directory not being available

  •  08-02-2010, 8:12 PM

    Re: Intermittent problem with temporary file directory not being available

    Hi,
     
    when you use load balancing and get "Unable to find the uploaded file in directory: E:\....\UploaderTemp ",
     
    you need configure a shared file server to store the temp files.
     
    set the TempDirecotory=\\sharedserver\tempfolder
     
    if you get security issue, fill username/password into web.config
     
    <add key="CuteWebUI.AjaxUploader.WindowsUsername" value="Terry" />
     <add key="CuteWebUI.AjaxUploader.WindowsPassword" value="12345abcde" />
     <add key="CuteWebUI.AjaxUploader.WindowsDomain" value="" />
     
    or use custom file provider  to store the file into same place:
     
     
    Regards,
    Terry
     
     
     
     
View Complete Thread