Questions tagged [valums-file-uploader]

Valum's File Uploader is a Javascript + AJAX library 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).

This tag refers to the original version of File Uploader, which is still available at (https://github.com/Valums-File-Uploader/file-uploader).

There is a newer version of the library called Fine Uploader (http://fineuploader.com). For the newer version of the library, use .

32 questions
32
votes
6 answers

Setting PHP tmp dir - PHP upload not working

I'm working on file upload via a webpage with a progress bar using Valums file uploader. Almost everything works fine, but I'm not able to change the default tmp directory, where the file is stored during the upload. Files should be stored in…
Wookie88
  • 33,079
  • 4
  • 27
  • 32
16
votes
3 answers

Upload fails when user drags and drops attachment from email client

I am using valums fileuploader using jQuery to implement drag and drop functionality in my application. The functionality was running smoothly until one of the users tried the following. The user received an email with an attachment. He tried to…
Pratik Shelar
  • 3,154
  • 7
  • 31
  • 51
3
votes
1 answer

Fine-uploader vs file-uploader license

Looks like both of the libraries built by Andrew Valums. They both seem to have the same license(GNU GPL v3). File-uploader can be easily downloaded but for the fine uploader I have to provide my email address to download and it would allow me to…
2
votes
1 answer

How to validate image size before upload?

I use valums file uploader and I have a problem with image dimension validatation before upload. image_extension and image_filesize return false, but because image dimnension is in onload async function, returning false has no effect and image is…
netoper
  • 153
  • 8
2
votes
0 answers

How to get instance of valums FileUploader from outside of closure

I am trying to change the allowed file extensions of a valums file uploader that is being used by a (wordpress) plugin I have to use. Since I don't want to change the plugin's source files, I am trying to set these from outside of the plugin. The…
Christof
  • 3,777
  • 4
  • 37
  • 49
2
votes
3 answers

Clear File listing after upload in valums ajax file uploader

I finally managed to get the valums file uploader working in all the browsers. Now once the file gets uploaded it still shows the file just uploaded in a li just below the file input field. I need to remove this li as i am submitting a complete form…
beNerd
  • 3,314
  • 6
  • 54
  • 92
2
votes
2 answers

PassportJs's passport.session() conflicts with file uploader - won't write file

Okay, banging my head against the wall on this one. I just switched from everyauth to passportjs and everything worked out great, except my implementation of Valums file uploader. You can see the Gist of my fileuploader code at…
2
votes
1 answer

PHP stream_copy_to_stream not working properly on local ser

I'm using the Valums File Uploader to upload files using XHR. The script I use works great on my live server while it fails on my local server. The code concerned is following: $input = fopen("php://input", "r"); $temp = tmpfile(); …
tvgemert
  • 1,436
  • 3
  • 25
  • 50
2
votes
4 answers

Valums File Uploader - Allow single file upload only

Is there any way to make Valums File Uploader to accept only a single file? Right now, with multiple: false you cannot limit the number of files to upload but instead you can get the user to upload files one-by-one rather than allowing multiple…
Subliminal Hash
  • 13,614
  • 20
  • 73
  • 104
1
vote
1 answer

IE: javascript function call on link click is not working

I have a Javascript function function changeDocument(idxpv, open){ if(open) $("#Upload"+idxpv + " input[type=file]").click(); } and a link
Padyster
  • 993
  • 3
  • 11
  • 21
1
vote
0 answers

Div not showing after binding with qq fileuploader

I'm using Valum's Ajax file-uploader. I have following div for this purpose:
I initialized the uploader on javascript as follows: var uploader = new qq.FileUploader({ element:…
asok Buzz
  • 1,876
  • 3
  • 24
  • 50
1
vote
1 answer

Valums file uploader cant find my controller action

On GitHub they have asp.net mvc demo. Not full project but controller/class/binder. I downloaded their code, there is test folder with no dependency demo and jquery demo. I also made my controller/action as on their demo. public partial class…
Novkovski Stevo Bato
  • 1,013
  • 1
  • 23
  • 56
1
vote
1 answer

File uploading in Safari to Express.js server fails

I am uploading a picture to the Express.js (3.0.0) server using ajax Valum's qq uploader (https://github.com/valums/file-uploader). It works under all popular browsers but Safari. The following error occurs: TypeError: Cannot read property 'length'…
Andrew Luzkovky
  • 251
  • 3
  • 10
1
vote
0 answers

How to add an event formAddNewRow to editable Datatable to create the fineUploader object?

I´m trying to add a file uploader to one jquery dataTable editable (http://code.google.com/p/jquery-datatables-editable/) I tried adding a div to the form but fineUploader keeps the state from the last operation. $(document).ready(function() { …
KatosRevenge
  • 63
  • 1
  • 9
1
vote
0 answers

Valum File Uploader with Cropper will not work on IE

I found this demo but it doesn't work in Internet Explorer. I got everything working in my application and realized it doesnt work on IE!!! The cropping console would not come up in Internet Explorer. Anyone know why? Andrew Valums' Ajax Upload…
momoterraw
  • 165
  • 2
  • 6
  • 15
1
2 3