<?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: Fresh Batch of CodeIgniter Libraries Out Now!</title>
	<atom:link href="http://www.haughin.com/2008/02/10/fresh-batch-of-codeigniter-libraries-out-now/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.haughin.com/2008/02/10/fresh-batch-of-codeigniter-libraries-out-now/</link>
	<description>From one geek to many others...</description>
	<lastBuildDate>Fri, 12 Mar 2010 05:43:50 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: KaBaDaBrA</title>
		<link>http://www.haughin.com/2008/02/10/fresh-batch-of-codeigniter-libraries-out-now/comment-page-1/#comment-4361</link>
		<dc:creator>KaBaDaBrA</dc:creator>
		<pubDate>Fri, 15 Jan 2010 10:33:16 +0000</pubDate>
		<guid isPermaLink="false">http://www.haughin.com/2008/02/10/fresh-batch-of-codeigniter-libraries-out-now/#comment-4361</guid>
		<description>Also had a problem with the set_cache_location ...set mine to the following and it was working fine and not getting the spc not writable errors anymore....

$this-&gt;load-&gt;library(&#039;simplepie&#039;);
$this-&gt;simplepie-&gt;set_feed_url(&#039;http://feeds.haughin.com/haughin&#039;);
$this-&gt;simplepie-&gt;set_cache_location($_SERVER[&#039;DOCUMENT_ROOT&#039;].&#039;/tmp/rss/&#039;);
$this-&gt;simplepie-&gt;init();
$this-&gt;simplepie-&gt;handle_content_type();

Just make a folder called &quot;tmp&quot; in your root directory and give it writable permissions...</description>
		<content:encoded><![CDATA[<p>Also had a problem with the set_cache_location &#8230;set mine to the following and it was working fine and not getting the spc not writable errors anymore&#8230;.</p>
<p>$this-&gt;load-&gt;library(&#8217;simplepie&#8217;);<br />
$this-&gt;simplepie-&gt;set_feed_url(&#8216;http://feeds.haughin.com/haughin&#8217;);<br />
$this-&gt;simplepie-&gt;set_cache_location($_SERVER['DOCUMENT_ROOT'].&#8217;/tmp/rss/&#8217;);<br />
$this-&gt;simplepie-&gt;init();<br />
$this-&gt;simplepie-&gt;handle_content_type();</p>
<p>Just make a folder called &#8220;tmp&#8221; in your root directory and give it writable permissions&#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: clux</title>
		<link>http://www.haughin.com/2008/02/10/fresh-batch-of-codeigniter-libraries-out-now/comment-page-1/#comment-2744</link>
		<dc:creator>clux</dc:creator>
		<pubDate>Sat, 21 Feb 2009 14:41:48 +0000</pubDate>
		<guid isPermaLink="false">http://www.haughin.com/2008/02/10/fresh-batch-of-codeigniter-libraries-out-now/#comment-2744</guid>
		<description>I had problems with set_cache_location as well. To make it work I had to use (for last.fm at least)  &#039;rss_cache_path&#039; =&gt; BASEPATH.&#039;cache/rss/lastfm-rss-cache/&#039;.</description>
		<content:encoded><![CDATA[<p>I had problems with set_cache_location as well. To make it work I had to use (for last.fm at least)  &#8216;rss_cache_path&#8217; =&gt; BASEPATH.&#8217;cache/rss/lastfm-rss-cache/&#8217;.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Lance Johnson</title>
		<link>http://www.haughin.com/2008/02/10/fresh-batch-of-codeigniter-libraries-out-now/comment-page-1/#comment-2166</link>
		<dc:creator>Lance Johnson</dc:creator>
		<pubDate>Mon, 26 May 2008 22:54:23 +0000</pubDate>
		<guid isPermaLink="false">http://www.haughin.com/2008/02/10/fresh-batch-of-codeigniter-libraries-out-now/#comment-2166</guid>
		<description>Thanks for the great libraries! Any recommendations on a good library to facilitate uploading to Flickr?</description>
		<content:encoded><![CDATA[<p>Thanks for the great libraries! Any recommendations on a good library to facilitate uploading to Flickr?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Elliot</title>
		<link>http://www.haughin.com/2008/02/10/fresh-batch-of-codeigniter-libraries-out-now/comment-page-1/#comment-1527</link>
		<dc:creator>Elliot</dc:creator>
		<pubDate>Thu, 10 Apr 2008 18:32:14 +0000</pubDate>
		<guid isPermaLink="false">http://www.haughin.com/2008/02/10/fresh-batch-of-codeigniter-libraries-out-now/#comment-1527</guid>
		<description>You should set the cache directory when calling the library:

&lt;pre lang=&quot;PHP&quot;&gt;
$this-&gt;load-&gt;library(&#039;simplepie&#039;);
$this-&gt;simplepie-&gt;set_feed_url(&#039;http://feeds.haughin.com/haughin&#039;);
$this-&gt;simplepie-&gt;set_cache_location(APPPATH.&#039;cache/rss&#039;);
$this-&gt;simplepie-&gt;init();
$this-&gt;simplepie-&gt;handle_content_type();
&lt;/pre&gt;</description>
		<content:encoded><![CDATA[<p>You should set the cache directory when calling the library:</p>

<div class="wp_syntax"><div class="code"><pre class="php" style="font-family:monospace;"><span style="color: #000088;">$this</span><span style="color: #339933;">-&gt;</span><span style="color: #004000;">load</span><span style="color: #339933;">-&gt;</span><span style="color: #004000;">library</span><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'simplepie'</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
<span style="color: #000088;">$this</span><span style="color: #339933;">-&gt;</span><span style="color: #004000;">simplepie</span><span style="color: #339933;">-&gt;</span><span style="color: #004000;">set_feed_url</span><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'http://feeds.haughin.com/haughin'</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
<span style="color: #000088;">$this</span><span style="color: #339933;">-&gt;</span><span style="color: #004000;">simplepie</span><span style="color: #339933;">-&gt;</span><span style="color: #004000;">set_cache_location</span><span style="color: #009900;">&#40;</span>APPPATH<span style="color: #339933;">.</span><span style="color: #0000ff;">'cache/rss'</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
<span style="color: #000088;">$this</span><span style="color: #339933;">-&gt;</span><span style="color: #004000;">simplepie</span><span style="color: #339933;">-&gt;</span><span style="color: #004000;">init</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
<span style="color: #000088;">$this</span><span style="color: #339933;">-&gt;</span><span style="color: #004000;">simplepie</span><span style="color: #339933;">-&gt;</span><span style="color: #004000;">handle_content_type</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span></pre></div></div>

]]></content:encoded>
	</item>
	<item>
		<title>By: TaeWoo</title>
		<link>http://www.haughin.com/2008/02/10/fresh-batch-of-codeigniter-libraries-out-now/comment-page-1/#comment-1425</link>
		<dc:creator>TaeWoo</dc:creator>
		<pubDate>Tue, 18 Mar 2008 04:06:05 +0000</pubDate>
		<guid isPermaLink="false">http://www.haughin.com/2008/02/10/fresh-batch-of-codeigniter-libraries-out-now/#comment-1425</guid>
		<description>ONe other thing.. I am getting this error:

Severity: User Warning

Message: ./cache/107aba3281d2190bb8392cc495382c65.spc is not writeable

Filename: libraries/simplepie.php

Line Number: 1780


Where exactly is the cache directory supposed to be setup?</description>
		<content:encoded><![CDATA[<p>ONe other thing.. I am getting this error:</p>
<p>Severity: User Warning</p>
<p>Message: ./cache/107aba3281d2190bb8392cc495382c65.spc is not writeable</p>
<p>Filename: libraries/simplepie.php</p>
<p>Line Number: 1780</p>
<p>Where exactly is the cache directory supposed to be setup?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: TaeWoo</title>
		<link>http://www.haughin.com/2008/02/10/fresh-batch-of-codeigniter-libraries-out-now/comment-page-1/#comment-1424</link>
		<dc:creator>TaeWoo</dc:creator>
		<pubDate>Tue, 18 Mar 2008 03:47:16 +0000</pubDate>
		<guid isPermaLink="false">http://www.haughin.com/2008/02/10/fresh-batch-of-codeigniter-libraries-out-now/#comment-1424</guid>
		<description>Dope! Why don&#039;t you put these on the CodeIgniter forum? Or at least link to it....</description>
		<content:encoded><![CDATA[<p>Dope! Why don&#8217;t you put these on the CodeIgniter forum? Or at least link to it&#8230;.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Amit Pansare</title>
		<link>http://www.haughin.com/2008/02/10/fresh-batch-of-codeigniter-libraries-out-now/comment-page-1/#comment-1154</link>
		<dc:creator>Amit Pansare</dc:creator>
		<pubDate>Mon, 03 Mar 2008 17:48:15 +0000</pubDate>
		<guid isPermaLink="false">http://www.haughin.com/2008/02/10/fresh-batch-of-codeigniter-libraries-out-now/#comment-1154</guid>
		<description>Good work maintaining these libs.

BTW, you might want to add this at beginning of the each lib as good practice.
if (!defined(&#039;BASEPATH&#039;)) exit(&#039;No direct script access allowed&#039;);</description>
		<content:encoded><![CDATA[<p>Good work maintaining these libs.</p>
<p>BTW, you might want to add this at beginning of the each lib as good practice.<br />
if (!defined(&#8216;BASEPATH&#8217;)) exit(&#8216;No direct script access allowed&#8217;);</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Twitter (And More) CodeIgniter Libraries &#124; David Bisset: Web Designer, Coder, Wordpress Guru</title>
		<link>http://www.haughin.com/2008/02/10/fresh-batch-of-codeigniter-libraries-out-now/comment-page-1/#comment-805</link>
		<dc:creator>Twitter (And More) CodeIgniter Libraries &#124; David Bisset: Web Designer, Coder, Wordpress Guru</dc:creator>
		<pubDate>Wed, 13 Feb 2008 14:45:24 +0000</pubDate>
		<guid isPermaLink="false">http://www.haughin.com/2008/02/10/fresh-batch-of-codeigniter-libraries-out-now/#comment-805</guid>
		<description>[...] updates from Twitter to use in your CodeIgniter application. Looks like Elliot Haughin has more CodeIgniter libraries for Simplepie, Amazon S3, Flickr, and Lastfm.  Tags: Amazon, CodeIgniter, flickr, last.fm, [...]</description>
		<content:encoded><![CDATA[<p>[...] updates from Twitter to use in your CodeIgniter application. Looks like Elliot Haughin has more CodeIgniter libraries for Simplepie, Amazon S3, Flickr, and Lastfm.  Tags: Amazon, CodeIgniter, flickr, last.fm, [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Elliot</title>
		<link>http://www.haughin.com/2008/02/10/fresh-batch-of-codeigniter-libraries-out-now/comment-page-1/#comment-780</link>
		<dc:creator>Elliot</dc:creator>
		<pubDate>Mon, 11 Feb 2008 11:12:28 +0000</pubDate>
		<guid isPermaLink="false">http://www.haughin.com/2008/02/10/fresh-batch-of-codeigniter-libraries-out-now/#comment-780</guid>
		<description>Thanks for that catch... I&#039;ve fixed the link now!

Elliot</description>
		<content:encoded><![CDATA[<p>Thanks for that catch&#8230; I&#8217;ve fixed the link now!</p>
<p>Elliot</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Dean</title>
		<link>http://www.haughin.com/2008/02/10/fresh-batch-of-codeigniter-libraries-out-now/comment-page-1/#comment-779</link>
		<dc:creator>Dean</dc:creator>
		<pubDate>Mon, 11 Feb 2008 08:56:29 +0000</pubDate>
		<guid isPermaLink="false">http://www.haughin.com/2008/02/10/fresh-batch-of-codeigniter-libraries-out-now/#comment-779</guid>
		<description>Nice work, but you should link Lastfm CodeIgniter Library on the Code page properly ;)</description>
		<content:encoded><![CDATA[<p>Nice work, but you should link Lastfm CodeIgniter Library on the Code page properly <img src='http://www.haughin.com/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
</channel>
</rss>

<!-- Dynamic page generated in 0.170 seconds. -->
<!-- Cached page generated by WP-Super-Cache on 2010-03-12 05:08:22 -->
