This is a migrated thread and some comments may be shown as answers.

RadCloudUpload Multiple file upload issue.

1 Answer 46 Views
General Discussions
This is a migrated thread and some comments may be shown as answers.
Soumen
Top achievements
Rank 1
Veteran
Soumen asked on 21 Sep 2020, 08:53 AM

Hello I am working in RadCloudUpload to upload files in amazon s3 server. It working with Single file (20MB) perfectly. But when I am trying  to open multiple files (ex: 10MB, 20MB, 5MB, 8MB) it is uploading only One or Two files at a time.Not all the files are uploaded. but If I am trying to upload files with smaller size (ex: 10KB, 2MB, 100KB, 3MB) then all the files are uploaded to S3 server. How to resolve this problem ?

<telerik:RadCloudUpload ID="RadCloudUpload1" runat="server" MaxFileSize="91943040" RenderMode="Lightweight"                 MultipleFileSelection="Automatic" OnClientFileUploaded="fileUploaded" OnFileUploaded="RadCloudUpload1_FileUploaded" ProviderType="Amazon"  >        </telerik:RadCloudUpload>


function fileUploaded(sender, args)
{          theForm.submit();            }


 protected void RadCloudUpload1_FileUploaded(object sender, CloudFileUploadedEventArgs args)
    {      
        long contentLenght = args.FileInfo.ContentLength;
        string contentType = args.FileInfo.ContentType;
        string keyName = args.FileInfo.KeyName;
        string originalName = args.FileInfo.OriginalFileName;
        args.IsValid = true;       
    }


<httpRuntime maxRequestLength="91943040" executionTimeout="3200" />

 

please help !!!

1 Answer, 1 is accepted

Sort by
0
dulevo
Top achievements
Rank 1
answered on 25 Sep 2020, 06:43 AM
.
Tags
General Discussions
Asked by
Soumen
Top achievements
Rank 1
Veteran
Answers by
dulevo
Top achievements
Rank 1
Share this question
or