Questions tagged [blueimp]

blueimp.net serves as a selection of open source projects by web developer Sebastian Tschan.

blueimp.net serves as a selection of open source projects by web developer Sebastian Tschan.

See https://blueimp.net/, https://github.com/blueimp/

869 questions
86
votes
15 answers

maxFileSize and acceptFileTypes in blueimp file upload plugin do not work. Why?

I'm using Blueimp jQuery file upload plugin for upload files. I had no problem in uploading but the option maxFileSize and acceptFileTypes do not work. This is my code: $(document).ready(function () { 'use strict'; …
YoBre
  • 2,520
  • 5
  • 27
  • 37
29
votes
1 answer

How to get md5 iterated md5 sum of every chunk, using blueimp jquery upload plugin

I need to calculate and send an iterated md5-hash to my upload-api. But I don't know how. I´m using the tutorial found here: http://tutorialzine.com/2013/05/mini-ajax-file-upload-form/ Along with the blueimp jquery upload plugin. For sending only…
Daniel
  • 301
  • 3
  • 8
28
votes
9 answers

blueImp/jquery file upload - How do I get the error message if the file type was not accepted?

I want to use the BlueImp/Jquery File Upload to be able to upload some images to web webserver. I have this JS code which I generated by reading many sources $('#file_upload').fileupload('option', { dataType: 'json', url:…
JSBach
  • 4,679
  • 8
  • 51
  • 98
22
votes
8 answers

jQuery FileUpload doesn't trigger 'done'

I use jQuery-File-Upload plugin. I wrote a simple code to test it - and it works, but not without problems. It doesn't trigger done, even if the file is uploaded and progress bar reached its end. Here's the code: $('#file_file').fileupload({ …
Tomek Buszewski
  • 7,659
  • 14
  • 67
  • 112
22
votes
5 answers

Restricting file types in JQuery File upload demo

I am using JQuery file upload demo for my next project with Codeigniter. Can anyone tell me how do I achieve the following : Restricting upload file types to .zip and .rar Restricting file size Clearing the list of Uploaded files (JQuery file…
Faisal Memon
  • 774
  • 3
  • 12
  • 28
17
votes
3 answers

Delete files programmatically with jquery fileupload basic

I'm using the blueimp file upload plugin (the basic version) to implement multifile upload. I am trying to implement functionality to allow the user to remove queued files for upload. I cannot figure out how to access the files array appropriately.…
Furynation
  • 537
  • 1
  • 5
  • 14
16
votes
3 answers

how can I reset a blueimp jQuery fileupload plugin?

The gist: how can I reset a blueimp jQuery fileupload plugin so that it thinks no files have been uploaded already? My Scenario I have an upload form that only allows one file to be uploaded. Once that file is uploaded, it is analyzed. At this…
SeanKilleen
  • 8,809
  • 17
  • 80
  • 133
16
votes
5 answers

jQuery-File-Upload by blueimp - additional headers

I've searched through wiki but couldn't find an answer where should I put my additional headers (for example Authorization header) in JS script? Somewhere onSend/beforeSend or? Widget link: https://github.com/blueimp/jQuery-File-Upload
svenkapudija
  • 5,128
  • 14
  • 68
  • 96
15
votes
5 answers

Why doesn't Blueimp's jQuery-File-Upload plugin fire callbacks?

I'm experimenting with Blueimp's jQuery-File-Upload plugin, which judging by the demo looks very promising. It's really easy to implement: var $uploadButton = $("#fileop-upload");//
Wabbitseason
  • 5,641
  • 9
  • 49
  • 60
15
votes
1 answer

Blueimp File Upload - Multiple Uploads Directly to S3

After searching the past couple days, I've found nearly 30 different people asking this same question, and I haven't found an answer. A couple reported that they found a solution, but did not provide it, so I'm hoping someone could answer it…
GreenRaccoon23
  • 3,603
  • 7
  • 32
  • 46
15
votes
4 answers

How to submit additional Form Data to Blueimp Uploader?

I am trying to insert additional Form Data to MYSQL via Blueimp jquery file uploader. But I have some problems. I am using demo settings and I changed my template-upload to following code (* I added Notunuz input)