Tagged Questions
Upload refers to the sending of data from a local system to a remote system such as a server or another client with the intent that the remote system should store a copy of the data being transferred, or the initiation of such a process
186
votes
17answers
149k views
How can I upload files asynchronously with jQuery?
I would like to upload a file asynchronously with JQuery. This is my HTML:
<span>File</span>
<input type="file" id="file" name="file" size="10"/>
<input id="uploadbutton" ...
76
votes
11answers
69k views
Upload files with HTTPWebrequest (multipart/form-data)
Is there any class, library or some piece of code which will help me to upload files with HTTPWebrequest?
Edit 2:
I do not want to upload to a WebDAV folder or something like that. I want to ...
34
votes
4answers
34k views
Uploading Files with ASP.Net MVC - get name but no file stream, what am I doing wrong?
I have this form in my view:
<!-- Bug (extra 'i') right here-----------v -->
<!-- was: <form method="post" enctype="mulitipart/form-data" action="/Task/SaveFile"> -->
<form ...
27
votes
5answers
6k views
How do I test a file upload in rails?
I have a controller which is responsible for accepting JSON files and then processing the JSON files to do some user maintenance for our application. In user testing the file upload and processing ...
26
votes
13answers
53k views
Upload Progress Bar in PHP
Does anyone know how to get a progress bar for an upload in php? I am trying writing code for a photo album uploader. I would like a progress bar to display while the photos are uploading.
I am ...
26
votes
9answers
13k views
Best way to upload multiple files from a browser
I'm working on web application. There is one place where the user can upload files with the HTTP protol. There is a choice between the classic html file upload control and a java applet to upload the ...
24
votes
2answers
5k views
Streaming large file uploads to ASP.NET MVC
For an application I'm working on, I need to allow the user to upload very large files--i.e., potentially many gigabytes--via our website. Unfortunately, ASP.NET MVC appears to load the entire ...
23
votes
2answers
11k views
Using MultipartPostHandler to POST form-data with Python
Problem: When POSTing data with Python's urllib2, all data is URL encoded and sent as Content-Type: application/x-www-form-urlencoded. When uploading files, the Content-Type should instead be set to ...
20
votes
11answers
33k views
ASP.Net free Ajax file upload control
I need an ASP.NET control for file uploads that can work in an update panel. Any ideas?
19
votes
8answers
2k views
Best non-flash upload component for web applications?
I would like recommendations for upload scripts/components. My criteria:
No flash
Plain Javascript ok, jquery ok
Must provide progress bar (updated from for instance ajax call).
Probably isn't ...
18
votes
11answers
3k views
Very large uploads with PHP
I want to allow uploads of very large files into our PHP application (hundred of megs - 8 gigs). There are a couple of problems with this however.
Browser:
HTML uploads have crappy feedback, we ...
17
votes
7answers
13k views
Is it possible to use Ajax to do file upload?
I don't want to use jQuery, but I'd like to use Ajax to do file uploading. Is that possible?
If so, where can I find information/tutorial on it?
16
votes
2answers
1k views
Upload a File in a Google Chrome Extension
I'm writing an extension for Chrome, and I need to upload a file from the page the user is currently on to my server to be processed, I cannot figure out how to upload the file though. I considered ...
16
votes
7answers
36k views
Using jQuery, Restricting File Size Before Uploading
On PHP, they have a way to restrict file size AFTER uploading, but not BEFORE uploading. I use the Malsup jQuery Form Plugin for my form posting, and it supports image file posting.
I was wondering ...
16
votes
16answers
49k views
How do I Validate the File Type of a File Upload?
I am using <input type="file" id="fileUpload" runat="server"> to upload a file in an ASP.NET application. I would like to limit the file type of the upload (example: limit to .xls or .xlsx file ...
15
votes
4answers
6k views
How can I upload a file via ASP.NET MVC and show a progress bar?
I'm looking to allow a user to browse and upload a file to the server in my ASP.NET MVC application.
If it is possible, I'm interested in adding a progress bar to show how much of the file has been ...
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
5answers
3k views
Upload 1GB files using chunking in PHP
I have a web application that accepts file uploads of up to 4 MB. The server side script is PHP and web server is NGINX. Many users have requested to increase this limit drastically to allow upload of ...
13
votes
7answers
18k views
Flash upload image resize client side
Does anyone got an ideia on how to get client side image resize using flash.
Example:
Client chooses an image with 1200x800 and before it uploads it flash will turn it into half of it or something.
...
12
votes
6answers
8k views
Google App Engine Large File Upload
I am trying to upload data to Google App Engine (using GWT). I am using the FileUploader widget and the servlet uses an InputStream to read the data and insert directly to the datastore. Running it ...
12
votes
9answers
16k views
File Upload with Java (with progress bar)
I'm extremely new to Java, and have mostly just been teaching myself as I go, so I've started building an applet. I'd like to make one that can select a file from the local disk and upload it as a ...
11
votes
2answers
187 views
HTTP Uploads with Resource Forks
I'm building a PHP based upload service for some of our clients. I am using SWFUpload so that I can view the progress of a file as it uploads. I've got it pretty much built, but am running into one ...
11
votes
3answers
2k views
PHP image upload security check list
I am programming a script to upload images to my application. Are the following security steps enough to make the application safe from the script side?
Disable PHP from running inside the upload ...
11
votes
2answers
2k views
POST a file string using cURL in PHP?
I was wondering if it is possible to post a file - along with other form data - when the file is just a string?
I know that you can post a file that is already on the filesystem by prefixing the ...
11
votes
8answers
3k views
Stop people uploading malicious PHP files via forms
I have an upload form created in php on my website where people are able to upload a zip file. The zip file is then extracted and all file locations are added to a database. The upload form is for ...
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 ...
11
votes
9answers
963 views
How do I tell if someone's faking a filetype? (PHP)
I'm programming something that allows users to store documents and pictures on a webserver, to be stored and retrieved later. When users upload files to my server, PHP tells me what filetype it is ...
10
votes
2answers
923 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 ...
9
votes
2answers
428 views
Howto validate image upload in PlayFramework?
I have to upload pictures with a few conditions :
dimensions cannot exceed x pixels height, y pixels width,
size cannot exceed b bytes on disk
has to be a PNG or a JPG file
has to be "resized"
has ...
8
votes
1answer
107 views
PHP won't acknowledge its own uploaded temporary files
I've got a real head-scratcher here.
This is my system configuration:
Windows Server 2008 R2
PHP 5.3.8 installed as a FastCGI module
IIS 7.5
This is my problem:
I have a simple file upload ...
8
votes
3answers
17k views
jQuery ajax upload with progress bar - no flash
I am looking for a file uploader similar to uploadify with progress bar that doesn't rely on flash, preferably using jQuery - is this possible?
8
votes
2answers
1k views
Django upload_to outside of MEDIA_ROOT
My deployment script overwrites the media and source directories which means I have to move the uploads directory out of the media directory, and replace it after the upload has been extracted.
How ...
8
votes
1answer
1k views
Uploading to Ruby on Rails from iPhone using ASIHTTPRequest
I've really hit a wall and am need of some help! Thankyou for reading this far!
I'm in the middle of writing an app that talks to my ROR web-server for database requests and works great thanks to ...
8
votes
4answers
11k views
onComplete and onCompleteAll events failing to fire when using Uploadify
I have been using uploadify (www.uploadify.com) to upload images to my website, and it works beautifully until you try to expand on it a little. Im trying to get it to remove a queued up file from the ...
8
votes
5answers
3k views
Atomic, asynchronous HTTP file POST with sensible feedback?
I've just started development on Macs and have found Cocoa to be a useful and thoughtful framework, but its HTTP functionality has me puzzled.
I have an NSURLConnection object to download a file from ...
8
votes
6answers
2k views
Upload progress using pure PHP/AJAX?
I'm sure this has been asked before, but as I can't seem to find a good answer, here I am, asking... again. :)
Is there any way, using only a mixture of HTML, JavaScript/AJAX, and PHP, to report the ...
8
votes
8answers
929 views
Why do browsers not have a file upload progress bar?
I wonder why no browser out there has such simple but essential feature. Am I missing something? Is there a technical reason?
I'm tired of all those javascript/flash/java hacks out there ...
7
votes
1answer
84 views
PHP extension upload progress - returning negative total bytes and time remaining
I'm using the PHP upload progress extension to retrieve information about files being uploaded to my web system. However for files larger than 2GB the total bytes and time remaining fields are being ...
7
votes
2answers
143 views
GData youtube video upload missing audio
I am using GData Api to upload video on youtube from ios application.
It successfully uploads the video but audio is missing from that.
I am using .mp4 format of video.
Do any one has a clue?
Thanks
...
7
votes
8answers
522 views
Slow uploads to running Android emulator
I have searched but not found any queries or answers for my specific circumstance. I have a fast new machine with plenty of memory running Windows 7. I'm using the latest Eclipse and Android SDK.
...
7
votes
2answers
3k views
Rails 3 - upload files to public directory
I'm looking for a simple way to upload a file (an xml file) to the public directory of Rails 3. Once it's there I want to open it, parse the contents and delete the file after that.
Whenever I ...
7
votes
11answers
2k views
CFBundleVersion in the Info.plist Upload Error
"The binary you uploaded was invalid. The key CFBundleVersion in the Info.plist file must contain a higher version than that of the previously uploaded version."
I’m getting this error when I come to ...
7
votes
2answers
290 views
Upload to website from python
I need my program (Python) to upload files (large reports) to services like (rapidshare, megaupload or easyshare) and grab the URL the site gives me (to them forward to the user)
What's easiest way ( ...
7
votes
2answers
8k views
File Upload Controls using Razor in ASP.NET MVC3
Is there a way to define the file upload controls using a Razor helper in ASP.NET MVC3?
7
votes
3answers
518 views
Secure User Image Upload Capabilities in PHP
I'm implementing a user-based image uploading tool for my website. The system should allow any users to upload JPEG and PNG files only. I'm, of course, worried about security and so I'm wondering ...
7
votes
2answers
2k views
PHP iDisk\Webdav Client
I need to upload files to iDisk drive. I've found that iDisk has webdav interface, and it's working fine with desktop clients. Unfortunately I wasn't able to find suitable WebDav client for PHP, and ...
7
votes
2answers
861 views
Best way to store user-uploaded files in a webapp
I'm creating a web application (in Django), which needs to allow users to upload files (specifically images, which are later displayed for other users). I'm trying to understand the best way to store ...
7
votes
4answers
7k views
jQuery upload file using jQuery's ajax method (without plugins)
At moment I want to implement picture upload without using any plug-ins.
My upload form looks like this
<form action="/Member/UploadPicture" enctype="multipart/form-data" id="uploadform" ...
7
votes
5answers
6k views
File Upload via AJAX within JQuery
I am new to JQuery AJAX . I want to implement a file upload using a jquery.
Will it be possible to make a fileupload with JQuery,AJAX and send it to Servlet which can use apache file commons to upload ...