I am trying to upload a file using Zend Framework 1.7.4, but have not been successful. I have read Akrabat\'s tutorial, which was helpful but when i used those techniques in
$this->setAction('/sandbox/example/form')->setEnctype('multipart/form-data')->setMethod('post');
$photo = new Zend_Form_Element_File('photo');
$photo->setLabel('Photo:')->setDestination(APPLICATION_PATH ."/../public/tmp/upload");
$this->addElement($photo);
You can set any destination example $photo->setLabel('Photo:')->setDestination(APPLICATION_PATH ."/../data");