21
votes
13answers
18k 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" …
13
votes
8answers
435 views
Best non-flash upload component for web applications?
Hi,
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 …
13
votes
6answers
6k 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 …
12
votes
8answers
2k views
Best way to upload multiple files from a browser
Hi all,
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 …
11
votes
11answers
651 views
Very large uploads with PHP
Hi guys,
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 …
10
votes
4answers
6k 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:
<form method="post" enctype="mulitipart/form-data" action="/Task/SaveFile">
<input type="file" id="FileBlob" name="FileBlob"/>
<input type="submit" …
10
votes
9answers
654 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 …
9
votes
4answers
684 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 …
9
votes
4answers
906 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 …
9
votes
12answers
3k 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
…
8
votes
3answers
656 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 …
8
votes
6answers
2k views
Is it possible to AJAX a file upload?
I dont want to use jQuery, but id like to AJAX a file upload. is that possible?
if so, where could i find information / tutorial on it?
THANKS!
7
votes
4answers
1k 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 …
7
votes
7answers
579 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 ...
6
votes
8answers
964 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 …
