Questions tagged [fine-uploader]

A dependency-free, open source, native browser upload tool

Fine Uploader achieves a user-friendly file-uploading experience over the web. It's built as a JavaScript plugin for developers looking to incorporate file-uploading into their website. Fine Uploader also supports uploading directly to an Amazon S3 or Azure bucket from your browser, image scaling, thumbnail generation, chunking, upload pause/resume, file deletion, file drag & drop, file validation, and more.

This plugin uses an XMLHttpRequest (AJAX) for uploading multiple files with a progress-bar in FF3.6+, Safari4+, Chrome and falls back to hidden-iframe-based upload in other browsers (namely IE), providing good user experience everywhere.

It does not use Flash, jQuery, or any other external libraries. There is an optional jQuery plug-in that can be used to integrate Fine Uploader into your project, but it is NOT required. The same features are available with or without the jQuery plug-in.

979 questions
0
votes
1 answer

Is possible upload an url file and chunking/partitioning it using fine-uploader?

I want to upload url files too, but in the examples I only can upload files from local machine. Is possible upload an url file and chunking/partitioning it using fine-uploader?
ernesthm
  • 421
  • 4
  • 15
0
votes
1 answer

IE HTML1114 Error with custom CLeditor button

I am using CLeditor, Fineuploader, and Bootstrap to create a custom button that pops up a more advanced file upload Modal. But everytime I launch the modal I get an error and I have no idea how to fix it. Basically the whole browser freezes.…
BillPull
  • 6,853
  • 15
  • 60
  • 99
0
votes
1 answer

fineuploader jpg not working in IE

I am not able to upload images with fineuploader in IE. Works in chorme and FireFox. Any idea why uploading jpg in IE would not work. I noticed that chrome request object Context type is "application/octet-stream" while IE is not. Is this the…
dtucker1914
  • 499
  • 1
  • 8
  • 18
0
votes
1 answer

FineUploader responseJSON doesnt contain success in onComplete callback

After getting the onComplete method to fire, I found that my responseJSON variable does not appear to contain the information I expected it to. Is this me screwing up somewhere(probably), or something not working quite right? FineUploader is…
TJC
  • 717
  • 3
  • 12
0
votes
1 answer

Return multiple parameters from httphandler to FineUploader `OnComplete`

Im using FineUploder to upload an image to web server. javascript function createUploader() { var thumbnailuploader = new qq.FineUploader({ element: $('#thumbnail-fine-uploader')[0], …
Nalaka526
  • 11,278
  • 21
  • 82
  • 116
0
votes
2 answers

FineUploader error after processing Coldfusion page

I have implemented the latest version of FineUploader and it renders perfectly on my page. $(document).ready(function () { $('#jquery-wrapped-fine-uploader').fineUploader({ request: { endpoint: 'fu/fineuploader.cfm' } …
Paolo Broccardo
  • 1,942
  • 6
  • 34
  • 51
0
votes
1 answer

Callback when file is added to list

When using the FineUploader jQuery plugin... I have autoUpload = false and I need to know when a file is added to the ul. The submit callback is called before the li is added. (I have some other elements as part of my "fileTemplate" that I need to…
dougnorton
  • 194
  • 2
  • 9
0
votes
3 answers

FineUploader button text

I have scoured the FineUploader documentation, but when I set my upload button text like below, the change does not seem to propagate. The upload button still displays the default text. What am I missing? var manualuploader = new qq.FileUploader({ …
rhughes
  • 9,257
  • 11
  • 59
  • 87
0
votes
1 answer

Fineuploader 3.3 CORS upload failed error IE9 IE8

I am having having trouble with FineUploader for cross domain (CORS) submission inside of a hidden iframe (i.e. IE 9, 8). For each cross-domain upload request, the image uploads successfully, but the error message displays, with the IE bugger…
nic
  • 91
  • 1
  • 3
0
votes
1 answer

How to handle empty body responses in FineUploaderBasic

My server returns status code for upload (201) with empty body. I can upload data to server but then onComplete callback is fired i get Error when attempting to parse xhr response text (SyntaxError: Unexpected end of input) FineUploader expects…
YoK
  • 1,606
  • 17
  • 23
0
votes
1 answer

Valums file uploader drag drop area change

I have a button and a drag drop area. I want to apply valums file uploader to this button. But want to keep the drag drop area as another box besides it. How do I achieve it? My current implementation is as follows: that.imageUploader = new…
aditya_gaur
  • 3,209
  • 6
  • 32
  • 43
0
votes
1 answer

Valums ajax-upload Multiple files at once

I am having trouble creating multiple uploads with valums ajax-upload whereby a user can select mutiple files at once instead of one at a time.
Javascript var ajaxup =…
Ian Brindley
  • 2,197
  • 1
  • 19
  • 28
0
votes
1 answer

I am using the fine uploader plugin and having trouble using the delete file feature after upload

Base on their document http://blog.fineuploader.com/2013/01/25/delete-an-uploaded-file-in-3-3/, there is the UUID of the file to be deleted sent server with teh delte request. But I have been trying the whole day and i cant get it to work. For…
0
votes
1 answer

How to get file contentType using file uploader in IE9

I'm trying to do a simple task. Upload a file with valums file uploader (or fine-uploader) with MVC3 application, save it in database, and let user download it again (with an action returning FileContentResult), but to do that, I need the…
IPValverde
  • 2,019
  • 2
  • 21
  • 38
0
votes
1 answer

Valums file uploader plugin shows upload failed message each time

I am using valum file uploader. The js code for initializing plugin is: function Initializer() { var uploader = new qq.FileUploader({ element: document.getElementById('file-uploader'), action: '/_Image/Upload', params:…
user1740381
  • 2,121
  • 8
  • 37
  • 61