Questions tagged [plupload]

Plupload is a JavaScript library licensed under GPLv2 that allows you to upload files using HTML5, Gears, Silverlight, Flash, BrowserPlus or normal forms, providing some unique features such as upload progress, image resizing and chunked uploads.

Plupload is a cross-browser multi-runtime file uploading API. Basically, a set of tools that will help you to build a reliable and visually appealing file uploader in minutes.

Historically, Plupload comes from a dark and hostile age of no , hence all the alternative fallbacks, like , and (still in development). It is meant to provide an API, that will work anywhere and in any case, in one way or another. While having very solid fallbacks, Plupload is built with the future of HTML5 in mind.

It was created and is maintained by Moxiecode Systems AB (the developers of ).

Links

625 questions
12
votes
1 answer

Plupload uploadprogress event always giving file.percent as 100

I am using the plupload.full.js downloaded from the http://www.plupload.com for uploading images. My issue is when I tried to display a progress bar using the upload progress event it always gives a value 100 only. Is this an issue? How can I solve…
Robin
  • 854
  • 8
  • 20
11
votes
3 answers

Angular2 with Typescript, how to use Plupload CDN script file in lazy-loaded module?

I would like to use Plupload in an Angular2 component and access the Plupload JavaScript file from a CDN. I want it specific to a component so that it is not downloaded if it is not required - I want it to be in a lazy loaded module. How can I do…
Reid
  • 3,170
  • 2
  • 23
  • 37
11
votes
3 answers

how to stop an in-process upload in plupload

up.removeFile(file) works only if the upload is not in progress. Is this a bug, or exists some other function I missed to call?
user669677
10
votes
1 answer

No response when ValidationException is thrown using Plupload and Symfony3

INTRODUCTION: In order to upload multiple files to the server I am using: Symfony v3.2.6 OneUpUploaderBundle OneUpFlysystemBundle Plupload file uploading library jQuery UI Widget version NOTE 1: Please note that: this configuration works for…
Rikijs
  • 728
  • 1
  • 12
  • 48
9
votes
2 answers

jQuery Plupload restrict number of uploads

I have been working on this code for some time now trying to get it to work properly. I want to restrict the use from uploading more that 2 images in total. The line var upa = $('.uploader').plupload('getUploader'); it giving an error of Uncaught…
Douglas Cottrell
  • 271
  • 2
  • 5
  • 13
9
votes
1 answer

How to handle file upload chunks on the server (Plupload/Spring MVC)?

On our client, it is possible to be uploading large files. We want to use chunking to reduce the size of the requests. We are using Plupload, so it's easy to send up the files in chunks. However, I'm not sure how to handle the chunks. We are using…
dnc253
  • 39,967
  • 41
  • 141
  • 157
9
votes
2 answers

Creating AngularJS directive with Plupload

I'm working on an app that will have file uploads. I want to create a reusable file upload component that be can be included on any of the pages that need file upload functionality. I was originally thinking that I could just use a JSP tag. However,…
dnc253
  • 39,967
  • 41
  • 141
  • 157
8
votes
2 answers

Using plupload with MVC3

So, I've implemented plupload using flash runtime in MVC3. It works perfectly, in the sense that it uploads using the correction Action and runs it all. However, I'd really like to be able to control the response, and handle it in plupload, but I…
Dynde
  • 2,592
  • 4
  • 33
  • 56
8
votes
1 answer

How do I use Plupload with Node.js and show the percentages of upload?

Currently, my code works. However, when a file is uploaded, no percentages are sent back to the javascript code. (I guess my server needs to send the chunk percentage back?) The "UploadProgress" event just prints "0" when it's complete.