I am using Dropzone.js and my PHP script to upload files to my server. I am noticing that they don't exactly upload in the order I select them. For example, say I have 1.jpg
, 2.jpg
, 3.jpg
, 4.jpg
& 5.jpg
.
They are uploaded in the order the server receives them the fastest. So it could be uploaded like 4, 2, 5, 3, 1.
My PHP script also inserts the file into a database, which is why ordering is important. I couldn't find a config option to upload in order, but I am thinking I might be able to step through the queue and upload them in order that way rather than letting dropzone handle the queue.