Top "Zend-file" questions

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 …

php zend-framework file-upload zend-file
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) …

php zend-framework file-upload zend-file
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 …

jquery ajax zend-framework file-upload zend-file
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 …

php zend-framework zend-file
How to upload multiple files with Zend framework?

Even if I select 2 or more images, only one gets uploaded. I have a simple form: <form action="/images/…

php zend-framework file-upload upload zend-file