File Upload using zend framework 1.7.4 - Stack Overflow most recent 30 from stackoverflow.com2009-12-17T08:08:21Zhttp://stackoverflow.com/feeds/question/665334http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/665334/file-upload-using-zend-framework-1-7-41File Upload using zend framework 1.7.4nitin2009-03-20T08:26:17Z2009-11-05T16:46:16Z
<p>I am trying to upload file using zend frame work but have not been successful. I have read <a href="http://akrabat.com/zend-framework-tutorial/" rel="nofollow">Akras tutorial</a>, which was helpful but when i used those techniques in my project I was not able to get it to work.</p>
http://stackoverflow.com/questions/665334/file-upload-using-zend-framework-1-7-4/665343#6653430Answer by vartec for File Upload using zend framework 1.7.4vartec2009-03-20T08:29:02Z2009-03-20T08:29:02Z<p><a href="http://framework.zend.com/manual/en/zend.form.standardElements.html#zend.form.standardElements.file" rel="nofollow">http://framework.zend.com/manual/en/zend.form.standardElements.html#zend.form.standardElements.file</a></p>
http://stackoverflow.com/questions/665334/file-upload-using-zend-framework-1-7-4/790923#7909233Answer by Pax for File Upload using zend framework 1.7.4Pax2009-04-26T14:20:38Z2009-04-26T14:20:38Z<p>The link you posted is just a general Zend Framework tutorial, and hasn't been updated past ZF 1.5.</p>
<p>Anyway, once you get started with Zend, this is a sample of the code you would use to receive an upload. The form doing the posting must have the correct file upload components.</p>
<pre><code>//validate file
//for example, this checks there is exactly 1 file, it is a jpeg and is less than 512KB
$upload = new Zend_File_Transfer_Adapter_Http();
$upload->addValidator('Count', false, array('min' =>1, 'max' => 1))
->addValidator('IsImage', false, 'jpeg')
->addValidator('Size', false, array('max' => '512kB'))
->setDestination('/tmp');
if (!$upload->isValid())
{
throw new Exception('Bad image data: '.implode(',', $upload->getMessages()));
}
try {
$upload->receive();
}
catch (Zend_File_Transfer_Exception $e)
{
throw new Exception('Bad image data: '.$e->getMessage());
}
//then process your file, it's path is found by calling $upload->getFilename()
</code></pre>
http://stackoverflow.com/questions/665334/file-upload-using-zend-framework-1-7-4/814835#8148350Answer by bhaskar rabha for File Upload using zend framework 1.7.4bhaskar rabha2009-05-02T13:05:48Z2009-05-02T13:05:48Z<p>very very Thanks to u for for the code. It is easy and simple. </p>
http://stackoverflow.com/questions/665334/file-upload-using-zend-framework-1-7-4/1099984#10999841Answer by chiborg for File Upload using zend framework 1.7.4chiborg2009-07-08T19:06:52Z2009-07-09T17:42:58Z<p>Don't forget to set the <code>enctype</code> attribute of the form to "<code>multipart/form-data</code>". If you are using Zend_Form, call</p>
<pre><code>$form->setAttrib('enctype', 'multipart/form-data');
</code></pre>
<p>Also note that <code>Zend_Form::setDestination</code> is deprecated, use the rename filter for that:</p>
<pre><code>// Deprecated:
// $upload->setDestination('/tmp');
// New method:
$upload->addFilter('Rename', '/tmp');
</code></pre>
http://stackoverflow.com/questions/665334/file-upload-using-zend-framework-1-7-4/1681934#16819340Answer by Alecko for File Upload using zend framework 1.7.4Alecko2009-11-05T16:46:16Z2009-11-05T16:46:16Z<p>it's really working!!! thanks a lot</p>