File Upload using zend framework 1.7.4 - Stack Overflow most recent 30 from stackoverflow.com 2009-12-17T08:08:21Z http://stackoverflow.com/feeds/question/665334 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/665334/file-upload-using-zend-framework-1-7-4 1 File Upload using zend framework 1.7.4 nitin 2009-03-20T08:26:17Z 2009-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#665343 0 Answer by vartec for File Upload using zend framework 1.7.4 vartec 2009-03-20T08:29:02Z 2009-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#790923 3 Answer by Pax for File Upload using zend framework 1.7.4 Pax 2009-04-26T14:20:38Z 2009-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-&gt;addValidator('Count', false, array('min' =&gt;1, 'max' =&gt; 1)) -&gt;addValidator('IsImage', false, 'jpeg') -&gt;addValidator('Size', false, array('max' =&gt; '512kB')) -&gt;setDestination('/tmp'); if (!$upload-&gt;isValid()) { throw new Exception('Bad image data: '.implode(',', $upload-&gt;getMessages())); } try { $upload-&gt;receive(); } catch (Zend_File_Transfer_Exception $e) { throw new Exception('Bad image data: '.$e-&gt;getMessage()); } //then process your file, it's path is found by calling $upload-&gt;getFilename() </code></pre> http://stackoverflow.com/questions/665334/file-upload-using-zend-framework-1-7-4/814835#814835 0 Answer by bhaskar rabha for File Upload using zend framework 1.7.4 bhaskar rabha 2009-05-02T13:05:48Z 2009-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#1099984 1 Answer by chiborg for File Upload using zend framework 1.7.4 chiborg 2009-07-08T19:06:52Z 2009-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-&gt;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-&gt;setDestination('/tmp'); // New method: $upload-&gt;addFilter('Rename', '/tmp'); </code></pre> http://stackoverflow.com/questions/665334/file-upload-using-zend-framework-1-7-4/1681934#1681934 0 Answer by Alecko for File Upload using zend framework 1.7.4 Alecko 2009-11-05T16:46:16Z 2009-11-05T16:46:16Z <p>it's really working!!! thanks a lot</p>