<?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 The Tutorial Blog</title>
	<atom:link href="http://www.thetutorialblog.com/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.thetutorialblog.com</link>
	<description></description>
	<lastBuildDate>Wed, 15 Dec 2010 23:17:08 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
	<item>
		<title>Comment on Build a Twitter-like site with CodeIgniter and jQuery by eCopt</title>
		<link>http://www.thetutorialblog.com/php/build-a-twitter-like-site-with-codeigniter-and-jquery/comment-page-1/#comment-6093</link>
		<dc:creator>eCopt</dc:creator>
		<pubDate>Wed, 15 Dec 2010 23:17:08 +0000</pubDate>
		<guid isPermaLink="false">http://www.thetutorialblog.com/?p=256#comment-6093</guid>
		<description>@Wez - Love your tutorials! Did you ever manage to post the remaining parts? I&#039;m anxious to keep practicing my skills, but def. need these tutorials to help! Thanks again.</description>
		<content:encoded><![CDATA[<p>@Wez - Love your tutorials! Did you ever manage to post the remaining parts? I'm anxious to keep practicing my skills, but def. need these tutorials to help! Thanks again.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Uploading files to Rackspace Cloud (Mosso) using PHP API by Brian Roscher</title>
		<link>http://www.thetutorialblog.com/php/uploading-files-to-rackspace-cloud-mosso-using-php-api/comment-page-1/#comment-6033</link>
		<dc:creator>Brian Roscher</dc:creator>
		<pubDate>Mon, 13 Dec 2010 18:03:19 +0000</pubDate>
		<guid isPermaLink="false">http://www.thetutorialblog.com/?p=142#comment-6033</guid>
		<description>Using a tweak of your script, I was able to upload files to the Rackspace Cloud.  Great... now how do I download them?</description>
		<content:encoded><![CDATA[<p>Using a tweak of your script, I was able to upload files to the Rackspace Cloud.  Great... now how do I download them?</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Creating a basic iPad application by Dimiter</title>
		<link>http://www.thetutorialblog.com/cocoa-objective-c/creating-a-basic-ipad-application/comment-page-1/#comment-5431</link>
		<dc:creator>Dimiter</dc:creator>
		<pubDate>Sat, 27 Nov 2010 01:08:49 +0000</pubDate>
		<guid isPermaLink="false">http://www.thetutorialblog.com/?p=287#comment-5431</guid>
		<description>Should be -- indeed, instead of -. Also, I discovered that on the first load, the label just says label, and it is upon the change of the value that the label is updated to that specific value. This can simply be fixed by adding one line to the (commented) viewDidLoad function, the complete function should be:

- (void)viewDidLoad {
	[currentNumber setText:[NSString stringWithFormat:@&quot;%d&quot;, number]];
    [super viewDidLoad];
}

Agaain, it is there on default, but it is commented by a /* comment before and after it. Just add the currentnumer line, and the label will be updated upon start. Great small but simple tutorial, learned 10x more from this than browsing the apple ios documentation for a whole day... A great start for beginners! Thanks!</description>
		<content:encoded><![CDATA[<p>Should be -- indeed, instead of -. Also, I discovered that on the first load, the label just says label, and it is upon the change of the value that the label is updated to that specific value. This can simply be fixed by adding one line to the (commented) viewDidLoad function, the complete function should be:</p>
<p>- (void)viewDidLoad {<br />
	[currentNumber setText:[NSString stringWithFormat:@"%d", number]];<br />
    [super viewDidLoad];<br />
}</p>
<p>Agaain, it is there on default, but it is commented by a /* comment before and after it. Just add the currentnumer line, and the label will be updated upon start. Great small but simple tutorial, learned 10x more from this than browsing the apple ios documentation for a whole day... A great start for beginners! Thanks!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Deep Linking with jQuery by Alex</title>
		<link>http://www.thetutorialblog.com/jquery/deep-linking-with-jquery/comment-page-1/#comment-5392</link>
		<dc:creator>Alex</dc:creator>
		<pubDate>Thu, 25 Nov 2010 16:13:21 +0000</pubDate>
		<guid isPermaLink="false">http://www.thetutorialblog.com/?p=243#comment-5392</guid>
		<description>Unfortunately this does not work in Firefox 3.6.12 :(</description>
		<content:encoded><![CDATA[<p>Unfortunately this does not work in Firefox 3.6.12 <img src='http://www.thetutorialblog.com/wp-includes/images/smilies/icon_sad.gif' alt=':(' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Uploading files to Rackspace Cloud (Mosso) using PHP API by Curtis</title>
		<link>http://www.thetutorialblog.com/php/uploading-files-to-rackspace-cloud-mosso-using-php-api/comment-page-1/#comment-3198</link>
		<dc:creator>Curtis</dc:creator>
		<pubDate>Tue, 14 Sep 2010 02:05:38 +0000</pubDate>
		<guid isPermaLink="false">http://www.thetutorialblog.com/?p=142#comment-3198</guid>
		<description>Hi Wez,

I&#039;m on RackSpace Cloud too and have had issues uploading very large files as Milo does...  I believe my issue is either the tmp folder on their PHP cluster fills up or their load balancer&#039;s limits the script to  30 secs. Either way I can&#039;t change those settings.

They have suggested that I use Cloud files to solve this issue but if what you say is true then I would have the same problems.   

Have you uploaded very large files to cloud files via the PHP API?</description>
		<content:encoded><![CDATA[<p>Hi Wez,</p>
<p>I'm on RackSpace Cloud too and have had issues uploading very large files as Milo does...  I believe my issue is either the tmp folder on their PHP cluster fills up or their load balancer's limits the script to  30 secs. Either way I can't change those settings.</p>
<p>They have suggested that I use Cloud files to solve this issue but if what you say is true then I would have the same problems.   </p>
<p>Have you uploaded very large files to cloud files via the PHP API?</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Uploading files to Rackspace Cloud (Mosso) using PHP API by Rifat</title>
		<link>http://www.thetutorialblog.com/php/uploading-files-to-rackspace-cloud-mosso-using-php-api/comment-page-1/#comment-1726</link>
		<dc:creator>Rifat</dc:creator>
		<pubDate>Fri, 30 Jul 2010 07:54:36 +0000</pubDate>
		<guid isPermaLink="false">http://www.thetutorialblog.com/?p=142#comment-1726</guid>
		<description>Hi,

I am getting following errors while uploading large files (25MB, 43MB, 87MB): 

Notice: Undefined index: upload in C:\Program Files\Apache Group\Apache\htdocs\virtualhosts\www.mysite.com\tools\admin\cloudup.php on line 23

Notice: Undefined index: upload in C:\Program Files\Apache Group\Apache\htdocs\virtualhosts\www.mysite.com\tools\admin\cloudup.php on line 24

Notice: Undefined index: upload in C:\Program Files\Apache Group\Apache\htdocs\virtualhosts\www.mysite.com\tools\admin\cloudup.php on line 29

Notice: Undefined index: upload in C:\Program Files\Apache Group\Apache\htdocs\virtualhosts\www.mysite.com\tools\admin\cloudup.php on line 30

Fatal error: Uncaught exception &#039;IOException&#039; with message &#039;Could not open file for reading: &#039; in C:\Program Files\Apache Group\Apache\htdocs\virtualhosts\www.mysite.com\tools\admin\includes\cloudfiles\cloudfiles.php:2007 Stack trace: #0 C:\Program Files\Apache Group\Apache\htdocs\virtualhosts\www.mysite.com\tools\admin\cloudup.php(32): CF_Object-&gt;load_from_filename(NULL) #1 {main} thrown in C:\Program Files\Apache Group\Apache\htdocs\virtualhosts\www.mysite.com\tools\admin\includes\cloudfiles\cloudfiles.php on line 2007


These errors show up after around 10-15 minutes of starting upload, it seems to process the request till that time. It works fine when files are smaller in size. I have added the following lines in the beginning of the upload script:

set_time_limit(0);
ini_set(&quot;upload_max_filesize&quot;, &quot;1000M&quot;);
ini_set(&quot;post_max_size&quot;, &quot;1001M&quot;);
ini_set(&quot;memory_limit&quot;, &quot;1002M&quot;);
ini_set(&quot;max_input_time&quot;, &quot;7200&quot;);

What might be the problem? Any thoughts?</description>
		<content:encoded><![CDATA[<p>Hi,</p>
<p>I am getting following errors while uploading large files (25MB, 43MB, 87MB): </p>
<p>Notice: Undefined index: upload in C:\Program Files\Apache Group\Apache\htdocs\virtualhosts\www.mysite.com\tools\admin\cloudup.php on line 23</p>
<p>Notice: Undefined index: upload in C:\Program Files\Apache Group\Apache\htdocs\virtualhosts\www.mysite.com\tools\admin\cloudup.php on line 24</p>
<p>Notice: Undefined index: upload in C:\Program Files\Apache Group\Apache\htdocs\virtualhosts\www.mysite.com\tools\admin\cloudup.php on line 29</p>
<p>Notice: Undefined index: upload in C:\Program Files\Apache Group\Apache\htdocs\virtualhosts\www.mysite.com\tools\admin\cloudup.php on line 30</p>
<p>Fatal error: Uncaught exception 'IOException' with message 'Could not open file for reading: ' in C:\Program Files\Apache Group\Apache\htdocs\virtualhosts\www.mysite.com\tools\admin\includes\cloudfiles\cloudfiles.php:2007 Stack trace: #0 C:\Program Files\Apache Group\Apache\htdocs\virtualhosts\www.mysite.com\tools\admin\cloudup.php(32): CF_Object-&gt;load_from_filename(NULL) #1 {main} thrown in C:\Program Files\Apache Group\Apache\htdocs\virtualhosts\www.mysite.com\tools\admin\includes\cloudfiles\cloudfiles.php on line 2007</p>
<p>These errors show up after around 10-15 minutes of starting upload, it seems to process the request till that time. It works fine when files are smaller in size. I have added the following lines in the beginning of the upload script:</p>
<p>set_time_limit(0);<br />
ini_set("upload_max_filesize", "1000M");<br />
ini_set("post_max_size", "1001M");<br />
ini_set("memory_limit", "1002M");<br />
ini_set("max_input_time", "7200");</p>
<p>What might be the problem? Any thoughts?</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Creating a basic iPad application by Rina Rochel</title>
		<link>http://www.thetutorialblog.com/cocoa-objective-c/creating-a-basic-ipad-application/comment-page-1/#comment-1463</link>
		<dc:creator>Rina Rochel</dc:creator>
		<pubDate>Sun, 18 Jul 2010 12:34:15 +0000</pubDate>
		<guid isPermaLink="false">http://www.thetutorialblog.com/?p=287#comment-1463</guid>
		<description>Brilliant work. I consistently come across truly exceptional discussions here on your blog page.</description>
		<content:encoded><![CDATA[<p>Brilliant work. I consistently come across truly exceptional discussions here on your blog page.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Twitter-like pagination using CodeIgniter and jQuery by Bob</title>
		<link>http://www.thetutorialblog.com/php/twitter-like-pagination-using-codeigniter-and-jquery/comment-page-1/#comment-1437</link>
		<dc:creator>Bob</dc:creator>
		<pubDate>Sat, 17 Jul 2010 19:26:01 +0000</pubDate>
		<guid isPermaLink="false">http://www.thetutorialblog.com/?p=167#comment-1437</guid>
		<description>Just what I was looking for :)
Will try to port it to mootools.
Cheers</description>
		<content:encoded><![CDATA[<p>Just what I was looking for <img src='http://www.thetutorialblog.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /><br />
Will try to port it to mootools.<br />
Cheers</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Build a Twitter-like site with CodeIgniter and jQuery Part 2 by Wez Pyke</title>
		<link>http://www.thetutorialblog.com/php/build-a-twitter-like-site-with-codeigniter-and-jquery-part-2/comment-page-1/#comment-1245</link>
		<dc:creator>Wez Pyke</dc:creator>
		<pubDate>Thu, 08 Jul 2010 21:34:57 +0000</pubDate>
		<guid isPermaLink="false">http://www.thetutorialblog.com/?p=268#comment-1245</guid>
		<description>Very soon, I&#039;ve already started work on it.</description>
		<content:encoded><![CDATA[<p>Very soon, I've already started work on it.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Build a Twitter-like site with CodeIgniter and jQuery Part 2 by Abdullah Al Mamun</title>
		<link>http://www.thetutorialblog.com/php/build-a-twitter-like-site-with-codeigniter-and-jquery-part-2/comment-page-1/#comment-1243</link>
		<dc:creator>Abdullah Al Mamun</dc:creator>
		<pubDate>Thu, 08 Jul 2010 21:07:50 +0000</pubDate>
		<guid isPermaLink="false">http://www.thetutorialblog.com/?p=268#comment-1243</guid>
		<description>This part is just awesome!
Please keep up this series.
When the third part will come?</description>
		<content:encoded><![CDATA[<p>This part is just awesome!<br />
Please keep up this series.<br />
When the third part will come?</p>
]]></content:encoded>
	</item>
</channel>
</rss>

