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

Upload multiple files lead to upload 4 time de same file

This piece of javascript code ad been modified to have a number of pictures uploaded equal to 4. This work well since it'always download 4 picture but it bring the same path for all picture witch is four time the same picture. Note I uses a randon…
0
votes
2 answers

Fineuploader and rails 3.2 - can't get progress bar working

I have an app which uploads videos, using a 3rd party host (bitsontherun). Everything works fine, except it doesn't have an upload progress bar, so I'm trying to use fineuploader to show one. However I keep getting 2 errors in the developer window…
jfdimark
  • 2,239
  • 1
  • 14
  • 27
0
votes
2 answers

fineuploader button doesn't show for IE7/8

Working with a JavaScript plugin called fineloader to upload files. My code is below and a live demo is located here. For some reason, the button and input doesn't show using IE7 and my laptop using IE8, but does show using my virtual machine and…
0
votes
1 answer

valums file-uploader IE and @Responsebody. IE Launches download dialog.

I am using valums file-uploader to upload files. This works great if my Spring controller returns void. If I add a @Responsebody Object to my controller IE things that I am about to download instead of uploading a file and launches a dialog. The…
pethel
  • 5,397
  • 12
  • 55
  • 86
0
votes
1 answer

valums ajax-upload broken script after xhr.send(file) - sometimes works, and sometimes does not

I searched for solution to this the better part of the day and I'm still in the dark. For a client of mine I created a simple web gallery for uploading images and I'm using valums file uploader. Till now I didn't have any problems with it on any…
Kristjan O.
  • 814
  • 1
  • 9
  • 33
-1
votes
1 answer

{"success":true} but fineuploader shows error

{"success":true} but fineuploader shows error The php server script returns {"success":true}, and upload the file correctly, but in the webpage, it shows that there was an error uploading in red. On Checking the console for the same i got…
B Karthik Kumar
  • 230
  • 1
  • 8
-1
votes
2 answers

Fine Uploader - upload all files in one folder

I have setup Fine Uploader to upload to own server. By default it creates a new folder for each uploaded file, for example /uploadfolder/guid1/file1.txt /uploadfolder/guid2/file2.txt How do I change that to upload to one…
Andy K
  • 3
  • 2
-1
votes
1 answer

In FineUploader Plugin scale , how can i define the height and width not the full width (max width option)

how can I set height and width in scaling and can I depend on the image generated (quality and professional scale generation).
user4820297
-1
votes
1 answer

Fineuploader to Azure Blob storage not always working

So I have implemented fineuploader uploading to azure blob storage and fully followed all instructions in the guides, including setting up CORS, error handling, signature creation, file completion notification etc. But for some reason Im getting…
Doug Rees
  • 29
  • 3
-1
votes
1 answer

How to use FineUploader Core with JCrop to Crop and Upload an image

I am aware of this question-Fineuploader - add jqCrop. However my challenge is that i do not want to use a generic file input that add jCrop as a listener.I am a newbie with FineUploader.Can some expert confirm if this is the most appropriate steps…
-1
votes
1 answer

The HTTP verb POST used to access path '/UploadedImages' is not allowed."

Testing Fine-Uploader and get the following trying to upload images. It's on a testbox and I have rights to the folder. I am not running under IIS as most of these errors when searching google have to do with IIS. Any ideas. I am using asp.net / c#…
Michael Brown
  • 97
  • 1
  • 10
-1
votes
2 answers

Fine Uploader S3 / jQuery / PHP - Failed upload = Reason: XHR returned response code 0

I have been kicking around trying to implement the S3 uploader into my application and getting closer but no cigar. Here is my setup in a nutshell: Running: 5.2.0 S3 with jQuery Server: PHP 5.6.6 on ArchLinux Max file size 25MB (defined in both…
ipyakuza
  • 21
  • 5
-1
votes
1 answer

Fineuploader issues with Norton AV

We are noticing users with Norton antivirus aren't able to upload direct to Aws s3. There is a 403 error thrown on the s3 url. We have traced this to being very specifically Norton users only and happens in both ie and chrome here are the console…
-1
votes
1 answer

Fine-Uploader php installation directory

I just installed the php version of fine-uploader. I installed it to the folder in my root called fineuploader When I go to the admin panel, I login ok and then on the page mydomain/fineuploader/admin/settings/users it lists Admin as the only user.…
Colin
  • 231
  • 1
  • 2
  • 7
-1
votes
1 answer

fineUploader deleting a file

I use Fine Uploader Version: 5.0.8 1) I choose file 1.png 2) PHP script renames and upload with a new name fdba4551.png 3) I want to delete the file but not know how to pass parameters unlink($UploadDir.$_POST['??????????']); I can not delete the…