<?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 for Mitesdesign</title>
	<atom:link href="http://www.mitesdesign.com/blog/comments/feed" rel="self" type="application/rss+xml" />
	<link>http://www.mitesdesign.com/blog</link>
	<description>Creative Results in Web Design</description>
	<lastBuildDate>Thu, 08 Oct 2009 00:59:53 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.1</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>Comment on Multiple Uploads with JQuery and Code Igniter by Mike Kelly</title>
		<link>http://www.mitesdesign.com/blog/open-source/multi-upload-jquery-code-igniter/comment-page-1#comment-4872</link>
		<dc:creator>Mike Kelly</dc:creator>
		<pubDate>Thu, 08 Oct 2009 00:59:53 +0000</pubDate>
		<guid isPermaLink="false">http://www.mitesdesign.com/blog/?p=16#comment-4872</guid>
		<description>Just wanted to say thanks for the script -- worked perfectly and saved me tons of time!  Thanks man</description>
		<content:encoded><![CDATA[<p>Just wanted to say thanks for the script &#8212; worked perfectly and saved me tons of time!  Thanks man</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Decorate your photo for a good cause by Kelli Garner</title>
		<link>http://www.mitesdesign.com/blog/good/decorate-your-photo-for-a-good-cause/comment-page-1#comment-4855</link>
		<dc:creator>Kelli Garner</dc:creator>
		<pubDate>Sat, 03 Oct 2009 17:10:54 +0000</pubDate>
		<guid isPermaLink="false">http://www.mitesdesign.com/bog/?p=5#comment-4855</guid>
		<description>Great site, how do I subscribe?</description>
		<content:encoded><![CDATA[<p>Great site, how do I subscribe?</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Multiple Uploads with JQuery and Code Igniter by Ortzinator</title>
		<link>http://www.mitesdesign.com/blog/open-source/multi-upload-jquery-code-igniter/comment-page-1#comment-4841</link>
		<dc:creator>Ortzinator</dc:creator>
		<pubDate>Fri, 02 Oct 2009 03:02:48 +0000</pubDate>
		<guid isPermaLink="false">http://www.mitesdesign.com/blog/?p=16#comment-4841</guid>
		<description>Thanks!

One bug with CI 1.7.2

In CI&#039;s upload lib, Upload.php, comment out line 935

$filename = $this-&gt;file_name;

Not sure what this does anyway. Seems unnecessary.</description>
		<content:encoded><![CDATA[<p>Thanks!</p>
<p>One bug with CI 1.7.2</p>
<p>In CI&#8217;s upload lib, Upload.php, comment out line 935</p>
<p>$filename = $this-&gt;file_name;</p>
<p>Not sure what this does anyway. Seems unnecessary.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Multiple Uploads with JQuery and Code Igniter by Marcin</title>
		<link>http://www.mitesdesign.com/blog/open-source/multi-upload-jquery-code-igniter/comment-page-1#comment-4720</link>
		<dc:creator>Marcin</dc:creator>
		<pubDate>Sat, 29 Aug 2009 20:57:34 +0000</pubDate>
		<guid isPermaLink="false">http://www.mitesdesign.com/blog/?p=16#comment-4720</guid>
		<description>For me, for jQuery 1.3.1 and CodeIgniter 1.7.1, this fantastic script doesn&#039;t work correctly. MiniSOLVED:
In Multi_upload.php, Line 156:
            if($error_hold[$i]==false) { // MOJA PRZEROBKA (jesli nie ma bledu pozwalamy na copy)
              if ( ! @copy($CI-&gt;upload-&gt;file_temp, $CI-&gt;upload-&gt;upload_path.$CI-&gt;upload-&gt;file_name))
              {
                  if ( ! @move_uploaded_file($CI-&gt;upload-&gt;file_temp, $CI-&gt;upload-&gt;upload_path.$CI-&gt;upload-&gt;file_name))
                  {
                     $error_hold[$i] = &#039;upload_destination_error&#039;;
                  }
              }
            }
instead of
              if ( ! @copy($CI-&gt;upload-&gt;file_temp, $CI-&gt;upload-&gt;upload_path.$CI-&gt;upload-&gt;file_name))
              {
                  if ( ! @move_uploaded_file($CI-&gt;upload-&gt;file_temp, $CI-&gt;upload-&gt;upload_path.$CI-&gt;upload-&gt;file_name))
                  {
                     $error_hold[$i] = &#039;upload_destination_error&#039;;
                  }
              }
and, line 212: $CI-&gt;upload-&gt;set_error($error_hold); instead of $this-&gt;set_error($error_hold);</description>
		<content:encoded><![CDATA[<p>For me, for jQuery 1.3.1 and CodeIgniter 1.7.1, this fantastic script doesn&#8217;t work correctly. MiniSOLVED:<br />
In Multi_upload.php, Line 156:<br />
            if($error_hold[$i]==false) { // MOJA PRZEROBKA (jesli nie ma bledu pozwalamy na copy)<br />
              if ( ! @copy($CI-&gt;upload-&gt;file_temp, $CI-&gt;upload-&gt;upload_path.$CI-&gt;upload-&gt;file_name))<br />
              {<br />
                  if ( ! @move_uploaded_file($CI-&gt;upload-&gt;file_temp, $CI-&gt;upload-&gt;upload_path.$CI-&gt;upload-&gt;file_name))<br />
                  {<br />
                     $error_hold[$i] = &#8216;upload_destination_error&#8217;;<br />
                  }<br />
              }<br />
            }<br />
instead of<br />
              if ( ! @copy($CI-&gt;upload-&gt;file_temp, $CI-&gt;upload-&gt;upload_path.$CI-&gt;upload-&gt;file_name))<br />
              {<br />
                  if ( ! @move_uploaded_file($CI-&gt;upload-&gt;file_temp, $CI-&gt;upload-&gt;upload_path.$CI-&gt;upload-&gt;file_name))<br />
                  {<br />
                     $error_hold[$i] = &#8216;upload_destination_error&#8217;;<br />
                  }<br />
              }<br />
and, line 212: $CI-&gt;upload-&gt;set_error($error_hold); instead of $this-&gt;set_error($error_hold);</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Multiple Uploads with JQuery and Code Igniter by Vinod</title>
		<link>http://www.mitesdesign.com/blog/open-source/multi-upload-jquery-code-igniter/comment-page-1#comment-4704</link>
		<dc:creator>Vinod</dc:creator>
		<pubDate>Tue, 11 Aug 2009 17:01:29 +0000</pubDate>
		<guid isPermaLink="false">http://www.mitesdesign.com/blog/?p=16#comment-4704</guid>
		<description>I want to use multiple upload. Can you please help. Bcos example only shows 1 file upload.</description>
		<content:encoded><![CDATA[<p>I want to use multiple upload. Can you please help. Bcos example only shows 1 file upload.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Multiple Uploads with JQuery and Code Igniter by Alvin</title>
		<link>http://www.mitesdesign.com/blog/open-source/multi-upload-jquery-code-igniter/comment-page-1#comment-4678</link>
		<dc:creator>Alvin</dc:creator>
		<pubDate>Wed, 22 Jul 2009 06:27:55 +0000</pubDate>
		<guid isPermaLink="false">http://www.mitesdesign.com/blog/?p=16#comment-4678</guid>
		<description>thank you for the update, will get around to updating the released version at some point</description>
		<content:encoded><![CDATA[<p>thank you for the update, will get around to updating the released version at some point</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Multiple Uploads with JQuery and Code Igniter by Phil</title>
		<link>http://www.mitesdesign.com/blog/open-source/multi-upload-jquery-code-igniter/comment-page-1#comment-4676</link>
		<dc:creator>Phil</dc:creator>
		<pubDate>Wed, 22 Jul 2009 03:57:09 +0000</pubDate>
		<guid isPermaLink="false">http://www.mitesdesign.com/blog/?p=16#comment-4676</guid>
		<description>I have to change line 33 of the Multi_upload.php controller from

$num_files = count($_FILES[$field][&#039;name&#039;]) -1;

to

$num_files = count($_FILES[$field][&#039;name&#039;]);

for it to work with jQuery 1.3.1 (up from the 1.2.6 included) and jQuery Multiple File Upload Plugin
v1.46 (up from the v1.3 included).</description>
		<content:encoded><![CDATA[<p>I have to change line 33 of the Multi_upload.php controller from</p>
<p>$num_files = count($_FILES[$field]['name']) -1;</p>
<p>to</p>
<p>$num_files = count($_FILES[$field]['name']);</p>
<p>for it to work with jQuery 1.3.1 (up from the 1.2.6 included) and jQuery Multiple File Upload Plugin<br />
v1.46 (up from the v1.3 included).</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Multiple Uploads with JQuery and Code Igniter by yalamber subba</title>
		<link>http://www.mitesdesign.com/blog/open-source/multi-upload-jquery-code-igniter/comment-page-1#comment-4666</link>
		<dc:creator>yalamber subba</dc:creator>
		<pubDate>Fri, 17 Jul 2009 11:40:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.mitesdesign.com/blog/?p=16#comment-4666</guid>
		<description>I am having problem using this library, I cannot see error messages when the script encounters errors. I have echoed the errors in view files and passed the error variable through the data array in view.</description>
		<content:encoded><![CDATA[<p>I am having problem using this library, I cannot see error messages when the script encounters errors. I have echoed the errors in view files and passed the error variable through the data array in view.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Multiple Uploads with JQuery and Code Igniter by yomi</title>
		<link>http://www.mitesdesign.com/blog/open-source/multi-upload-jquery-code-igniter/comment-page-1#comment-3453</link>
		<dc:creator>yomi</dc:creator>
		<pubDate>Fri, 06 Mar 2009 14:33:33 +0000</pubDate>
		<guid isPermaLink="false">http://www.mitesdesign.com/blog/?p=16#comment-3453</guid>
		<description>sorry, i solved this problem with MetaData plugin and now works great! Thanks again!</description>
		<content:encoded><![CDATA[<p>sorry, i solved this problem with MetaData plugin and now works great! Thanks again!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Multiple Uploads with JQuery and Code Igniter by yomi</title>
		<link>http://www.mitesdesign.com/blog/open-source/multi-upload-jquery-code-igniter/comment-page-1#comment-3451</link>
		<dc:creator>yomi</dc:creator>
		<pubDate>Fri, 06 Mar 2009 14:06:29 +0000</pubDate>
		<guid isPermaLink="false">http://www.mitesdesign.com/blog/?p=16#comment-3451</guid>
		<description>this is great library, it&#039;s just what I needed but I have a problem;
it only works with this included jquery.MultiFile ! now, there is a newer version of this Multi file and when I use it it wont work. For example, I need to change &quot;remove&quot; string when removing selected image in some other language, and when i change it in your packed js file - the script won&#039;t execute. you think you could solve this problem?</description>
		<content:encoded><![CDATA[<p>this is great library, it&#8217;s just what I needed but I have a problem;<br />
it only works with this included jquery.MultiFile ! now, there is a newer version of this Multi file and when I use it it wont work. For example, I need to change &#8220;remove&#8221; string when removing selected image in some other language, and when i change it in your packed js file &#8211; the script won&#8217;t execute. you think you could solve this problem?</p>
]]></content:encoded>
	</item>
</channel>
</rss>
