0
votes
1answer
11 views
PHP - UPLOAD_ERR_NO_TMP_DIR
I am using Cbeyond (www.cbeyond.com, some of you might be familiar with them) as a PHP Enabled webhost, I'm having issues with my PHP Upload functions, when I check as follows:
$error = …
0
votes
1answer
17 views
How to upload a file from app in VC++ 6 to a web server?
I have an application in VC++ 6 (not MFC) , feature requires it to upload a file to a web server on regular basis. Web server is under our control, anonymous upload scripts/page are already setup that …
0
votes
3answers
35 views
File upload in ASP.NET - How can I prevent exceptions?
I have a FileUploader control in my web form. If the file being uploaded is already present, I want to delete it, and overwrite it with the newly-uploaded file. But I get an error, as the file is in …
6
votes
6answers
203 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 …
1
vote
1answer
13 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 …
0
votes
1answer
23 views
File Upload / Memory Stream Security
Hi,
We are thinking of have a form on our webpage that would allow people to email attachments through.
The method used to do this is via a memory stream, avoiding any files being written on to the …
5
votes
6answers
4k 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 …
3
votes
2answers
316 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 …
0
votes
1answer
827 views
Upload Image to Database From DetailsView Insert Mode
I am attempting to upload an image to a database via a DetailsView containing an UploadFile control in the Edit Item template.
I have a stored procedure which handles the upload to a SQLServer DB …
2
votes
4answers
950 views
Trying to upload a file with ASP.NET MVC
I am trying to upload a file with ASP.NET MVC.
The following code work perfectly fine:
// Read in the image data.
byte[] binaryData = null;
HttpPostedFileBase uploadedFile = …
0
votes
3answers
50 views
How is file upload handled in HTTP?
I am curious to know how webservers handle file uploads.
Is the entire file sent as a single chunk? Or is it streamed into the webserver - which puts it together and saves it in a temp folder for …
4
votes
5answers
470 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 …
1
vote
2answers
107 views
How to retrieve multiple values from the select field using Commons File Upload?
Update: The problem ended up being the Flash component itself. It wasn't properly compiling the multiple values from the element. I notified the developers and they implemented a workaround. Commons …
2
votes
7answers
98 views
Best way to handle very large http uploads and downloads on the server-side
I've an upcoming project where I will need to handle very large uploads from browsers (either the classic input type="file" or a Java Applet), and looking for the best tool to do the job on the …
1
vote
5answers
2k views
File Upload using zend framework 1.7.4
I am trying to upload file using zend frame work but have not been successful. I have read Akras tutorial, which was helpful but when i used those techniques in my project I was not able to get it to …
