Uploading/Downloading many files fails

Hello,

So, I tried to upload 10 files at once it kept loading then failed. Same happens when downloading more than 5 files.
Please help with this issue as it's stopping our business from running smoothly.

I think this might be happening because all upload requests get triggered at once, so it might be helpful if they get triggered one by one.

Thanks

4 Replies 1 reply marked as answer

OM Omar March 18, 2021 01:06 PM UTC

Hello,

Any updates regarding making my upload process sequential instead of triggering all requests at once.


SS Sharon Sanchez Selvaraj Syncfusion Team March 18, 2021 01:35 PM UTC

  
Hi Omar, 
 
Greetings from Syncfusion Support.  
 
We were unable to replicate your mentioned issue with default FileManager sample in our end. We suspect that the issue might occur due to service provider used in your end.  
 
Please find the file providers available for File Manager component.  
 
  1. ASP.NET Core file system provider
  2. ASP.NET MVC 5 file system provider
  3. ASP.NET Core Azure cloud file system Provider
  4. ASP.NET MVC 5 Azure cloud file system Provider
  5. Amazon S3 cloud file system provider
  6. File Transfer Protocol file system provider
  7. SQL database file system provider
  8.  NodeJS file system provider
  9. Google Drive file system provider
  10. Firebase Realtime Database file system provider
 
Please check with the below links to know more about FileManager Component. 
 
 
 
 
Could you please share us the details of the service provider used in your application along with your code block to serve you better. 
 
Please get back to us if you need further assistance. 
 
Regards, 
 
Sharon Sanchez S. 
 



OM Omar March 18, 2021 04:38 PM UTC

Hello Sharon,

But I was asking if it's possible to enable sequential upload of documents.


SS Sharon Sanchez Selvaraj Syncfusion Team March 19, 2021 12:21 PM UTC

Hi Omar, 
 
We have checked with your requirement. Yes, it is possible to enable sequential upload of documents. 
 
In the created event of FileManager, we can set the sequentialUpload property as true. 
 
Refer to the code snippet. 
 
created: function (args) { 
      var fm = document.getElementById("file-manager").ej2_instances[0]; 
      fm.uploadObj.sequentialUpload = true; 
    }, 
 
We have created a sample here for your reference. 
 
 
 
Please get back to us if you need further assistance. 
 
Regards, 
 
Sharon Sanchez S. 


Marked as answer
Loader.
Up arrow icon