Tagged Questions
The zend-file tag has no wiki summary.
6
votes
5answers
2k 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)
...
4
votes
2answers
2k 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
{
...
4
votes
7answers
7k views
Trying to find an AJAX file upload solution for Zend Framework using jQuery
I'm trying to create an "upload file, and email as an attachment" form where the file starts uploading after it has been selected (like Gmail), before sending the email. I would also like to implement ...
4
votes
6answers
11k views
Zend Zend_File_Transfer_Adapter_Http renaming question
I've got a question about renaming a file after it's been uploaded in Zend. I don't know where to put the Rename Filter. Here's what I've got. I've tried moving things around, but I'm lost. Currently ...
2
votes
3answers
181 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
1answer
221 views
Zend File Upload and Element Decorators
I have the problem, that the following Zend Form throws an error.
The problem is the "file"-element and using setElementDecorators.
class Products_AddForm extends Zend_Form
{
function init() ...
1
vote
1answer
141 views
Zend form change elements required options to false at runtime
I have a form and having two file upload elements. it is like
$data_file_one = $this->createElement('file','data_file_one');
$data_file_one->setRequired(true)
...
1
vote
1answer
469 views
Zend_File_Transfer w/multiple files does not upload equally
Weird title, yes, but the problem is simple; simply aggrevating. I have a form, that I built without using Zend_Form, and it has two file uploads:
<input name="image" type="file" />
<input ...
1
vote
2answers
1k views
PHP, Zend Framework: How to set the upload max filesize?
I'm setting the upload max filesize in my form:
$file = new Zend_Form_Element_File('file');
$file->setLabel('File to upload:')
->setRequired(true)
->addValidator('NotEmpty')
...
0
votes
3answers
69 views
How to use Zend_File_Transfer?
I have been using normal file upload element to upload files and validate them. But recently, I found out that implementing a Zend_file_tranfer gives much control over the file.
I am searched ...
0
votes
0answers
41 views
zend form with table decorators not displaying when file element is added
I am coding a zend form without using mvc.
I am trying to add a file element and use the table, td and tr decorators.
But this doesn't seem to work. What is the problem?
This is the code:
<?php ...
0
votes
0answers
160 views
Zend File Transfer: Doesn't work for single upload but works fine for multiple
Above is my controller.
I have 5 images and 1 csv file to upload and update. My problem is if I decide to update any one of them the $bolHasImage is set to false. $upload->isUploaded() doesn't set ...
0
votes
0answers
50 views
Skipping validation for a single file in Zend_File_Transfer
For creating a business I upload 5 images along with a .csv file. I have used following zend validators
$upload = new Zend_File_Transfer();
$upload->addValidator('Count', false, ...
0
votes
2answers
124 views
Skipping Validation for a single file in Zend_File_Transfer
For creating a business I upload 5 images along with a .csv file. I have used following zend validators
$upload = new Zend_File_Transfer();
$upload->addValidator('Count', false, ...
0
votes
2answers
211 views
Zend File Transfer: Problem when uploading a single image
I cannot understand how ->isuploaded() works. I am suppose to upload six images to display on my index page. Now the problem is, in my update function, if I upload only one or two image ...
0
votes
2answers
344 views
Zend Form File, How to indicate to the user that a file was previously uploaded?
I have a zend form that lets the user fill out attributes of an object. For example, a music artist. The form has basic information about the artist, things like name, phone number, address, and what ...
0
votes
1answer
254 views
Allow empty file inputs in Zend_Form
I have a simple form accomplished with Zend_Form which is retrieving all its parameters from an XML file. Form has a file input which I need to allow empty submits as well. I mean users should have ...