File Upload is a process of sending files to your web server using standard forms.
55
votes
8answers
40k views
Is there a good jQuery Drag-and-drop file upload plugin?
Is there a nice tidy jQuery plugin that allows including a single JS script then using a simple snippet to enable a form? Something like this:
$j('#MyForm').enableDragDropUploads('.upload-area')
...
31
votes
10answers
856 views
Storing PHP(/PHP-FPM/Apache)'s temporary-from-upload files in RAM rather than the filesystem (or encrypted only)?
Thread overview
I can unfortunately only accept one answer - but to anyone reading this, the entire thread is extremely valuable and contains the collective insights of many people. Depending on what ...
20
votes
3answers
8k views
Uploading images using NodeJS, Express, and Mongo
Since many new NodeJS librairies are quickly being rendered obsolete and there are relatively few examples anyways I want to ask about uploading images using the latest versions of Node (v0.4.1), ...
20
votes
2answers
19k views
How to have jQuery restrict file types on upload?
I would like to have jQuery limit a file upload feild to only jpg/jpeg, png, and gif. I am doing backend checking with php already. I am running my submit button through a javascript function already ...
20
votes
4answers
9k views
Why does IE7 specify a mime-type of image/pjpeg rather than just image/jpeg?
When uploading a file (jpeg) via a form in IE7 I am seeing a mime-type of "image/pjpeg" instead of "image/jpeg" (as I see in Firefox or similar). It's easy enough to work around this problem, but I'm ...
18
votes
4answers
36k views
Basic File upload in GWT
I'm trying to figure out how to upload one file using GWTs FileUpload widget. I'm using GWT and Google AppEngine with Java but I would like to upload file to my own Linux server.
I have the following ...
17
votes
5answers
40k views
File Upload to HTTP server in iphone programming
Can anyone provide me some links or examples to upload files to the HTTP server using
iphone APIs.
Thanks in Advance,
BP
16
votes
6answers
1k views
Adding unobtrusive progress bar to old-school file uploads
You all know the new generation of fancy, mostly Flash-based file uploaders like SWFUpload that can show a progress bar while uploading - a great improvement especially for shaky and low-bandwidth ...
15
votes
2answers
340 views
Accessing the raw file stream from a node-formidable file upload
I am creating an application that takes some file uploads and send them straight up to S3. I would prefer not to even have the tmp file on my server, so I am using the Knox module and would like to ...
15
votes
4answers
16k views
A html5 web app for mobile safari to upload images from the Photos.app?
Hello
Is it possibly to write a HTML5 web application designed for the iOS devices (iPad, iPhone, iPod Touch) which can allow the user to upload an image from the filesystem?
Imagine uploading a new ...
15
votes
2answers
2k views
Carrierwave or Dragonfly
I have been looking into rails file upload tools and the ones that seemed the most appealing and interesting to me were carrierwave and dragonfly.
From looking around it seems like carrierwave takes ...
15
votes
6answers
13k views
File uploading in AJAX updatepanel without full postback
I have a update panel, in the update panel I have fileupload control and button control, On button click, I need the file that I have upload in the fileupload control in updatepanel.
Exact scenario, ...
14
votes
2answers
4k views
Preview an image before it is uploaded
I want to be able to preview a file (image) before it is uploaded. The preview action should be executed all in the browser without using Ajax to upload the image.
How can I do this?
14
votes
2answers
12k views
How to upload files in JSP/Servlet?
How can I parse an uploaded file using Apache Common FileUpload? I tried this:
FileItemFactory factory = new DiskFileItemFactory();
ServletFileUpload upload = new ServletFileUpload(factory);
List ...
14
votes
4answers
2k views
Javascript: Uploading a file… without a file
I am trying to fake a file upload without actually using a file input from the user. The file's content will be dynamically generated from a string.
Is this possible? Have anyone ever done this ...
14
votes
5answers
8k views
Html helper for <input type=“file” />
Is there a HTMLHelper for file upload? Specifically, I am looking for a replace of
<input type="file"/>
using ASP.NET MVC HTMLHelper.
Or, If I use
using (Html.BeginForm())
What is the ...
14
votes
10answers
8k views
How can I get Gmail-like file uploads for my web app?
I want to add gmail-like file upload functionality for one of my projects. Can anybody help me with this?
My application is built in vb.net.
I would appreciate any kind of help or guidance.
Thanks
...
13
votes
2answers
199 views
How to resume a broken upload in HTML5
I am trying to add resume functionality to html5 file uploader.
I need to be able to resume after browser was closed (and reopened) and I lost the file object, I do not want the user to drag/open the ...
13
votes
6answers
719 views
Is it possible to peform an asynchronous cross-domain file-upload?
It is possible! Read below.
First of all, let me use this diagram to explain how asynchronous file uploads can be achieved:
As you can see, the trick is to let the HTTP-response load into a ...
13
votes
9answers
93k views
How to get the file path from HTML input form in Firefox 3
We have simple HTML form with <input type="file">, like shown below:
<form><label for="attachment">Attachment:</label> <input type="file"
name="attachment" ...
13
votes
5answers
20k views
FileUpload control inside an UpdatePanel without refreshing the whole page?
According to Microsoft the FileUpload control is not compatible with an AJAX UpdatePanel.
I am aware that a PostBackTrigger can be added to the submit button of the form like this:
<Triggers>
...
12
votes
3answers
3k views
How to set file programmatically using Paperclip
I have rake task to seed the application with random data using the faker gem. However, we also have images (like logos) that we want uploaded in this rake task.
We already have Paperclip set up, but ...
12
votes
3answers
16k views
How to check file types of uploaded files in PHP?
On the PHP website, the only real checking they suggest is using is_uploaded_file() or move_uploaded_file(), here. Of course you usually don't want user's uploading any type of file, for a variety of ...
12
votes
6answers
2k views
What is the best client side browser library to upload multiple files over http?
What is the best client side http library to upload multiple files? If it can handle directories that's a huge bonus. I'm looking for something that is open source or free. I'm looking for something ...
11
votes
2answers
472 views
problem in file upload
I have the following markup:
<select multiple="multiple" id="targetFilesList" style="width:200px;height:110px;">
</select>
<input type="button" value="Get" id="btnGet" />
...
11
votes
5answers
729 views
Is it possible to upload file via $.ajax(options) or xhr.send(file) only?
I'm using file api and xhr2 spec. I created an uploader (backed by flash for older browsers) that was using FormData and $.ajax(options) where the FormData object with File was part of options.data ...
11
votes
1answer
891 views
Amazon S3 Multipart Upload with plupload and Rails 3
Amazon has multipart upload functionality where you can send a file in chunks and get it assembled on S3. This allows for some nice resume like functionality for uploading to S3. From another ...
11
votes
6answers
1k views
Validating Uploaded Files in Django
A Django app that I am working has an Event model. An Event may have associated photos, static html files and pdf files.
I would like to allow trusted users to upload these files, but I am wary about ...
11
votes
6answers
22k views
ASP.net - Multiple Upload with jQuery Multiple File Upload Plugin
I know how to upload with ASP.net's FileUpload control.
What I want to do is use this jQuery Multiple File Upload Plugin to upload multiple files.
Here is exactly what it does when multiple files ...
11
votes
4answers
2k views
What's the best way to create a single-file upload form using PHP?
I've found a few samples online but I'd like to get feedback from people who use PHP daily as to potential security or performance considerations and their solutions.
Note that I am only interested ...
10
votes
2answers
331 views
Why does 'file.size' take a lot of time? (edit) and how to reduce the time?
I am making an app that deals with songs being dragged to the app. When I use the file.size to get the size of the file it takes approx 1500ms (avg) to get this value. Is there any faster way? I ...
10
votes
6answers
535 views
File too big when uploading a file with the asp:FileUpLoad control
I am using the asp:FileUpLoad to upload files in my asp.net c# project. This all works fine as long as the file size does not exceed the maximum allowed. When the maximum is exceeded. I get an error ...
10
votes
4answers
1k views
Preventing upload of large files in ASP.NET 4.0
We'd like to restrict the maximum upload file size in our web site. We've already set the appropriate limits in our web.config. The problem we're encountering is if a really large file (1 GB, for ...
10
votes
2answers
924 views
Apache commons file upload alternatives
I was wondering what Java File Upload API's StackOverflow users have used in the past and would recommend using? A quick Google Search seems to indicate that the most commonly used API is Apache ...
10
votes
3answers
5k views
How do I retain the Original Filename After upload in Symfony
I am using Symfony 1.4.
Users from the backend application can upload files and publish them to the frontend. Using sfWidgetFormInputFile and sfValidatorFile, I would like to keep the original ...
10
votes
3answers
2k views
How do you restrict the size of a file being uploaded with JavaScript (or Java) without transferring the entire file?
Is there a way to validate on the client side browser whether the size of a file being uploaded from a JSP page is over a set size limit without forcing the user to upload the entire file only to find ...
9
votes
4answers
218 views
drag drop files into standard html file input
These days we can drag & drop files into a special container and upload them with XHR 2. Many at a time. With live progress bars etc. Very cool stuff. Example here.
But sometimes we don't want ...
9
votes
2answers
749 views
Which gets priority? maxRequestLength or maxAllowedContentLength?
While changing the maximum allowed file size for upload I stumbled on those two settings.
In the sytem.web you have the http runtime node with maxRequestLength.
In the system.webServer you have the ...
9
votes
2answers
1k views
s3cmd failed too many times
I used to be a happy s3cmd user. However recently when I try to transfer a large zip file (~7Gig) to Amazon S3, I am getting this error:
$> s3cmd put thefile.tgz s3://thebucket/thefile.tgz
....
...
9
votes
2answers
3k views
Great uploader like uploadify but with a “no-flash” fallback
Is there a great uploader script that uses jQuery, like uploadify, but with a fallback option for when flash is not available?
I tried FancyUpload, which has this and uses an invisible IFRAME to do ...
9
votes
4answers
1k views
Renaming uploaded files with Carrierwave
I'm using Carrierwave to upload files, and I have it working.
My issue is attempting to change the name of the uploaded file.
In the generated uploader.rb there is a method I think I should be using ...
9
votes
10answers
1k views
Recommended way to check file size on upload
I am working on a web application which supports file uploading. I am already familiar checking the size in server side, but i wanted to check the file size in a client side.
I know its a browser ...
9
votes
2answers
2k views
Client Checking file size using HTML5?
I'm trying to ride the HTML5 wave but I'm facing a small issue. Before HTML5 we were checking the file size with flash but now the trend is to avoid using flash in web apps. Is there any way to check ...
9
votes
4answers
274 views
Warn the user a file is too big before the upload
To increase user experience, I would like to warn the user that the file is too big (let's say > 8M) before sending the whole file (which may take some time due to the size and the client connection). ...
9
votes
2answers
2k views
Unfailing Javascript Image Preview
I have the following code that presents the user with a preview of the image they're trying to upload and works really well in FF:
var img = document.createElement('img');
img.src = ...
9
votes
4answers
10k views
Zend Framework: image upload
I want to upload an image with Zend Framework version 1.9.6. The uploading itself works fine, but I want a couple of other things as well ... and I'm completely stuck.
Error messages for failing to ...
9
votes
3answers
724 views
Large File (30Mb+) Uploads over the Internet, what are the better options?
A friend and I have been discussing what's the best way to send large file over the Internet. FTP, single Web services, Chunking Bytes To multiple Web Services, HTTP File Post (multi-part message), ...
9
votes
2answers
20k views
Increase file upload size limit in iis6
Is there any other place besides the metabase.xml file where the file upload size can be modified?
I am currently running a staging server with IIS6 and it is setup to allow uploading of files up to ...
9
votes
5answers
9k views
How to increase the max upload file size in ASP.NET?
I have a form that excepts a file upload in ASP.NET. I need to increase the max upload size to above the 4 MB default.
I have found in certain places referencing the below code at msdn.
...
9
votes
6answers
4k views
ASP.NET - how to show a error page when uploading big file (Maximum request length exceeded)?
Application able to record error in OnError, but we are not able to do any redirect or so to show something meaningfull to user.
Any ideas?
I know that we can set maxRequestLength in web.config, but ...