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 …
6
votes
6answers
244 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 …
5
votes
7answers
5k 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 …
5
votes
2answers
340 views
HttpPostedFile.FileName - Different from IE
When I upload a file to a site using the ASP:File control the FileName property is different in IE and Firefox. In Firefox, it just provides the name of the file, but IE provides the full path to the …
4
votes
1answer
336 views
Avoiding upload of files larger than 10mb
Is there any way (probably a module) that can make IIS7 rejects a post with a file larger than 10mb?
My ASP.NET application has an upload page, and the file cannot be larger than 10mb, I believe that …
4
votes
5answers
484 views
Where does an uploaded file in ASP.Net 2 go?
I'm building a portal that will allow users to upload files. I need to make sure that these files do not contain viruses. My ideal solution would be to have the host OS AV keep a watch on temporary …
4
votes
2answers
4k 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 …
4
votes
4answers
2k 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 time, for a variety of …
4
votes
4answers
3k views
How to increase the max upload file size in C#.net
I have a form that excepts a file upload in C# .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.
…
4
votes
9answers
3k views
Creating a file progress bar in PHP
Does anyone know of any methods to create a file upload progress bar in PHP? I have often heard that it's impossible.
I have one idea, but not sure if it would work: have a normal file upload, but …
3
votes
6answers
386 views
HTTP large file transfer
It is necessary to transmit large file using web browser interface. Standard <input type=”file”> or <asp:FileUpload> do not provide enough feedback for the user of the application. What …
3
votes
4answers
400 views
How can I handle HTTP file uploads?
How would I write a Perl CGI script that receives a file via a HTTP post and saves that to the file system?
2
votes
3answers
31 views
PHP: Storing file locations…what if overwritten?
I am currently using the Zend Framework and have an upload file form. An authenticated user has the ability to upload a file, which will be stored in a directory in the application, and the location …
2
votes
3answers
72 views
What to do about storing user uploaded files in a Zend Framework application?
I'm creating a web application that will involve habitual file uploading and retrieval (PDFs, Word Documents, etc).
Here are the requirements:
need to be able to link to them in my view script so a …
2
votes
1answer
27 views
How does the Flash Player know when you have successfully uploaded a File?
I am using Ruby, RestfulX, and Paperclip to upload a File, using the FileReference class.
I get the response from Paperclip in the terminal that says I've successfully saved the file, but it appears …
