Ajax upload is the process of asynchronously sending files to a web server using client-side JavaScript.
Questions tagged [ajax-upload]
115 questions
3
votes
1 answer
asynchronous file upload with ajaxupload to a tornado web server
I'm using this javascript library (http://valums.com/ajax-upload/) to upload file to a tornado web server, but I don't know how to get the file content. The javascript library is uploading using XHR, so I assume I have to read the raw post data to…

Thi Duong Nguyen
- 1,745
- 2
- 12
- 18
3
votes
2 answers
problem using Jeditable + ajaxUpload
I managed to use jEditable selects, inputs and textareas quite easily, but I have problems with uploading files :
I can't manage to send $_POST values along with the $_FILES values, and no extra data is passed through submitdata...
Here is my code…

arnaud
- 33
- 6
3
votes
2 answers
How to Use 'Ajax Upload' with Ruby on Rails?
I'm using this Script http://valums.com/ajax-upload/ to get Ajax upload working with Ruby on Rails
but when i try uploading a file on my controller action I only get this:
Parameters: {"qqfile"=>"Foo.png"}
{"qqfile"=>"Foo.png", "action"=>"ul_file",…

Mr_Nizzle
- 6,644
- 12
- 55
- 85
3
votes
2 answers
Blueimp file uploader with IE9
I am uploading a file to a REST API using this plugin in an AngularJS application.
When seconds after the 'fileuploaddone' event fires, I get a yellow notification from Internet Explorer saying: Would you like to save \ open the
Screenshot…

Oleg Belousov
- 9,981
- 14
- 72
- 127
3
votes
2 answers
why page is redirected when i drop image on div
I am using jquery 1.9. I have problem to implement upload image using drag and drop but when I drop image in div then its going redirect and open image in browser i have implement code in jsfiddle please check and tell me whats problem why its being…

Aryan Singhal
- 55
- 11
3
votes
1 answer
Ajax file upload rails + Rack RawUpload + Paperclip
I am trying to get ajax image uploading working in my rails app. I am using Paperclip for the normal image uploading, and that works fine, but I can't seem to get the ajax method hooked up. I am using the Rack RawUpload and the
File Uploader…

jwilcox09
- 721
- 5
- 18
3
votes
3 answers
Getting the input box name when clicked
In my site I use 10 file upload boxes. I want to get a file upload box name when I click on the box.
That means first upload box, second upload box, third upload box etc...
So if I click on the first upload box then I want to get name of that file…

Kichu
- 3,284
- 15
- 69
- 135
2
votes
2 answers
Valums fileuploader with multiple instances
Im using multiple instances with valums fileuploader, but it seems that uploader only use last settings for every instances, is there an option to avoid this and use local settings? Uploading goes fine on the right instance, but element inside…

Mikhail Nikalyukin
- 11,867
- 1
- 46
- 70
2
votes
1 answer
rails 3.1 - jquery plugin for ajax upload
I want to install plugin for ajax upload in Rails 3.1.
How to do that? Just execute git clone in vendor/?
What about asset pipeline? I must specify some code like that in application.js?
//= require vendor/file-upload
Do you know better plugin for…

nothing-special-here
- 11,230
- 13
- 64
- 94
2
votes
2 answers
Asp.net Webforms uploading file using Ajax-Upload
I want to use the Ajax-Upload script to upload multiple images. The kicker is I have to use Asp.net webforms, the way I've been doing ajax has been to have a simple page web method like so.
[WebMethod()]
public static string Method(string param)
{
…

peregrine
- 205
- 2
- 9
2
votes
1 answer
rich:fileUpload in JSF version 3.3.3 final, 1 file uploaded causes file upload listener to run twice in Firefox v69
For some reason, best guess is something todo with how broswer handles the ajax event a single fileupload triggers the event listener in Java twice.
The problem is worst in Firefox.
Latest Chrome version and in old Firefox v28(2014) general…

Trevor Clarke
- 53
- 5
2
votes
1 answer
Fineuploader restarts the upload in case of delayed server response
Ran into a very bizarre issue and am looking for direction.
Context: uploading large files (up to 100MB) in WordPress. As part of the process there is also a long task running on the server-side (pushing file to DropBox via their API using…

montrealist
- 5,593
- 12
- 46
- 68
2
votes
4 answers
Issue with binding in jQuery for copied elements
This is actually a bigger question because I know there are several ways to solve this problem but I will try to sum it up.
What I try to do: I am using this jQuery plugin to upload files via Flash http://www.uploadify.com/. However, the element…

HP.
- 19,226
- 53
- 154
- 253
2
votes
1 answer
upload file in ajax with wtforms
I use wtforms to handle forms. so i create form like this:
class ProfileForm(Form):
firstName = TextField(_('firstName'), [validators.Required(), validators.Length(min=3, max=45)])
lastName = TextField(_('lastName'), [validators.Required(),…

Mohammad Efazati
- 4,812
- 2
- 35
- 50
2
votes
0 answers
html5 file upload api and laravel
I have created a HTML5 drag and drop file upload for my laravel app, however I having some trouble setting the filename, as variable that is available to all my controller.
The process the user takes to upload a file, is they fill out some member…

Udders
- 6,914
- 24
- 102
- 194