ncuesta / dropzonejs-rails

Spice your Rails apps with some Dropzone sugar!
http://rubygems.org/gems/dropzonejs-rails
MIT License
311 stars 56 forks source link

AWS S3 : Unable to get callback for more than 5 files #46

Closed ParthivPatel-BTC closed 6 years ago

ParthivPatel-BTC commented 6 years ago

Using rails application, I am trying to upload more than 5 images at a time and the maxFiles is set to 8. I am using carrierwave and dropzonejs-rails gems to upload files. When I select 5 images and upload, getting success callback but not getting any callback for 6 images after uploading to S3. Have a look at below my dropzone configurations


paramName: 'file',
uploadMultiple: true,
maxFiles: 8,
maxFilesize: 5,
addRemoveLinks: true,
autoProcessQueue: false,
parallelUploads: 8,
acceptedFiles: '.jpeg,.jpg,.png,.gif',
dictMaxFilesExceeded: "Maximum upload limit reached",
url: '/upload_equipment_images',
method: 'post',
dictInvalidFileType: "upload only JPG/PNG/GIF",
ncuesta commented 6 years ago

Hi @ParthivPatel-BTC, thanks for getting in touch! Unfortunately, this kind of questions are better off asked at Dropzone's repo. This is just a wrapper around the JS files to ease their inclusion in Rails apps.

Good luck with your problem!

Cheers, Nahuel

NeelTandel-BTC commented 3 years ago

Hello, @ParthivPatel-BTC have you fixed this issue?