I am using dropzone js plugin in laravel project to download files. I need to know the following:
- What is the recommended file size to download for individual and totally?
- Is there any way to use chunk and uploadmultiple at the same time?
I am using dropzone js plugin in laravel project to download files. I need to know the following:
chunkSize
and chunks
options for chunking.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.