Uploading/Downloading many files fails
Hello,
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.
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.
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
SIGN IN To post a reply.
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.
- ASP.NET Core file system provider
- ASP.NET MVC 5 file system provider
- ASP.NET Core Azure cloud file system Provider
- ASP.NET MVC 5 Azure cloud file system Provider
- Amazon S3 cloud file system provider
- File Transfer Protocol file system provider
- SQL database file system provider
- NodeJS file system provider
- Google Drive file system provider
- 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.
Service Provider: https://www.syncfusion.com/downloads/support/directtrac/general/ze/ServiceProvider1900986708.zip
Please get back to us if you need further assistance.
Regards,
Sharon Sanchez S.
Marked as answer
SIGN IN To post a reply.