<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
		>
<channel>
	<title>Comments on: How to integrate uploadify in Zend Framework 1.9.6</title>
	<atom:link href="http://phpdev.ro/how-to-integrate-uploadify-in-zend-framework-1-9-6.html/feed" rel="self" type="application/rss+xml" />
	<link>http://phpdev.ro/how-to-integrate-uploadify-in-zend-framework-1-9-6.html</link>
	<description>Bringing you the best of the webdevelopement ecosphere</description>
	<lastBuildDate>Tue, 31 Aug 2010 09:44:28 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: 網站製作學習誌 &#187; [Web] 連結分享</title>
		<link>http://phpdev.ro/how-to-integrate-uploadify-in-zend-framework-1-9-6.html/comment-page-1#comment-473</link>
		<dc:creator>網站製作學習誌 &#187; [Web] 連結分享</dc:creator>
		<pubDate>Sun, 15 Aug 2010 04:58:34 +0000</pubDate>
		<guid isPermaLink="false">http://blog.uauzilla.ro/?p=595#comment-473</guid>
		<description>[...] How to integrate uploadify in Zend Framework 1.9.6 [...]</description>
		<content:encoded><![CDATA[<p>[...] How to integrate uploadify in Zend Framework 1.9.6 [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Erik</title>
		<link>http://phpdev.ro/how-to-integrate-uploadify-in-zend-framework-1-9-6.html/comment-page-1#comment-226</link>
		<dc:creator>Erik</dc:creator>
		<pubDate>Sat, 15 May 2010 21:20:36 +0000</pubDate>
		<guid isPermaLink="false">http://blog.uauzilla.ro/?p=595#comment-226</guid>
		<description>Hello,&lt;br&gt;&lt;br&gt;Thanks for this tutorial! I tried using it in my zend framework application, but I can&#039;t get it to work, the upload button doesn&#039;t show up. All the paths seem to be configured in the right way, when I render the HTML, I get this:&lt;br&gt;&lt;br&gt;&lt;script	type=&quot;text/javascript&quot;	src=&quot;/lib/uploadify/swfobject.js&quot; &gt;&lt;/script&gt;&lt;br&gt;&lt;script type=&quot;text/javascript&quot; src=&quot;/lib/uploadify/jquery.uploadify.v2.1.0.min.js&quot; &gt;&lt;/script&gt;&lt;br&gt;&lt;script type=&quot;text/javascript&quot;&gt;&lt;br&gt;	var uploadify_swf_file = &#039;/lib/uploadify/uploadify.swf&#039;;&lt;br&gt;	var upload_php_file    = &#039;/cms/auction/upload&#039;;&lt;br&gt;	var upload_folder      = &#039;/img/auction&#039;;&lt;br&gt;	var upload_cancel_img  = &#039;/lib/uploadify/cancel.png&#039;;&lt;br&gt;&lt;/script&gt;&lt;br&gt;&lt;script type=&quot;text/javascript&quot;	src=&quot;/lib/uploadify/scripts.js&quot; &gt;&lt;/script&gt;&lt;br&gt;&lt;br&gt;As you can see, I&#039;ve done some modifications to the file paths, but they all point to existing files, any udea what I could have done wrong?</description>
		<content:encoded><![CDATA[<p>Hello,</p>
<p>Thanks for this tutorial! I tried using it in my zend framework application, but I can&#39;t get it to work, the upload button doesn&#39;t show up. All the paths seem to be configured in the right way, when I render the HTML, I get this:</p>
<p>&lt;script	type=&#8221;text/javascript&#8221;	src=&#8221;/lib/uploadify/swfobject.js&#8221; &gt;&lt;/script&gt;<br />&lt;script type=&#8221;text/javascript&#8221; src=&#8221;/lib/uploadify/jquery.uploadify.v2.1.0.min.js&#8221; &gt;&lt;/script&gt;<br />&lt;script type=&#8221;text/javascript&#8221;&gt;<br />	var uploadify_swf_file = &#39;/lib/uploadify/uploadify.swf&#39;;<br />	var upload_php_file    = &#39;/cms/auction/upload&#39;;<br />	var upload_folder      = &#39;/img/auction&#39;;<br />	var upload_cancel_img  = &#39;/lib/uploadify/cancel.png&#39;;<br />&lt;/script&gt;<br />&lt;script type=&#8221;text/javascript&#8221;	src=&#8221;/lib/uploadify/scripts.js&#8221; &gt;&lt;/script&gt;</p>
<p>As you can see, I&#39;ve done some modifications to the file paths, but they all point to existing files, any udea what I could have done wrong?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Navin Parray</title>
		<link>http://phpdev.ro/how-to-integrate-uploadify-in-zend-framework-1-9-6.html/comment-page-1#comment-222</link>
		<dc:creator>Navin Parray</dc:creator>
		<pubDate>Fri, 16 Apr 2010 04:48:35 +0000</pubDate>
		<guid isPermaLink="false">http://blog.uauzilla.ro/?p=595#comment-222</guid>
		<description>Yes I did put the example code on my server and it worked. That&#039;s the reason I don&#039;t think it has to do with server config. I tried using that IfModule bit but it made no difference. I think I have eliminated the possibility that it is a configuration issue with the server by successfully testing with the example code.&lt;br&gt;&lt;br&gt;I modified the example code to use the same files (js and swf files)  used by my app and to use the same upload folder. The only difference is the script called to upload the file. This works fine until I change the script to call the zend controller action to handle the uploading. The call to the zend controller action from the example code works fine on my local machine.&lt;br&gt;&lt;br&gt;I did some further testing and I commented out the code in the controller upload action and I got the same error. It would seem to be the call to the controller action is where the error is occurring. &lt;br&gt;&lt;br&gt;Cheers&lt;br&gt;Navin</description>
		<content:encoded><![CDATA[<p>Yes I did put the example code on my server and it worked. That&#39;s the reason I don&#39;t think it has to do with server config. I tried using that IfModule bit but it made no difference. I think I have eliminated the possibility that it is a configuration issue with the server by successfully testing with the example code.</p>
<p>I modified the example code to use the same files (js and swf files)  used by my app and to use the same upload folder. The only difference is the script called to upload the file. This works fine until I change the script to call the zend controller action to handle the uploading. The call to the zend controller action from the example code works fine on my local machine.</p>
<p>I did some further testing and I commented out the code in the controller upload action and I got the same error. It would seem to be the call to the controller action is where the error is occurring. </p>
<p>Cheers<br />Navin</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Andrei Gabreanu</title>
		<link>http://phpdev.ro/how-to-integrate-uploadify-in-zend-framework-1-9-6.html/comment-page-1#comment-221</link>
		<dc:creator>Andrei Gabreanu</dc:creator>
		<pubDate>Fri, 16 Apr 2010 01:48:39 +0000</pubDate>
		<guid isPermaLink="false">http://blog.uauzilla.ro/?p=595#comment-221</guid>
		<description>Hello Navin,&lt;br&gt;&lt;br&gt;If I understood correctly, the tutorial I wrote above worked on your dev machine but not on the live server? If this is the case then its most likely NOT a code issue (could be but its not the source of the error) and its most likely a settings in your webserver / php configuration. &lt;br&gt;&lt;br&gt;Basically what your error tells you is that the client (the SWF in this case) said it accepted some type of content but the webserver sent another type of content. Most likely you have a problem with the Mod_Security apache plugin. &lt;br&gt;&lt;br&gt;Can you try the following and tell me if it solved your problem?&lt;br&gt;&lt;br&gt;Put this in your .htaccess somewhere&lt;br&gt;&lt;br&gt;&lt;IfModule mod_security.c&gt;&lt;br&gt;   SecFilterEngine Off&lt;br&gt;   SecFilterScanPOST Off&lt;br&gt;&lt;/IfModule&gt;&lt;br&gt;&lt;br&gt;I did not understand completely but did you try the example script on the LIVE server and it worked?</description>
		<content:encoded><![CDATA[<p>Hello Navin,</p>
<p>If I understood correctly, the tutorial I wrote above worked on your dev machine but not on the live server? If this is the case then its most likely NOT a code issue (could be but its not the source of the error) and its most likely a settings in your webserver / php configuration. </p>
<p>Basically what your error tells you is that the client (the SWF in this case) said it accepted some type of content but the webserver sent another type of content. Most likely you have a problem with the Mod_Security apache plugin. </p>
<p>Can you try the following and tell me if it solved your problem?</p>
<p>Put this in your .htaccess somewhere</p>
<p>&lt;IfModule mod_security.c&gt;<br />   SecFilterEngine Off<br />   SecFilterScanPOST Off<br />&lt;/IfModule&gt;</p>
<p>I did not understand completely but did you try the example script on the LIVE server and it worked?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Navin Parray</title>
		<link>http://phpdev.ro/how-to-integrate-uploadify-in-zend-framework-1-9-6.html/comment-page-1#comment-220</link>
		<dc:creator>Navin Parray</dc:creator>
		<pubDate>Thu, 15 Apr 2010 20:36:19 +0000</pubDate>
		<guid isPermaLink="false">http://blog.uauzilla.ro/?p=595#comment-220</guid>
		<description>Hello,&lt;br&gt;&lt;br&gt;Thank you for the excellent write up on integrating Uploadify and Zend. I&#039;ve got this working on my local machine but I am having a problem when I test on a live server (godaddy hosted). I&#039;ve used the example code from the Uploadify download to test the live server and I am able to upload files successfully to the specified directory. So I don&#039;t think the error is with the server configuration. &lt;br&gt;I&#039;m getting a 406 error when I try to do the upload within zend. Here&#039;s a log entry from the server: &quot;POST /public/uploadify/uploadecg/sid/3 HTTP/1.1&quot; 406 486 &quot;-&quot; &quot;Shockwave Flash&quot; The controller I created accepts the paramater &#039;sid.&#039; The progress bar goes to 100% then I get a Http Error.&lt;br&gt;&lt;br&gt;The 406 error was leading me to think it was an issue with the upload folder or even the tmp directory but it works fine with the example script so it has to be something in the code in my zend app. I know this info is a bit vague but do you have any suggestions as to where I can look to find the source of the error.&lt;br&gt;&lt;br&gt;Regards&lt;br&gt;Navin</description>
		<content:encoded><![CDATA[<p>Hello,</p>
<p>Thank you for the excellent write up on integrating Uploadify and Zend. I&#39;ve got this working on my local machine but I am having a problem when I test on a live server (godaddy hosted). I&#39;ve used the example code from the Uploadify download to test the live server and I am able to upload files successfully to the specified directory. So I don&#39;t think the error is with the server configuration. <br />I&#39;m getting a 406 error when I try to do the upload within zend. Here&#39;s a log entry from the server: &#8220;POST /public/uploadify/uploadecg/sid/3 HTTP/1.1&#8243; 406 486 &#8220;-&#8221; &#8220;Shockwave Flash&#8221; The controller I created accepts the paramater &#39;sid.&#39; The progress bar goes to 100% then I get a Http Error.</p>
<p>The 406 error was leading me to think it was an issue with the upload folder or even the tmp directory but it works fine with the example script so it has to be something in the code in my zend app. I know this info is a bit vague but do you have any suggestions as to where I can look to find the source of the error.</p>
<p>Regards<br />Navin</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: gondo</title>
		<link>http://phpdev.ro/how-to-integrate-uploadify-in-zend-framework-1-9-6.html/comment-page-1#comment-217</link>
		<dc:creator>gondo</dc:creator>
		<pubDate>Tue, 06 Apr 2010 15:01:26 +0000</pubDate>
		<guid isPermaLink="false">http://blog.uauzilla.ro/?p=595#comment-217</guid>
		<description>hi&lt;br&gt;&lt;br&gt;i&#039;ve created Zend Framework Uploadify Extension what use different idea to implement Uploadify.&lt;br&gt;more can be found here: &lt;a href=&quot;http://gondo.webdesigners.sk/zend-framework-uploadify-extension/&quot; rel=&quot;nofollow&quot;&gt;http://gondo.webdesigners.sk/zend-framework-upl...&lt;/a&gt;&lt;br&gt;&lt;br&gt;.gondo</description>
		<content:encoded><![CDATA[<p>hi</p>
<p>i&#39;ve created Zend Framework Uploadify Extension what use different idea to implement Uploadify.<br />more can be found here: <a href="http://gondo.webdesigners.sk/zend-framework-uploadify-extension/" rel="nofollow"></a><a href="http://gondo.webdesigners.sk/zend-framework-upl.." rel="nofollow">http://gondo.webdesigners.sk/zend-framework-upl..</a>.</p>
<p>.gondo</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Andrei Gabreanu</title>
		<link>http://phpdev.ro/how-to-integrate-uploadify-in-zend-framework-1-9-6.html/comment-page-1#comment-204</link>
		<dc:creator>Andrei Gabreanu</dc:creator>
		<pubDate>Sat, 13 Mar 2010 12:37:32 +0000</pubDate>
		<guid isPermaLink="false">http://blog.uauzilla.ro/?p=595#comment-204</guid>
		<description>Hello,

This is a very general error and I cannot tell you exactly what it could cause it. You need to look in your apache logs / error logs and find the error there. Once that is found, you could post it here and I will gladly help you fix it. If you cannot find the error there, try debugging with &quot;die(&#039;test1&#039;);&quot; in your code to see where the problem appears  (line by line).

Good luck!</description>
		<content:encoded><![CDATA[<p>Hello,</p>
<p>This is a very general error and I cannot tell you exactly what it could cause it. You need to look in your apache logs / error logs and find the error there. Once that is found, you could post it here and I will gladly help you fix it. If you cannot find the error there, try debugging with &#8220;die(&#8216;test1&#8242;);&#8221; in your code to see where the problem appears  (line by line).</p>
<p>Good luck!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: QaziArsalan</title>
		<link>http://phpdev.ro/how-to-integrate-uploadify-in-zend-framework-1-9-6.html/comment-page-1#comment-203</link>
		<dc:creator>QaziArsalan</dc:creator>
		<pubDate>Fri, 12 Mar 2010 12:43:26 +0000</pubDate>
		<guid isPermaLink="false">http://blog.uauzilla.ro/?p=595#comment-203</guid>
		<description>Hello Andrei Gabreanu ! 
As a fresh graduate and internee I am having problem in using jquery plugin on my website, please can u guide me how can i implement it I am using PhpEd for this purpose. when I run this code I get an error &quot;HTTP error&quot;.
Greeting and Thanks,
Arsalan</description>
		<content:encoded><![CDATA[<p>Hello Andrei Gabreanu !<br />
As a fresh graduate and internee I am having problem in using jquery plugin on my website, please can u guide me how can i implement it I am using PhpEd for this purpose. when I run this code I get an error &#8220;HTTP error&#8221;.<br />
Greeting and Thanks,<br />
Arsalan</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jordi Aragones</title>
		<link>http://phpdev.ro/how-to-integrate-uploadify-in-zend-framework-1-9-6.html/comment-page-1#comment-196</link>
		<dc:creator>Jordi Aragones</dc:creator>
		<pubDate>Thu, 18 Feb 2010 14:52:37 +0000</pubDate>
		<guid isPermaLink="false">http://blog.uauzilla.ro/?p=595#comment-196</guid>
		<description>Well... I can see pros and cons in both points although I&#039;m not sure what it&#039;s better in my case... the project that I&#039;m developing will spend some bandwidth (has videos) and that means that maybe it could be nice to upload directly to s3 (in order to save money in bandwidth). 

I will check if I can interact with my db using the defaults functions in uploadify (onOpen, onError, onCancel, onAllComplete). 

Thanks for your help and thoughts! ;)
Jordi</description>
		<content:encoded><![CDATA[<p>Well&#8230; I can see pros and cons in both points although I&#8217;m not sure what it&#8217;s better in my case&#8230; the project that I&#8217;m developing will spend some bandwidth (has videos) and that means that maybe it could be nice to upload directly to s3 (in order to save money in bandwidth). </p>
<p>I will check if I can interact with my db using the defaults functions in uploadify (onOpen, onError, onCancel, onAllComplete). </p>
<p>Thanks for your help and thoughts! <img src='http://phpdev.ro/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /><br />
Jordi</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Andrei Gabreanu</title>
		<link>http://phpdev.ro/how-to-integrate-uploadify-in-zend-framework-1-9-6.html/comment-page-1#comment-195</link>
		<dc:creator>Andrei Gabreanu</dc:creator>
		<pubDate>Thu, 18 Feb 2010 13:42:41 +0000</pubDate>
		<guid isPermaLink="false">http://blog.uauzilla.ro/?p=595#comment-195</guid>
		<description>Sorry about the above comment, it might be confusing since i wrote it on a hurry. I meant to say that the option with the background process is better then sending the file directly to S3 after upload (saves bandwidth that might be used in that moment for some performance)</description>
		<content:encoded><![CDATA[<p>Sorry about the above comment, it might be confusing since i wrote it on a hurry. I meant to say that the option with the background process is better then sending the file directly to S3 after upload (saves bandwidth that might be used in that moment for some performance)</p>
]]></content:encoded>
	</item>
</channel>
</rss>
