mrks
mrks

Reputation: 8333

plupload: Restart upload from beginning (with chunking)

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

Answers (1)

pilczuk
pilczuk

Reputation: 196

Try to loop over files and set file.loaded = 0; file.status = plupload.QUEUED;

Upvotes: 2

Related Questions