0
votes
1answer
19 views
how to allow a user to upload a spreadsheet in asp.net mvc
i want a user to have file picker and then choose a spreadsheet which will then be parsed by a controller action. are there any examples of how to do this?
0
votes
1answer
46 views
I can’t solve this session related issue!
Hi there,
I am using Zend Framework and 3rd party application written in php for file upload.
Upload process is ajax like, and I have annoying problem probably caused by this app.
Problem is that …
0
votes
3answers
39 views
PHP: How to rename a file uploaded with Zend_Form_Element_File?
Form:
//excerpt
$file = new Zend_Form_Element_File('file');
$file->setLabel('File to upload:')
->setRequired(true)
->addValidator('NotEmpty')
->addValidator('Count', false, 1)
…
2
votes
3answers
29 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 …
1
vote
2answers
57 views
How to do file uploads with PHP and the Zend Framework?
I am using Zend Framework 1.9.6. I think I've got it pretty much figured out except for the end. This is what I have so far:
Form:
<?php
class Default_Form_UploadFile extends Zend_Form
{
…
1
vote
4answers
49 views
PHP MYSQL file contents escape problem
Hi guys and girls,
I am attempting to upload a .pdf file into a mysql database using php.
It is all good except for the contents of the file. No matter how I seem try to escape special characters, …
2
votes
3answers
68 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 …
0
votes
1answer
26 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
22 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
49 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 …
2
votes
1answer
23 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
38 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 …
6
votes
6answers
238 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 …
0
votes
3answers
52 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 …
2
votes
7answers
128 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 …
