Imagine you have a web site that you want to send a lot of data. Say 40 files totaling the equivalence of 2 hours of upload bandwidth. You expect to have 3 connection losses along the way (think: mobile data connection, WLAN vs. microwave). You can't be bothered to retry again and again. This should be automated. Interruptions should not...
Is it possible to multithread file uploads using http post requests (not ftp)? Are there any flash or java uploaders that take advantage of multithreaded uploads?
...
This code does not disable my element as expected
if(Multifile.n==0){
$("#btnUpload").attr("disabled","disabled");
}
This code does not enable my element as expected
$("#btnUpload").attr("disabled","");
I added these lines in jQuery.MultiFile.js after what I believe is the location where files are added and removed from the Mu...
I am using a script called Uploadify to upload multiple images.
The script is a combination of Flash and jQuery functions, the Flash being an SWF uploader.
The uploader then sends the image to a processing PHP script.
In this script, we want to use JSON to return data to the original page.
Is there any method that comes to mind that we...
i'm uploading these files in apache, using php. is there any best way to make uploading faster ?
...
What's your experience with http://silverlightuploader.codeplex.com? Is it ready for production use?
...
Hi, is there a solution that allows to select multiple files from the file open dialog box and upload them from ASP.NET web page? I have gone through previous posts related to this, but wondering if it is possible to select multiple files for upload without using the technologies like flash or silverlight? thanks in advance.
UPDATE: to ...
Hi,
before rails3 I had a working multiple ajax(mootools) file upload solution.
I used form_to_remote with an iframe and responds_to_parent.
In rails3 the ajax upload with form_tag remote => true, traget => "my_iframe" doesn't work.
The the param[:uploaded_image]with the file is missing.
I don't know why.
Can anyone recommend a good a...