Reputation: 8333
Is there any way to restart a plupload upload without removing the selected files? plupload.stop()
stops the upload, but if I start it again with start()
, it continues where it left off. Instead, I want it to upload all files again, even those that were already uploaded.
I am using chunking, if this makes any difference.
Upvotes: 0
Views: 429
Reputation: 196
Try to loop over files and set file.loaded = 0; file.status = plupload.QUEUED;
Upvotes: 2