Dropzone js file download issue

I am using dropzone js plugin in laravel project to download files. I need to know the following:

  1. What is the recommended file size to download for individual and totally?
  2. Is there any way to use chunk and uploadmultiple at the same time?
  1. Recommended File Size for Download:
  • There’s no fixed recommendation; it depends on server capacity and network speed.
  • Individual file sizes: Several gigabytes may be manageable.
  • Total download size: Optimize for efficiency; consider pagination or lazy loading for large datasets.
    **Using Chunking and Upload Multiple Files:
  • Yes, Dropzone.js supports chunking and multiple file uploads simultaneously.
  • Configure chunkSize and chunks options for chunking.
  • Multiple file uploads are supported by default; users can select multiple files or drag and drop them onto Dropzone.

Here’s a basic example of configuring Dropzone.js to use chunking and allow multiple file uploads simultaneously:

Dropzone.options.myDropzone = {
paramName: “file”, // The name that will be used to transfer the file
maxFilesize: 2048, // MB
chunkSize: 1024 * 1024, // 1 MB chunks
chunks: true, // Enable chunking
parallelUploads: 4, // Number of parallel uploads
// Other options…
};

// Initialize Dropzone
var myDropzone = new Dropzone(“#my-dropzone”);

This topic was automatically closed 182 days after the last reply. New replies are no longer allowed.