show/hide this revision's text 2 alternative to setDestination

Don't forget to set the enctype attribute of the form to "multipart/form-data". If you are using Zend_Form, call

$form->setAttrib('enctype', 'multipart/form-data');

Also note that Zend_Form::setDestination is deprecated, use the rename filter for that:

// Deprecated:
// $upload->setDestination('/tmp');
// New method:
$upload->addFilter('Rename', '/tmp');
show/hide this revision's text 1

Don't forget to set the enctype attribute of the form to "multipart/form-data". If you are using Zend_Form, call

$form->setAttrib('enctype', 'multipart/form-data');