<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" media="screen" href="/~d/styles/rss2full.xsl"?><?xml-stylesheet type="text/css" media="screen" href="http://feeds.feedburner.com/~d/styles/itemcontent.css"?><rss xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" version="2.0"><channel><title>Leonard Austin</title><link>http://www.leonardaustin.com</link><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" type="application/rss+xml" href="http://feeds.feedburner.com/LeonardAustin" /><description></description><language>en</language><lastBuildDate>Mon, 06 Sep 2010 07:14:18 PDT</lastBuildDate><generator>http://wordpress.org/?v=3.0.1</generator><sy:updatePeriod xmlns:sy="http://purl.org/rss/1.0/modules/syndication/">hourly</sy:updatePeriod><sy:updateFrequency xmlns:sy="http://purl.org/rss/1.0/modules/syndication/">1</sy:updateFrequency><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" type="application/rss+xml" href="http://feeds.feedburner.com/LeonardAustin" /><feedburner:info uri="leonardaustin" /><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com/" /><item><title>Installing LAMP on Ubuntu</title><link>http://feedproxy.google.com/~r/LeonardAustin/~3/jupka0fLh1A/installing-lamp-on-ubuntu</link><category>Technical</category><category>apache</category><category>PHP</category><category>server</category><category>ubuntu</category><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Leonard Austin</dc:creator><pubDate>Mon, 06 Sep 2010 06:00:40 PDT</pubDate><guid isPermaLink="false">http://www.leonardaustin.com/?p=293</guid><content:encoded xmlns:content="http://purl.org/rss/1.0/modules/content/"><![CDATA[<p>So I been getting rather annoyed with CentOs recently, mainly due to the lack of PHP support above 5.1.6, especially with all the cool features of 5.3. Also I always seem to have massive trouble installing anything like Mcypt or Memcache.</p>
<p>So I thought I&#8217;d give Ubuntu a go and I&#8217;m now a convert! Everything went smoothly, not one issue or problem. The support forums are brilliant and almost all questions have already been answered. I dont know whether I&#8217;ve just got lucky (I guess only time will tell) but Ubuntu is now my first port of call when setting up a new server.</p>
<p>Below is a line by line tutorial on how I got setup with Ubuntu 10.04 Lucid. I don&#8217;t go into too much details on how to edit the files using nano or vi but you can have a look on my previous posts or online, otherwise you can sftp in using root and change the files that way, (my preferred method).</p>
<h3>Install Lamp on Ubuntu</h3>
<pre name="code" class="php">sudo tasksel install lamp-server
You will need to enter a root mysql password for mysql</pre>
<h3>Change Apache Default Web Location on Ubuntu</h3>
<p>If you need to change the default root location from /var/www to something else you can do so in the following file location. This is useful for using frameworks such as Zend Framework.</p>
<pre name="code" class="php">/etc/apache2/sites-available/default</pre>
<h3>Create file and add Fully Qualified Domain Name to Apache config (auto adds all in conf.d)</h3>
<p>Create a new file call fqdn in:</p>
<pre name="code" class="php">
/etc/apache2/conf.d/
</pre>
<p>In the top of the file write the following where mydomain.com is the domain name pointing to this server.</p>
<pre name="code" class="php">
servername mydomain.com
</pre>
<h3>Enable mod_rewrite on Ubuntu</h3>
<pre name="code" class="php">a2enmod rewrite</pre>
<p>Edit &#8220;AllowOverride None&#8221; for default site (usually the first 2 found on line 4 and line 10). Change to the following</p>
<pre name="code" class="php">AllowOverride All</pre>
<p>Found in:</p>
<pre name="code" class="php">/etc/apache2/sites-available/default</pre>
<h3>Disable Directory Listing on Ubuntu</h3>
<pre name="code" class="php">
Inside: /etc/apache2/sites-available/default
Add "-" before the word Indexes
<Directory "/var/www">
Options -Indexes
</Directory>
</pre>
<h3>Restart Apache on Ubuntu</h3>
<pre name="code" class="php">sudo /etc/init.d/apache2 restart</pre>
<h3>Install Memcached on Ubuntu</h3>
<pre name="code" class="php">apt-get install memcached
apt-get install php5-memcache</pre>
<h3>Install Mcrypt on Ubuntu</h3>
<pre name="code" class="php">sudo apt-get install php5-mcrypt</pre>
<h3>Install APC on Ubuntu</h3>
<pre name="code" class="php">
apt-get install php-apc
/etc/init.d/apache2 restart
</pre>
<p>When you get erros you need to type</p>
<pre name="code" class="php">
apt-get install re2c
apt-get install gawk
</pre>
<h3>Restart Apache</h3>
<pre name="code" class="php">sudo /etc/init.d/apache2 restart</pre>
<h3>Other Useful Info on Ubuntu</h3>
<p><strong>PHP.ini Location in Ubuntu</strong></p>
<pre name="code" class="php">/etc/php5/apache2/php.ini</pre>


<p>Related posts:<ol><li><a href='http://www.leonardaustin.com/technical/enable-mod_rewrite-in-xampp' rel='bookmark' title='Permanent Link: Enable mod_rewrite in xampp'>Enable mod_rewrite in xampp</a></li>
<li><a href='http://www.leonardaustin.com/technical/installing-memcached-on-centos-5' rel='bookmark' title='Permanent Link: Installing Memcached on Centos 5'>Installing Memcached on Centos 5</a></li>
<li><a href='http://www.leonardaustin.com/technical/how-to-install-memcached-on-xampp-on-windows-7' rel='bookmark' title='Permanent Link: How to install Memcached on Xampp on Windows 7'>How to install Memcached on Xampp on Windows 7</a></li>
<li><a href='http://www.leonardaustin.com/technical/how-to-edit-phpini-from-ssh' rel='bookmark' title='Permanent Link: How to edit php.ini from ssh'>How to edit php.ini from ssh</a></li>
<li><a href='http://www.leonardaustin.com/technical/ssh-commands' rel='bookmark' title='Permanent Link: SSH Commands'>SSH Commands</a></li>
</ol></p><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/LeonardAustin?a=jupka0fLh1A:ohWmK8wWQfs:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/LeonardAustin?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/LeonardAustin?a=jupka0fLh1A:ohWmK8wWQfs:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/LeonardAustin?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/LeonardAustin?a=jupka0fLh1A:ohWmK8wWQfs:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/LeonardAustin?i=jupka0fLh1A:ohWmK8wWQfs:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/LeonardAustin?a=jupka0fLh1A:ohWmK8wWQfs:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/LeonardAustin?i=jupka0fLh1A:ohWmK8wWQfs:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/LeonardAustin?a=jupka0fLh1A:ohWmK8wWQfs:7Q72WNTAKBA"><img src="http://feeds.feedburner.com/~ff/LeonardAustin?d=7Q72WNTAKBA" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/LeonardAustin/~4/jupka0fLh1A" height="1" width="1"/>]]></content:encoded><description>So I been getting rather annoyed with CentOs recently, mainly due to the lack of PHP support above 5.1.6, especially with all the cool features of 5.3. Also I always seem to have massive trouble installing anything like Mcypt or Memcache. So I thought I&amp;#8217;d give Ubuntu a go and I&amp;#8217;m now a convert! Everything [...]


Related posts:&lt;ol&gt;&lt;li&gt;&lt;a href='http://www.leonardaustin.com/technical/enable-mod_rewrite-in-xampp' rel='bookmark' title='Permanent Link: Enable mod_rewrite in xampp'&gt;Enable mod_rewrite in xampp&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href='http://www.leonardaustin.com/technical/installing-memcached-on-centos-5' rel='bookmark' title='Permanent Link: Installing Memcached on Centos 5'&gt;Installing Memcached on Centos 5&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href='http://www.leonardaustin.com/technical/how-to-install-memcached-on-xampp-on-windows-7' rel='bookmark' title='Permanent Link: How to install Memcached on Xampp on Windows 7'&gt;How to install Memcached on Xampp on Windows 7&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href='http://www.leonardaustin.com/technical/how-to-edit-phpini-from-ssh' rel='bookmark' title='Permanent Link: How to edit php.ini from ssh'&gt;How to edit php.ini from ssh&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href='http://www.leonardaustin.com/technical/ssh-commands' rel='bookmark' title='Permanent Link: SSH Commands'&gt;SSH Commands&lt;/a&gt;&lt;/li&gt;
&lt;/ol&gt;</description><wfw:commentRss xmlns:wfw="http://wellformedweb.org/CommentAPI/">http://www.leonardaustin.com/technical/installing-lamp-on-ubuntu/feed</wfw:commentRss><slash:comments xmlns:slash="http://purl.org/rss/1.0/modules/slash/">0</slash:comments><feedburner:origLink>http://www.leonardaustin.com/technical/installing-lamp-on-ubuntu</feedburner:origLink></item><item><title>My Twitter Updates for 2010-09-05</title><link>http://feedproxy.google.com/~r/LeonardAustin/~3/s_wuYyhBmi0/my-twitter-updates-for-2010-09-05</link><category>Micro Posts</category><category>tweets</category><category>twitter</category><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Leonard Austin</dc:creator><pubDate>Sat, 04 Sep 2010 16:00:00 PDT</pubDate><guid isPermaLink="false">http://www.leonardaustin.com/micro-posts/my-twitter-updates-for-2010-09-05</guid><content:encoded xmlns:content="http://purl.org/rss/1.0/modules/content/"><![CDATA[<ul class="aktt_tweet_digest">
<li>You are following the very proud new Mayor of Calls Landing! <a href="http://twitter.com/LeonardAustin/statuses/22913262371" class="aktt_tweet_time">#</a></li>
<li>I just ousted @<a href="http://twitter.com/iamimp" class="aktt_username">iamimp</a> as the mayor of Calls Landing on @<a href="http://twitter.com/foursquare" class="aktt_username">foursquare</a>! <a href="http://4sq.com/9PYMXB" rel="nofollow">http://4sq.com/9PYMXB</a> <a href="http://twitter.com/LeonardAustin/statuses/22913155869" class="aktt_tweet_time">#</a></li>
<li>Just tried a new beer, I like. #<a href="http://search.twitter.com/search?q=%23fb" class="aktt_hashtag">fb</a> <a href="http://twitpic.com/2kwjwm" rel="nofollow">http://twitpic.com/2kwjwm</a> <a href="http://twitter.com/LeonardAustin/statuses/22912912353" class="aktt_tweet_time">#</a></li>
<li>@<a href="http://twitter.com/bwaine" class="aktt_username">bwaine</a> Testing Ubuntu 10 LAMP setup do you know of any good tutorials? <a href="http://twitter.com/LeonardAustin/statuses/22881669395" class="aktt_tweet_time">#</a></li>
<li>So much for an early night. #<a href="http://search.twitter.com/search?q=%23fb" class="aktt_hashtag">fb</a> <a href="http://twitter.com/LeonardAustin/statuses/22844749150" class="aktt_tweet_time">#</a></li>
<li>Just got Google&#039;s Priority inbox for our Google Apps account. I&#039;ll let them emails stack up and see how it does! <a href="http://twitter.com/LeonardAustin/statuses/22752955409" class="aktt_tweet_time">#</a></li>
<li>@<a href="http://twitter.com/prmack" class="aktt_username">prmack</a> calc for windows works a treat. <a href="http://twitter.com/prmack/statuses/22637635115" class="aktt_tweet_reply">in reply to prmack</a> <a href="http://twitter.com/LeonardAustin/statuses/22637763313" class="aktt_tweet_time">#</a></li>
<li>RT @<a href="http://twitter.com/smashingmag" class="aktt_username">smashingmag</a>: 20 Must-See Business TED Talks &#8211; <a href="http://bit.ly/biJ1wU" rel="nofollow">http://bit.ly/biJ1wU</a> <a href="http://twitter.com/LeonardAustin/statuses/22534118964" class="aktt_tweet_time">#</a></li>
<li>@<a href="http://twitter.com/Rustmonster" class="aktt_username">Rustmonster</a> So it does but then I have to use Safari and I hate apple. <a href="http://twitter.com/Rustmonster/statuses/22521426373" class="aktt_tweet_reply">in reply to Rustmonster</a> <a href="http://twitter.com/LeonardAustin/statuses/22521777726" class="aktt_tweet_time">#</a></li>
<li>Just discovered Readability @<a href="http://twitter.com/arc90" class="aktt_username">arc90</a>, it&#039;s amazing! If you read anything online you should use this! <a href="http://bit.ly/anRgEQ" rel="nofollow">http://bit.ly/anRgEQ</a> <a href="http://twitter.com/LeonardAustin/statuses/22518088463" class="aktt_tweet_time">#</a></li>
<li>I&#039;m speechless: just watched the trailer for The Human Cemtipede,  <a href="http://bit.ly/beVEsC" rel="nofollow">http://bit.ly/beVEsC</a> <a href="http://twitter.com/LeonardAustin/statuses/22443931918" class="aktt_tweet_time">#</a></li>
<li>Too Few Women In Tech? Stop Blaming The Men. Or At Least Stop Blaming Me. &#8211; <a href="http://tcrn.ch/c0kira" rel="nofollow">http://tcrn.ch/c0kira</a> RT @<a href="http://twitter.com/TechCrunch" class="aktt_username">TechCrunch</a> <a href="http://twitter.com/LeonardAustin/statuses/22429494047" class="aktt_tweet_time">#</a></li>
</ul>


<p>Related posts:<ol><li><a href='http://www.leonardaustin.com/micro-posts/leonard-austins-twitter-updates-for-2010-07-11' rel='bookmark' title='Permanent Link: Leonard Austin&#8217;s Twitter Updates for 2010-07-11'>Leonard Austin&#8217;s Twitter Updates for 2010-07-11</a></li>
<li><a href='http://www.leonardaustin.com/micro-posts/leonard-austins-twitter-updates-for-2010-08-22' rel='bookmark' title='Permanent Link: My Twitter Updates for 2010-08-22'>My Twitter Updates for 2010-08-22</a></li>
<li><a href='http://www.leonardaustin.com/micro-posts/leonard-austins-twitter-updates-for-2010-08-01' rel='bookmark' title='Permanent Link: My Twitter Updates for 2010-08-01'>My Twitter Updates for 2010-08-01</a></li>
<li><a href='http://www.leonardaustin.com/micro-posts/leonard-austins-twitter-updates-for-2010-07-18' rel='bookmark' title='Permanent Link: My Twitter Updates for 2010-07-18'>My Twitter Updates for 2010-07-18</a></li>
<li><a href='http://www.leonardaustin.com/micro-posts/leonard-austins-twitter-updates-for-2010-08-29' rel='bookmark' title='Permanent Link: My Twitter Updates for 2010-08-29'>My Twitter Updates for 2010-08-29</a></li>
</ol></p><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/LeonardAustin?a=s_wuYyhBmi0:HK22Y1VBSr8:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/LeonardAustin?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/LeonardAustin?a=s_wuYyhBmi0:HK22Y1VBSr8:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/LeonardAustin?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/LeonardAustin?a=s_wuYyhBmi0:HK22Y1VBSr8:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/LeonardAustin?i=s_wuYyhBmi0:HK22Y1VBSr8:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/LeonardAustin?a=s_wuYyhBmi0:HK22Y1VBSr8:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/LeonardAustin?i=s_wuYyhBmi0:HK22Y1VBSr8:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/LeonardAustin?a=s_wuYyhBmi0:HK22Y1VBSr8:7Q72WNTAKBA"><img src="http://feeds.feedburner.com/~ff/LeonardAustin?d=7Q72WNTAKBA" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/LeonardAustin/~4/s_wuYyhBmi0" height="1" width="1"/>]]></content:encoded><description>You are following the very proud new Mayor of Calls Landing! # I just ousted @iamimp as the mayor of Calls Landing on @foursquare! http://4sq.com/9PYMXB # Just tried a new beer, I like. #fb http://twitpic.com/2kwjwm # @bwaine Testing Ubuntu 10 LAMP setup do you know of any good tutorials? # So much for an early [...]


Related posts:&lt;ol&gt;&lt;li&gt;&lt;a href='http://www.leonardaustin.com/micro-posts/leonard-austins-twitter-updates-for-2010-07-11' rel='bookmark' title='Permanent Link: Leonard Austin&amp;#8217;s Twitter Updates for 2010-07-11'&gt;Leonard Austin&amp;#8217;s Twitter Updates for 2010-07-11&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href='http://www.leonardaustin.com/micro-posts/leonard-austins-twitter-updates-for-2010-08-22' rel='bookmark' title='Permanent Link: My Twitter Updates for 2010-08-22'&gt;My Twitter Updates for 2010-08-22&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href='http://www.leonardaustin.com/micro-posts/leonard-austins-twitter-updates-for-2010-08-01' rel='bookmark' title='Permanent Link: My Twitter Updates for 2010-08-01'&gt;My Twitter Updates for 2010-08-01&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href='http://www.leonardaustin.com/micro-posts/leonard-austins-twitter-updates-for-2010-07-18' rel='bookmark' title='Permanent Link: My Twitter Updates for 2010-07-18'&gt;My Twitter Updates for 2010-07-18&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href='http://www.leonardaustin.com/micro-posts/leonard-austins-twitter-updates-for-2010-08-29' rel='bookmark' title='Permanent Link: My Twitter Updates for 2010-08-29'&gt;My Twitter Updates for 2010-08-29&lt;/a&gt;&lt;/li&gt;
&lt;/ol&gt;</description><wfw:commentRss xmlns:wfw="http://wellformedweb.org/CommentAPI/">http://www.leonardaustin.com/micro-posts/my-twitter-updates-for-2010-09-05/feed</wfw:commentRss><slash:comments xmlns:slash="http://purl.org/rss/1.0/modules/slash/">0</slash:comments><feedburner:origLink>http://www.leonardaustin.com/micro-posts/my-twitter-updates-for-2010-09-05</feedburner:origLink></item><item><title>Installing Memcached on Centos 5</title><link>http://feedproxy.google.com/~r/LeonardAustin/~3/0mpMK9pW9wY/installing-memcached-on-centos-5</link><category>Technical</category><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Leonard Austin</dc:creator><pubDate>Tue, 31 Aug 2010 03:38:43 PDT</pubDate><guid isPermaLink="false">http://www.leonardaustin.com/?p=250</guid><content:encoded xmlns:content="http://purl.org/rss/1.0/modules/content/"><![CDATA[<p>The following post is a tutorial on how to install memcached and memcache php extension on Centos 5. Before you start there are a few useful points that might come in handing if you come across any errors.</p>
<p>php.ini file is kept in</p>
<pre class="php" name="code">/etc/php.ini</pre>
<p>To find out where your php.ini file is kept you can type the following command</p>
<pre class="php" name="code">php -i | grep php.ini</pre>
<p>The default extensions loaded are kept in this folder</p>
<pre class="php" name="code">/etc/php.d/</pre>
<p>The actual php extensions are kept in</p>
<pre class="php" name="code">/usr/lib64/php/modules/</pre>
<h2>Install Memcached</h2>
<p>Enable the following repository.</p>
<p>For i386 / i686</p>
<pre class="php" name="code">rpm -Uhv http://apt.sw.be/redhat/el5/en/i386/rpmforge/RPMS/rpmforge-release-0.3.6-1.el5.rf.i386.rpm</pre>
<p>For x86_64</p>
<pre class="php" name="code">rpm -Uhv http://apt.sw.be/redhat/el5/en/x86_64/rpmforge/RPMS//rpmforge-release-0.3.6-1.el5.rf.x86_64.rpm</pre>
<p>Use the command Yum to install memcached</p>
<pre class="php" name="code">yum -y install memcached</pre>
<p>If no error popup then you have successfully installed memcache. You should then configure memcache by typing the following command.</p>
<pre class="php" name="code">vi /etc/sysconfig/memcached</pre>
<p>you should see:</p>
<pre class="php" name="code">
PORT="11211"    #define on which port to urn
USER="nobody"   #same as apache user
MAXCONN="1024"  #maximum number of connections allowed
CACHESIZE="64"   #memory used for caching
OPTIONS=""   #use for any custom options</pre>
<p>Start memcached</p>
<pre class="php" name="code">/etc/init.d/memcached start</pre>
<p>Check it running</p>
<pre class="php" name="code">/etc/init.d/memcached status</pre>
<p>or</p>
<pre class="php" name="code">netstat -anp | grep 11211</pre>
<p>To stop / restart memcache</p>
<pre class="php"  name="code">service memcached stop
service memcached restart</pre>
<p>To See Memory Memcached Slabs</p>
<pre class="php" name="code"> memcached-tool IP_ADDRESS:Port
 memcached-tool IP_ADDRESS:Port display
 memcached-tool 127.0.0.1:11211</pre>
<p>To See Memory Memcached Stats</p>
<pre class="php" name="code"> memcached-tool IP_Address:Port stats
 memcached-tool 127.0.0.1:11211 stats</pre>
<h2>Install Memcache PHP Extension</h2>
<p>Download and install lastest memcache version.</p>
<pre class="php" name="code">cd /usr/src
wget http://pecl.php.net/get/memcache-2.2.5.tgz
tar zxvf memcache-2.2.5.tgz
cd memcache-2.2.5
phpize
./configure
make
make install</pre>
<h3>&#8220;configure: error: no acceptable C compiler found in $PATH&#8221;</h3>
<p>If for some reason the above code errors saying something like you do not have a compiler installed run the following command.</p>
<pre class="php" name="code">yum install gcc</pre>
<p>Add memcache extension to php.ini file (depending on your version of PHP you may not need this step)</p>
<pre class="php" name="code">vi /etc/php.ini</pre>
<p>Press the key =&gt; i</p>
<p>Scroll don until you see a large block of code saying extension = &#8230;. Then add the following</p>
<pre class="php" name="code">extension = "memcache.so"</pre>
<p>To check memcache is correctly installed with php</p>
<pre class="php" name="code">php -i | grep memcache</pre>
<p>Finally Restart Apache</p>
<pre class="php"  name="code">/etc/init.d/apache2 restart</pre>
<h3>Special Thanks</h3>
<p>This post would not have been possible without the follow tutorials and articles. I highly recommend you check them out as they list different techniques and include other information like how to start memcache as a service.
<pre class="php" name="code">

http://www.cyberciti.biz/faq/rhel-fedora-linux-install-memcached-caching-system-rpm/

http://codelikezell.com/how-to-install-memcached-on-centos/

http://www.lullabot.com/articles/installing-memcached-redhat-or-centos

http://www.sohailriaz.com/how-to-install-memcached-with-memcache-php-extension-on-centos-5x/
</pre>


<p>Related posts:<ol><li><a href='http://www.leonardaustin.com/technical/how-to-install-memcached-on-xampp-on-windows-7' rel='bookmark' title='Permanent Link: How to install Memcached on Xampp on Windows 7'>How to install Memcached on Xampp on Windows 7</a></li>
<li><a href='http://www.leonardaustin.com/technical/installing-lamp-on-ubuntu' rel='bookmark' title='Permanent Link: Installing LAMP on Ubuntu'>Installing LAMP on Ubuntu</a></li>
</ol></p><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/LeonardAustin?a=0mpMK9pW9wY:ZemQVVSS0fg:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/LeonardAustin?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/LeonardAustin?a=0mpMK9pW9wY:ZemQVVSS0fg:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/LeonardAustin?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/LeonardAustin?a=0mpMK9pW9wY:ZemQVVSS0fg:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/LeonardAustin?i=0mpMK9pW9wY:ZemQVVSS0fg:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/LeonardAustin?a=0mpMK9pW9wY:ZemQVVSS0fg:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/LeonardAustin?i=0mpMK9pW9wY:ZemQVVSS0fg:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/LeonardAustin?a=0mpMK9pW9wY:ZemQVVSS0fg:7Q72WNTAKBA"><img src="http://feeds.feedburner.com/~ff/LeonardAustin?d=7Q72WNTAKBA" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/LeonardAustin/~4/0mpMK9pW9wY" height="1" width="1"/>]]></content:encoded><description>The following post is a tutorial on how to install memcached and memcache php extension on Centos 5. Before you start there are a few useful points that might come in handing if you come across any errors. php.ini file is kept in /etc/php.ini To find out where your php.ini file is kept you can [...]


Related posts:&lt;ol&gt;&lt;li&gt;&lt;a href='http://www.leonardaustin.com/technical/how-to-install-memcached-on-xampp-on-windows-7' rel='bookmark' title='Permanent Link: How to install Memcached on Xampp on Windows 7'&gt;How to install Memcached on Xampp on Windows 7&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href='http://www.leonardaustin.com/technical/installing-lamp-on-ubuntu' rel='bookmark' title='Permanent Link: Installing LAMP on Ubuntu'&gt;Installing LAMP on Ubuntu&lt;/a&gt;&lt;/li&gt;
&lt;/ol&gt;</description><wfw:commentRss xmlns:wfw="http://wellformedweb.org/CommentAPI/">http://www.leonardaustin.com/technical/installing-memcached-on-centos-5/feed</wfw:commentRss><slash:comments xmlns:slash="http://purl.org/rss/1.0/modules/slash/">0</slash:comments><feedburner:origLink>http://www.leonardaustin.com/technical/installing-memcached-on-centos-5</feedburner:origLink></item><item><title>My Twitter Updates for 2010-08-29</title><link>http://feedproxy.google.com/~r/LeonardAustin/~3/pEbTAAF59DI/leonard-austins-twitter-updates-for-2010-08-29</link><category>Micro Posts</category><category>tweets</category><category>twitter</category><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Leonard Austin</dc:creator><pubDate>Sat, 28 Aug 2010 16:00:00 PDT</pubDate><guid isPermaLink="false">http://www.leonardaustin.com/micro-posts/leonard-austins-twitter-updates-for-2010-08-29</guid><content:encoded xmlns:content="http://purl.org/rss/1.0/modules/content/"><![CDATA[<ul class="aktt_tweet_digest">
<li>Nice. RT @<a href="http://twitter.com/CampaignMonitor" class="aktt_username">CampaignMonitor</a>: Private offices, team lunches and ping-pong: Take a tour of the new Campaign Monitor office. <a href="http://bit.ly/dAELv9" rel="nofollow">http://bit.ly/dAELv9</a> <a href="http://twitter.com/LeonardAustin/statuses/21981517574" class="aktt_tweet_time">#</a></li>
<li>@<a href="http://twitter.com/oli_wal" class="aktt_username">oli_wal</a> See: <a href="http://bit.ly/c7lFMV" rel="nofollow">http://bit.ly/c7lFMV</a> <a href="http://twitter.com/oli_wal/statuses/21909880276" class="aktt_tweet_reply">in reply to oli_wal</a> <a href="http://twitter.com/LeonardAustin/statuses/21922244381" class="aktt_tweet_time">#</a></li>
<li>@<a href="http://twitter.com/oli_wal" class="aktt_username">oli_wal</a> The white iPhone has been delayed til Spet 30, So rumour  that they are fixing antenna issue on both. No official word thou. <a href="http://twitter.com/oli_wal/statuses/21909880276" class="aktt_tweet_reply">in reply to oli_wal</a> <a href="http://twitter.com/LeonardAustin/statuses/21922176991" class="aktt_tweet_time">#</a></li>
<li>@<a href="http://twitter.com/oli_wal" class="aktt_username">oli_wal</a> yeh signal is a issue! Would stil recommend thou, might b worth waiting til next month as may have new model out with fixed antenna <a href="http://twitter.com/oli_wal/statuses/21846731789" class="aktt_tweet_reply">in reply to oli_wal</a> <a href="http://twitter.com/LeonardAustin/statuses/21849465851" class="aktt_tweet_time">#</a></li>
<li>“Sent from my iPhone” really means Im not going to bother to proofread and correct because it would take an extra 30 seconds. via @<a href="http://twitter.com/37signals" class="aktt_username">37signals</a> <a href="http://twitter.com/LeonardAustin/statuses/21846634281" class="aktt_tweet_time">#</a></li>
</ul>


<p>Related posts:<ol><li><a href='http://www.leonardaustin.com/micro-posts/leonard-austins-twitter-updates-for-2010-08-22' rel='bookmark' title='Permanent Link: My Twitter Updates for 2010-08-22'>My Twitter Updates for 2010-08-22</a></li>
<li><a href='http://www.leonardaustin.com/micro-posts/leonard-austins-twitter-updates-for-2010-08-01' rel='bookmark' title='Permanent Link: My Twitter Updates for 2010-08-01'>My Twitter Updates for 2010-08-01</a></li>
<li><a href='http://www.leonardaustin.com/micro-posts/leonard-austins-twitter-updates-for-2010-07-25' rel='bookmark' title='Permanent Link: My Twitter Updates for 2010-07-25'>My Twitter Updates for 2010-07-25</a></li>
<li><a href='http://www.leonardaustin.com/micro-posts/leonard-austins-twitter-updates-for-2010-07-11' rel='bookmark' title='Permanent Link: Leonard Austin&#8217;s Twitter Updates for 2010-07-11'>Leonard Austin&#8217;s Twitter Updates for 2010-07-11</a></li>
<li><a href='http://www.leonardaustin.com/micro-posts/leonard-austins-twitter-updates-for-2010-07-04' rel='bookmark' title='Permanent Link: Leonard Austin&#8217;s Twitter Updates for 2010-07-04'>Leonard Austin&#8217;s Twitter Updates for 2010-07-04</a></li>
</ol></p><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/LeonardAustin?a=pEbTAAF59DI:Pfm7_msiUN4:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/LeonardAustin?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/LeonardAustin?a=pEbTAAF59DI:Pfm7_msiUN4:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/LeonardAustin?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/LeonardAustin?a=pEbTAAF59DI:Pfm7_msiUN4:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/LeonardAustin?i=pEbTAAF59DI:Pfm7_msiUN4:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/LeonardAustin?a=pEbTAAF59DI:Pfm7_msiUN4:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/LeonardAustin?i=pEbTAAF59DI:Pfm7_msiUN4:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/LeonardAustin?a=pEbTAAF59DI:Pfm7_msiUN4:7Q72WNTAKBA"><img src="http://feeds.feedburner.com/~ff/LeonardAustin?d=7Q72WNTAKBA" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/LeonardAustin/~4/pEbTAAF59DI" height="1" width="1"/>]]></content:encoded><description>Nice. RT @CampaignMonitor: Private offices, team lunches and ping-pong: Take a tour of the new Campaign Monitor office. http://bit.ly/dAELv9 # @oli_wal See: http://bit.ly/c7lFMV in reply to oli_wal # @oli_wal The white iPhone has been delayed til Spet 30, So rumour that they are fixing antenna issue on both. No official word thou. in reply to [...]


Related posts:&lt;ol&gt;&lt;li&gt;&lt;a href='http://www.leonardaustin.com/micro-posts/leonard-austins-twitter-updates-for-2010-08-22' rel='bookmark' title='Permanent Link: My Twitter Updates for 2010-08-22'&gt;My Twitter Updates for 2010-08-22&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href='http://www.leonardaustin.com/micro-posts/leonard-austins-twitter-updates-for-2010-08-01' rel='bookmark' title='Permanent Link: My Twitter Updates for 2010-08-01'&gt;My Twitter Updates for 2010-08-01&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href='http://www.leonardaustin.com/micro-posts/leonard-austins-twitter-updates-for-2010-07-25' rel='bookmark' title='Permanent Link: My Twitter Updates for 2010-07-25'&gt;My Twitter Updates for 2010-07-25&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href='http://www.leonardaustin.com/micro-posts/leonard-austins-twitter-updates-for-2010-07-11' rel='bookmark' title='Permanent Link: Leonard Austin&amp;#8217;s Twitter Updates for 2010-07-11'&gt;Leonard Austin&amp;#8217;s Twitter Updates for 2010-07-11&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href='http://www.leonardaustin.com/micro-posts/leonard-austins-twitter-updates-for-2010-07-04' rel='bookmark' title='Permanent Link: Leonard Austin&amp;#8217;s Twitter Updates for 2010-07-04'&gt;Leonard Austin&amp;#8217;s Twitter Updates for 2010-07-04&lt;/a&gt;&lt;/li&gt;
&lt;/ol&gt;</description><wfw:commentRss xmlns:wfw="http://wellformedweb.org/CommentAPI/">http://www.leonardaustin.com/micro-posts/leonard-austins-twitter-updates-for-2010-08-29/feed</wfw:commentRss><slash:comments xmlns:slash="http://purl.org/rss/1.0/modules/slash/">0</slash:comments><feedburner:origLink>http://www.leonardaustin.com/micro-posts/leonard-austins-twitter-updates-for-2010-08-29</feedburner:origLink></item><item><title>How to install Memcached on Xampp on Windows 7</title><link>http://feedproxy.google.com/~r/LeonardAustin/~3/ol1tF23ffQM/how-to-install-memcached-on-xampp-on-windows-7</link><category>Technical</category><category>cache</category><category>memcache</category><category>memcached</category><category>PHP</category><category>server</category><category>xampp</category><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Leonard Austin</dc:creator><pubDate>Thu, 26 Aug 2010 14:48:03 PDT</pubDate><guid isPermaLink="false">http://www.leonardaustin.com/?p=243</guid><content:encoded xmlns:content="http://purl.org/rss/1.0/modules/content/"><![CDATA[<p>For one of my Zend Framework web applications I&#8217;m going to install memcached. I am currently using file cache however think memcached is a much better way to go. This post is one in a series:</p>
<ol>
<li>Installing Memcached on Windows 7 and Xampp</li>
<li>Setting up Memcached Cache in Zend Framework</li>
<li>Installing Memcached on Centos 5.</li>
</ol>
<h2><strong>Installing Memcached on Xampp and Windows 7</strong></h2>
<p><strong>1a. Go to your php.ini file usually located in C:/xampp/php/php.ini</strong><br />
find this line:</p>
<pre name="code" class="php">
;extension=php_memcache.dll
</pre>
<p>and replace it with:</p>
<pre name="code" class="php">
extension=php_memcache.dll
</pre>
<p><strong>1b. If you cannot find this line simply add the following line to below where all the ;extension= lines. </strong></p>
<pre name="code" class="php">
extension=php_memcache.dll
</pre>
<p><strong>2.  Add the following to just below the new line</strong></p>
<pre name="code" class="php">
[Memcache]
memcache.allow_failover = 1
memcache.max_failover_attempts=20
memcache.chunk_size =8192
memcache.default_port = 11211
</pre>
<p><strong>3. Download the necessary php_memecache.dll file from the following location.</strong></p>
<pre name="code" class="php">

http://downloads.php.net/pierre/
</pre>
<p>For windows 7 I used the following file:</p>
<pre name="code" class="php">

http://downloads.php.net/pierre/php_memcache-cvs-20090703-5.3-VC6-x86.zip
</pre>
<p><strong>4. Unzip the php_memcache.dll file and put it into your php ext folder. Usually C:/xampp/php/ext/</strong></p>
<p><strong>5. Download memcached for windows here (make sure it&#8217;s the </strong><strong>win32 binary)</strong><strong>:</strong></p>
<pre name="code" class="php">

http://code.jellycan.com/memcached/
</pre>
<p><strong>6. Unzip and put the memcache.exe file into a desired directory (e.g. c:/memcached/)</strong></p>
<p><strong>7. Open command line in Windows Administrator Mode.</strong></p>
<p>Click start, type in &#8216;Search programs and Files&#8217; box, wait for the program cmd.exe to appear, right hand click on the icon and select run as administrator</p>
<p><strong>8. Install the memcache service</strong></p>
<p>Type the following into the command line</p>
<pre name="code" class="php">
c:\memcached\memcached.exe -d install
</pre>
<p>If you dont get any errors it means it&#8217;s worked.</p>
<p><strong>9. Start memcached</strong></p>
<p>Type the following into the command line</p>
<pre name="code" class="php">
c:\memcached\memcached.exe -d start, or net start “memcached Server”
</pre>
<p><strong>10. Restart Xampp Apache</strong></p>
<p><strong>11. Test Memcache</strong></p>
<p>Create a php file and paste the following code. Then go to the page. If you do not see any errors then it has worked.</p>
<pre name="code" class="php">
&lt;?php
$memcache = new Memcache;
$memcache-&gt;connect('localhost', 11211) or die ("Could not connect");

$version = $memcache-&gt;getVersion();
echo "Server's version: ".$version."&lt;br/&gt;\n";

$tmp_object = new stdClass;
$tmp_object-&gt;str_attr = 'test';
$tmp_object-&gt;int_attr = 123;

$memcache-&gt;set('key', $tmp_object, false, 10) or 
die ("Failed to save data at the server");
echo "Store data in the cache (data will expire in 10 seconds)
&lt;br/&gt;\n";

$get_result = $memcache-&gt;get('key');
echo "Data from the cache:&lt;br/&gt;\n";

var_dump($get_result);
?&gt;</pre>
<p>12. Just in case it doesn&#8217;t work: One other thing I did was to run the C:/memcached/memcached.exe file as administrator. This opens the ports on the windows firewall which might solve some problems.</p>


<p>Related posts:<ol><li><a href='http://www.leonardaustin.com/technical/installing-memcached-on-centos-5' rel='bookmark' title='Permanent Link: Installing Memcached on Centos 5'>Installing Memcached on Centos 5</a></li>
<li><a href='http://www.leonardaustin.com/technical/enable-mod_rewrite-in-xampp' rel='bookmark' title='Permanent Link: Enable mod_rewrite in xampp'>Enable mod_rewrite in xampp</a></li>
<li><a href='http://www.leonardaustin.com/technical/getting-htaccess-to-work-on-windows-apache' rel='bookmark' title='Permanent Link: Getting .htaccess to work on windows apache'>Getting .htaccess to work on windows apache</a></li>
<li><a href='http://www.leonardaustin.com/technical/safari-3-for-windows-xp-finally' rel='bookmark' title='Permanent Link: Safari 3 for Windows XP &#8211; Finally'>Safari 3 for Windows XP &#8211; Finally</a></li>
<li><a href='http://www.leonardaustin.com/technical/installing-lamp-on-ubuntu' rel='bookmark' title='Permanent Link: Installing LAMP on Ubuntu'>Installing LAMP on Ubuntu</a></li>
</ol></p><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/LeonardAustin?a=ol1tF23ffQM:XByn1Yxa0cU:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/LeonardAustin?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/LeonardAustin?a=ol1tF23ffQM:XByn1Yxa0cU:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/LeonardAustin?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/LeonardAustin?a=ol1tF23ffQM:XByn1Yxa0cU:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/LeonardAustin?i=ol1tF23ffQM:XByn1Yxa0cU:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/LeonardAustin?a=ol1tF23ffQM:XByn1Yxa0cU:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/LeonardAustin?i=ol1tF23ffQM:XByn1Yxa0cU:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/LeonardAustin?a=ol1tF23ffQM:XByn1Yxa0cU:7Q72WNTAKBA"><img src="http://feeds.feedburner.com/~ff/LeonardAustin?d=7Q72WNTAKBA" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/LeonardAustin/~4/ol1tF23ffQM" height="1" width="1"/>]]></content:encoded><description>For one of my Zend Framework web applications I&amp;#8217;m going to install memcached. I am currently using file cache however think memcached is a much better way to go. This post is one in a series: Installing Memcached on Windows 7 and Xampp Setting up Memcached Cache in Zend Framework Installing Memcached on Centos 5. [...]


Related posts:&lt;ol&gt;&lt;li&gt;&lt;a href='http://www.leonardaustin.com/technical/installing-memcached-on-centos-5' rel='bookmark' title='Permanent Link: Installing Memcached on Centos 5'&gt;Installing Memcached on Centos 5&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href='http://www.leonardaustin.com/technical/enable-mod_rewrite-in-xampp' rel='bookmark' title='Permanent Link: Enable mod_rewrite in xampp'&gt;Enable mod_rewrite in xampp&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href='http://www.leonardaustin.com/technical/getting-htaccess-to-work-on-windows-apache' rel='bookmark' title='Permanent Link: Getting .htaccess to work on windows apache'&gt;Getting .htaccess to work on windows apache&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href='http://www.leonardaustin.com/technical/safari-3-for-windows-xp-finally' rel='bookmark' title='Permanent Link: Safari 3 for Windows XP &amp;#8211; Finally'&gt;Safari 3 for Windows XP &amp;#8211; Finally&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href='http://www.leonardaustin.com/technical/installing-lamp-on-ubuntu' rel='bookmark' title='Permanent Link: Installing LAMP on Ubuntu'&gt;Installing LAMP on Ubuntu&lt;/a&gt;&lt;/li&gt;
&lt;/ol&gt;</description><wfw:commentRss xmlns:wfw="http://wellformedweb.org/CommentAPI/">http://www.leonardaustin.com/technical/how-to-install-memcached-on-xampp-on-windows-7/feed</wfw:commentRss><slash:comments xmlns:slash="http://purl.org/rss/1.0/modules/slash/">0</slash:comments><feedburner:origLink>http://www.leonardaustin.com/technical/how-to-install-memcached-on-xampp-on-windows-7</feedburner:origLink></item><item><title>Enable mod_rewrite in xampp</title><link>http://feedproxy.google.com/~r/LeonardAustin/~3/tt2Tv5De1m0/enable-mod_rewrite-in-xampp</link><category>Technical</category><category>apache</category><category>htaccess</category><category>PHP</category><category>server</category><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Leonard Austin</dc:creator><pubDate>Wed, 25 Aug 2010 03:07:26 PDT</pubDate><guid isPermaLink="false">http://www.leonardaustin.com/?p=232</guid><content:encoded xmlns:content="http://purl.org/rss/1.0/modules/content/"><![CDATA[<p>For some reason my install of XAMPP didn&#8217;t have mod_rewrite automatically enabled? Not really sure why  but basically below are the instructions on how to enable .htaccess mod_rewrite in xampp.</p>
<p><strong>1. Go to the directory of installation &lt;C:\xampp&gt;\apache\conf<br />
</strong></p>
<p><strong>2. Open and edit httpd.conf in a text editor</strong></p>
<p><strong>3. Find the line which contains</strong></p>
<pre name="code" class="php">
#LoadModule rewrite_module modules/mod_rewrite.so
</pre>
<p>and (uncomment) change to</p>
<pre name="code" class="php">
LoadModule rewrite_module modules/mod_rewrite.so
</pre>
<p><strong>4. Find all occurrences of </strong></p>
<pre name="code" class="php">
AllowOverride None
</pre>
<p>and change to</p>
<pre name="code" class="php">
AllowOverride All
</pre>
<p>I think it appears 2 or 3 times on the configuration file.</p>
<p><strong>5. Restart xampp</strong></p>
<p><strong><span style="font-weight: normal;">That&#8217;s it you should be good to go.</span></strong></p>


<p>Related posts:<ol><li><a href='http://www.leonardaustin.com/technical/installing-lamp-on-ubuntu' rel='bookmark' title='Permanent Link: Installing LAMP on Ubuntu'>Installing LAMP on Ubuntu</a></li>
<li><a href='http://www.leonardaustin.com/technical/how-to-install-memcached-on-xampp-on-windows-7' rel='bookmark' title='Permanent Link: How to install Memcached on Xampp on Windows 7'>How to install Memcached on Xampp on Windows 7</a></li>
<li><a href='http://www.leonardaustin.com/technical/how-to-edit-phpini-from-ssh' rel='bookmark' title='Permanent Link: How to edit php.ini from ssh'>How to edit php.ini from ssh</a></li>
<li><a href='http://www.leonardaustin.com/technical/ssh-commands' rel='bookmark' title='Permanent Link: SSH Commands'>SSH Commands</a></li>
</ol></p><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/LeonardAustin?a=tt2Tv5De1m0:GEXP-0oyn10:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/LeonardAustin?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/LeonardAustin?a=tt2Tv5De1m0:GEXP-0oyn10:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/LeonardAustin?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/LeonardAustin?a=tt2Tv5De1m0:GEXP-0oyn10:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/LeonardAustin?i=tt2Tv5De1m0:GEXP-0oyn10:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/LeonardAustin?a=tt2Tv5De1m0:GEXP-0oyn10:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/LeonardAustin?i=tt2Tv5De1m0:GEXP-0oyn10:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/LeonardAustin?a=tt2Tv5De1m0:GEXP-0oyn10:7Q72WNTAKBA"><img src="http://feeds.feedburner.com/~ff/LeonardAustin?d=7Q72WNTAKBA" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/LeonardAustin/~4/tt2Tv5De1m0" height="1" width="1"/>]]></content:encoded><description>For some reason my install of XAMPP didn&amp;#8217;t have mod_rewrite automatically enabled? Not really sure why  but basically below are the instructions on how to enable .htaccess mod_rewrite in xampp. 1. Go to the directory of installation &amp;#60;C:\xampp&amp;#62;\apache\conf 2. Open and edit httpd.conf in a text editor 3. Find the line which contains #LoadModule rewrite_module modules/mod_rewrite.so and (uncomment) [...]


Related posts:&lt;ol&gt;&lt;li&gt;&lt;a href='http://www.leonardaustin.com/technical/installing-lamp-on-ubuntu' rel='bookmark' title='Permanent Link: Installing LAMP on Ubuntu'&gt;Installing LAMP on Ubuntu&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href='http://www.leonardaustin.com/technical/how-to-install-memcached-on-xampp-on-windows-7' rel='bookmark' title='Permanent Link: How to install Memcached on Xampp on Windows 7'&gt;How to install Memcached on Xampp on Windows 7&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href='http://www.leonardaustin.com/technical/how-to-edit-phpini-from-ssh' rel='bookmark' title='Permanent Link: How to edit php.ini from ssh'&gt;How to edit php.ini from ssh&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href='http://www.leonardaustin.com/technical/ssh-commands' rel='bookmark' title='Permanent Link: SSH Commands'&gt;SSH Commands&lt;/a&gt;&lt;/li&gt;
&lt;/ol&gt;</description><wfw:commentRss xmlns:wfw="http://wellformedweb.org/CommentAPI/">http://www.leonardaustin.com/technical/enable-mod_rewrite-in-xampp/feed</wfw:commentRss><slash:comments xmlns:slash="http://purl.org/rss/1.0/modules/slash/">0</slash:comments><feedburner:origLink>http://www.leonardaustin.com/technical/enable-mod_rewrite-in-xampp</feedburner:origLink></item><item><title>My Twitter Updates for 2010-08-22</title><link>http://feedproxy.google.com/~r/LeonardAustin/~3/tteTAUg1cVo/leonard-austins-twitter-updates-for-2010-08-22</link><category>Micro Posts</category><category>tweets</category><category>twitter</category><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Leonard Austin</dc:creator><pubDate>Sat, 21 Aug 2010 16:00:00 PDT</pubDate><guid isPermaLink="false">http://www.leonardaustin.com/micro-posts/leonard-austins-twitter-updates-for-2010-08-22</guid><content:encoded xmlns:content="http://purl.org/rss/1.0/modules/content/"><![CDATA[<ul class="aktt_tweet_digest">
<li>Love the music from the new Clover Advert.  Paul Pritchard &#8211; Steps to Success. <a href="http://youtu.be/lKqI10LAhfs" rel="nofollow">http://youtu.be/lKqI10LAhfs</a> <a href="http://twitter.com/leonardaustin/statuses/21773392147" class="aktt_tweet_time">#</a></li>
<li>New Study: iPhone Owners Have the Most Sex Partners  <a href="http://bit.ly/9i3RNt" rel="nofollow">http://bit.ly/9i3RNt</a> @<a href="http://twitter.com/joemewis" class="aktt_username">joemewis</a> @Jay_Jsmith85 <a href="http://twitter.com/leonardaustin/statuses/21772431433" class="aktt_tweet_time">#</a></li>
<li>RT @<a href="http://twitter.com/johncusack" class="aktt_username">johncusack</a> <a href="http://nyti.ms/ceQ9xh" rel="nofollow">http://nyti.ms/ceQ9xh</a> guess if you pay $42 million you can kill who you like. <a href="http://twitter.com/johncusack/statuses/21730727061" class="aktt_tweet_reply">in reply to johncusack</a> <a href="http://twitter.com/leonardaustin/statuses/21740980054" class="aktt_tweet_time">#</a></li>
<li>Unbelievable and Amazing Non Photoshopped Photo: <a href="http://twitpic.com/2gfh8c" rel="nofollow">http://twitpic.com/2gfh8c</a> <a href="http://twitter.com/leonardaustin/statuses/21654255727" class="aktt_tweet_time">#</a></li>
<li>It weird how walking on the left hand side of the road instead of the right can change your entire life. #<a href="http://search.twitter.com/search?q=%23fb" class="aktt_hashtag">fb</a> #profoundmoment #<a href="http://search.twitter.com/search?q=%23drunkupdate" class="aktt_hashtag">drunkupdate</a> <a href="http://twitter.com/leonardaustin/statuses/21623716873" class="aktt_tweet_time">#</a></li>
<li>End of a night out, the only way to end it is the gym (@ Pure Gym) <a href="http://4sq.com/7bxr1O" rel="nofollow">http://4sq.com/7bxr1O</a> <a href="http://twitter.com/leonardaustin/statuses/21617362543" class="aktt_tweet_time">#</a></li>
<li>Made it a hatrick! (@ Wetherspoons) <a href="http://4sq.com/aSEjeh" rel="nofollow">http://4sq.com/aSEjeh</a> <a href="http://twitter.com/leonardaustin/statuses/21600206953" class="aktt_tweet_time">#</a></li>
<li><a href="http://twitpic.com/2g5abn" rel="nofollow">http://twitpic.com/2g5abn</a> &#8211; Invasion of the Giant Rats in Bradford: <a href="http://twitter.com/leonardaustin/statuses/21570067670" class="aktt_tweet_time">#</a></li>
<li>Invasion of the Giant Rats in Bradford: <a href="http://bit.ly/d4BV4N" rel="nofollow">http://bit.ly/d4BV4N</a>   <a href="http://twitpic.com/2g5abn" rel="nofollow">http://twitpic.com/2g5abn</a> <a href="http://twitter.com/leonardaustin/statuses/21569955927" class="aktt_tweet_time">#</a></li>
<li>@<a href="http://twitter.com/oli_wal" class="aktt_username">oli_wal</a> yep I messed the back-up, one side is shorter than the other. But out of sight out of mind. #<a href="http://search.twitter.com/search?q=%23fb" class="aktt_hashtag">fb</a> <a href="http://twitter.com/oli_wal/statuses/21381775101" class="aktt_tweet_reply">in reply to oli_wal</a> <a href="http://twitter.com/leonardaustin/statuses/21433043178" class="aktt_tweet_time">#</a></li>
<li>Just cut my own hair for the first time ever, used an electric razor. It&#039;s shorter than expected. #<a href="http://search.twitter.com/search?q=%23fb" class="aktt_hashtag">fb</a> <a href="http://twitter.com/leonardaustin/statuses/21353273846" class="aktt_tweet_time">#</a></li>
<li>@<a href="http://twitter.com/prmack" class="aktt_username">prmack</a> I completely agree, they should hire you as a external consultant. <a href="http://twitter.com/prmack/statuses/21240909797" class="aktt_tweet_reply">in reply to prmack</a> <a href="http://twitter.com/leonardaustin/statuses/21315063502" class="aktt_tweet_time">#</a></li>
<li>Foursquare having downtime is much more annoying than twitter being down. <a href="http://twitter.com/leonardaustin/statuses/21234492883" class="aktt_tweet_time">#</a></li>
</ul>


<p>Related posts:<ol><li><a href='http://www.leonardaustin.com/micro-posts/leonard-austins-twitter-updates-for-2010-08-29' rel='bookmark' title='Permanent Link: My Twitter Updates for 2010-08-29'>My Twitter Updates for 2010-08-29</a></li>
<li><a href='http://www.leonardaustin.com/micro-posts/my-twitter-updates-for-2010-09-05' rel='bookmark' title='Permanent Link: My Twitter Updates for 2010-09-05'>My Twitter Updates for 2010-09-05</a></li>
<li><a href='http://www.leonardaustin.com/micro-posts/leonard-austins-twitter-updates-for-2010-07-11' rel='bookmark' title='Permanent Link: Leonard Austin&#8217;s Twitter Updates for 2010-07-11'>Leonard Austin&#8217;s Twitter Updates for 2010-07-11</a></li>
<li><a href='http://www.leonardaustin.com/micro-posts/leonard-austins-twitter-updates-for-2010-08-01' rel='bookmark' title='Permanent Link: My Twitter Updates for 2010-08-01'>My Twitter Updates for 2010-08-01</a></li>
<li><a href='http://www.leonardaustin.com/micro-posts/leonard-austins-twitter-updates-for-2010-07-18' rel='bookmark' title='Permanent Link: My Twitter Updates for 2010-07-18'>My Twitter Updates for 2010-07-18</a></li>
</ol></p><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/LeonardAustin?a=tteTAUg1cVo:GsCDy5wkEGo:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/LeonardAustin?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/LeonardAustin?a=tteTAUg1cVo:GsCDy5wkEGo:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/LeonardAustin?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/LeonardAustin?a=tteTAUg1cVo:GsCDy5wkEGo:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/LeonardAustin?i=tteTAUg1cVo:GsCDy5wkEGo:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/LeonardAustin?a=tteTAUg1cVo:GsCDy5wkEGo:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/LeonardAustin?i=tteTAUg1cVo:GsCDy5wkEGo:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/LeonardAustin?a=tteTAUg1cVo:GsCDy5wkEGo:7Q72WNTAKBA"><img src="http://feeds.feedburner.com/~ff/LeonardAustin?d=7Q72WNTAKBA" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/LeonardAustin/~4/tteTAUg1cVo" height="1" width="1"/>]]></content:encoded><description>Love the music from the new Clover Advert. Paul Pritchard &amp;#8211; Steps to Success. http://youtu.be/lKqI10LAhfs # New Study: iPhone Owners Have the Most Sex Partners http://bit.ly/9i3RNt @joemewis @Jay_Jsmith85 # RT @johncusack http://nyti.ms/ceQ9xh guess if you pay $42 million you can kill who you like. in reply to johncusack # Unbelievable and Amazing Non Photoshopped Photo: [...]


Related posts:&lt;ol&gt;&lt;li&gt;&lt;a href='http://www.leonardaustin.com/micro-posts/leonard-austins-twitter-updates-for-2010-08-29' rel='bookmark' title='Permanent Link: My Twitter Updates for 2010-08-29'&gt;My Twitter Updates for 2010-08-29&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href='http://www.leonardaustin.com/micro-posts/my-twitter-updates-for-2010-09-05' rel='bookmark' title='Permanent Link: My Twitter Updates for 2010-09-05'&gt;My Twitter Updates for 2010-09-05&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href='http://www.leonardaustin.com/micro-posts/leonard-austins-twitter-updates-for-2010-07-11' rel='bookmark' title='Permanent Link: Leonard Austin&amp;#8217;s Twitter Updates for 2010-07-11'&gt;Leonard Austin&amp;#8217;s Twitter Updates for 2010-07-11&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href='http://www.leonardaustin.com/micro-posts/leonard-austins-twitter-updates-for-2010-08-01' rel='bookmark' title='Permanent Link: My Twitter Updates for 2010-08-01'&gt;My Twitter Updates for 2010-08-01&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href='http://www.leonardaustin.com/micro-posts/leonard-austins-twitter-updates-for-2010-07-18' rel='bookmark' title='Permanent Link: My Twitter Updates for 2010-07-18'&gt;My Twitter Updates for 2010-07-18&lt;/a&gt;&lt;/li&gt;
&lt;/ol&gt;</description><wfw:commentRss xmlns:wfw="http://wellformedweb.org/CommentAPI/">http://www.leonardaustin.com/micro-posts/leonard-austins-twitter-updates-for-2010-08-22/feed</wfw:commentRss><slash:comments xmlns:slash="http://purl.org/rss/1.0/modules/slash/">0</slash:comments><feedburner:origLink>http://www.leonardaustin.com/micro-posts/leonard-austins-twitter-updates-for-2010-08-22</feedburner:origLink></item><item><title>My Twitter Updates for 2010-08-15</title><link>http://feedproxy.google.com/~r/LeonardAustin/~3/8JCZ3Hbpo2A/leonard-austins-twitter-updates-for-2010-08-15</link><category>Micro Posts</category><category>tweets</category><category>twitter</category><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Leonard Austin</dc:creator><pubDate>Sat, 14 Aug 2010 16:00:00 PDT</pubDate><guid isPermaLink="false">http://www.leonardaustin.com/micro-posts/leonard-austins-twitter-updates-for-2010-08-15</guid><content:encoded xmlns:content="http://purl.org/rss/1.0/modules/content/"><![CDATA[<ul class="aktt_tweet_digest">
<li>I just earned 2000 Quizzle fan points on the new Name That Movie Quizzle iPhone app. Beat that! #<a href="http://search.twitter.com/search?q=%23Quizzle" class="aktt_hashtag">Quizzle</a> <a href="http://bit.ly/csx6Pz" rel="nofollow">http://bit.ly/csx6Pz</a> <a href="http://twitter.com/leonardaustin/statuses/21184235771" class="aktt_tweet_time">#</a></li>
<li>I&#039;m at Welford Media Ltd (21 Wharf Street, Leeds). <a href="http://4sq.com/dkJnCR" rel="nofollow">http://4sq.com/dkJnCR</a> <a href="http://twitter.com/leonardaustin/statuses/21161374045" class="aktt_tweet_time">#</a></li>
<li>WordPress course day over before 5pm as well. Happy days. (@ Old Broadcasting House) <a href="http://4sq.com/92gt5Q" rel="nofollow">http://4sq.com/92gt5Q</a> <a href="http://twitter.com/leonardaustin/statuses/21074508120" class="aktt_tweet_time">#</a></li>
<li>WordPress course today. (@ Old Broadcasting House) <a href="http://4sq.com/92gt5Q" rel="nofollow">http://4sq.com/92gt5Q</a> <a href="http://twitter.com/leonardaustin/statuses/21048038303" class="aktt_tweet_time">#</a></li>
<li>Spending a penny now costs 40p. #<a href="http://search.twitter.com/search?q=%23fb" class="aktt_hashtag">fb</a> <a href="http://twitpic.com/2dfdu1" rel="nofollow">http://twitpic.com/2dfdu1</a> <a href="http://twitter.com/leonardaustin/statuses/20803805291" class="aktt_tweet_time">#</a></li>
<li>First thing you have to do when you arrive in Whitby. #<a href="http://search.twitter.com/search?q=%23fishandchips" class="aktt_hashtag">fishandchips</a> (@ The Magpie Cafe) <a href="http://4sq.com/aVCWP8" rel="nofollow">http://4sq.com/aVCWP8</a> <a href="http://twitter.com/leonardaustin/statuses/20794272742" class="aktt_tweet_time">#</a></li>
<li>The A-Team, Karate Kid or Toy Story 3D, only got time to see 1 at the cinema. I think it&#039;s going to have to been Toy Story. <a href="http://twitter.com/leonardaustin/statuses/20647935029" class="aktt_tweet_time">#</a></li>
<li>I just ousted Emma C. as the mayor of City Island on @<a href="http://twitter.com/foursquare" class="aktt_username">foursquare</a>! <a href="http://4sq.com/cyGTul" rel="nofollow">http://4sq.com/cyGTul</a> <a href="http://twitter.com/leonardaustin/statuses/20594328504" class="aktt_tweet_time">#</a></li>
<li>Still bloody shut (@ Kadas) <a href="http://4sq.com/9UrUKC" rel="nofollow">http://4sq.com/9UrUKC</a> <a href="http://twitter.com/leonardaustin/statuses/20588405480" class="aktt_tweet_time">#</a></li>
</ul>


<p>Related posts:<ol><li><a href='http://www.leonardaustin.com/micro-posts/leonard-austins-twitter-updates-for-2010-07-18' rel='bookmark' title='Permanent Link: My Twitter Updates for 2010-07-18'>My Twitter Updates for 2010-07-18</a></li>
<li><a href='http://www.leonardaustin.com/micro-posts/leonard-austins-twitter-updates-for-2010-08-29' rel='bookmark' title='Permanent Link: My Twitter Updates for 2010-08-29'>My Twitter Updates for 2010-08-29</a></li>
<li><a href='http://www.leonardaustin.com/micro-posts/leonard-austins-twitter-updates-for-2010-06-20' rel='bookmark' title='Permanent Link: Leonard Austin&#8217;s Twitter Updates for 2010-06-20'>Leonard Austin&#8217;s Twitter Updates for 2010-06-20</a></li>
<li><a href='http://www.leonardaustin.com/micro-posts/leonard-austins-twitter-updates-for-2010-08-08' rel='bookmark' title='Permanent Link: My Twitter Updates for 2010-08-08'>My Twitter Updates for 2010-08-08</a></li>
<li><a href='http://www.leonardaustin.com/micro-posts/leonard-austins-twitter-updates-for-2010-08-22' rel='bookmark' title='Permanent Link: My Twitter Updates for 2010-08-22'>My Twitter Updates for 2010-08-22</a></li>
</ol></p><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/LeonardAustin?a=8JCZ3Hbpo2A:2DuhCjtrutY:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/LeonardAustin?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/LeonardAustin?a=8JCZ3Hbpo2A:2DuhCjtrutY:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/LeonardAustin?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/LeonardAustin?a=8JCZ3Hbpo2A:2DuhCjtrutY:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/LeonardAustin?i=8JCZ3Hbpo2A:2DuhCjtrutY:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/LeonardAustin?a=8JCZ3Hbpo2A:2DuhCjtrutY:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/LeonardAustin?i=8JCZ3Hbpo2A:2DuhCjtrutY:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/LeonardAustin?a=8JCZ3Hbpo2A:2DuhCjtrutY:7Q72WNTAKBA"><img src="http://feeds.feedburner.com/~ff/LeonardAustin?d=7Q72WNTAKBA" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/LeonardAustin/~4/8JCZ3Hbpo2A" height="1" width="1"/>]]></content:encoded><description>I just earned 2000 Quizzle fan points on the new Name That Movie Quizzle iPhone app. Beat that! #Quizzle http://bit.ly/csx6Pz # I&amp;#039;m at Welford Media Ltd (21 Wharf Street, Leeds). http://4sq.com/dkJnCR # WordPress course day over before 5pm as well. Happy days. (@ Old Broadcasting House) http://4sq.com/92gt5Q # WordPress course today. (@ Old Broadcasting House) [...]


Related posts:&lt;ol&gt;&lt;li&gt;&lt;a href='http://www.leonardaustin.com/micro-posts/leonard-austins-twitter-updates-for-2010-07-18' rel='bookmark' title='Permanent Link: My Twitter Updates for 2010-07-18'&gt;My Twitter Updates for 2010-07-18&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href='http://www.leonardaustin.com/micro-posts/leonard-austins-twitter-updates-for-2010-08-29' rel='bookmark' title='Permanent Link: My Twitter Updates for 2010-08-29'&gt;My Twitter Updates for 2010-08-29&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href='http://www.leonardaustin.com/micro-posts/leonard-austins-twitter-updates-for-2010-06-20' rel='bookmark' title='Permanent Link: Leonard Austin&amp;#8217;s Twitter Updates for 2010-06-20'&gt;Leonard Austin&amp;#8217;s Twitter Updates for 2010-06-20&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href='http://www.leonardaustin.com/micro-posts/leonard-austins-twitter-updates-for-2010-08-08' rel='bookmark' title='Permanent Link: My Twitter Updates for 2010-08-08'&gt;My Twitter Updates for 2010-08-08&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href='http://www.leonardaustin.com/micro-posts/leonard-austins-twitter-updates-for-2010-08-22' rel='bookmark' title='Permanent Link: My Twitter Updates for 2010-08-22'&gt;My Twitter Updates for 2010-08-22&lt;/a&gt;&lt;/li&gt;
&lt;/ol&gt;</description><wfw:commentRss xmlns:wfw="http://wellformedweb.org/CommentAPI/">http://www.leonardaustin.com/micro-posts/leonard-austins-twitter-updates-for-2010-08-15/feed</wfw:commentRss><slash:comments xmlns:slash="http://purl.org/rss/1.0/modules/slash/">0</slash:comments><feedburner:origLink>http://www.leonardaustin.com/micro-posts/leonard-austins-twitter-updates-for-2010-08-15</feedburner:origLink></item><item><title>My Twitter Updates for 2010-08-08</title><link>http://feedproxy.google.com/~r/LeonardAustin/~3/7VS82AI0mYs/leonard-austins-twitter-updates-for-2010-08-08</link><category>Micro Posts</category><category>tweets</category><category>twitter</category><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Leonard Austin</dc:creator><pubDate>Sat, 07 Aug 2010 16:00:00 PDT</pubDate><guid isPermaLink="false">http://www.leonardaustin.com/micro-posts/leonard-austins-twitter-updates-for-2010-08-08</guid><content:encoded xmlns:content="http://purl.org/rss/1.0/modules/content/"><![CDATA[<ul class="aktt_tweet_digest">
<li>I&#039;m at The Reform (12-14 Merrion St, Leeds). <a href="http://4sq.com/dh9YA4" rel="nofollow">http://4sq.com/dh9YA4</a> <a href="http://twitter.com/leonardaustin/statuses/20586454672" class="aktt_tweet_time">#</a></li>
<li>I&#039;m at Distrikt Bar (7 Duncan Street, Leeds). <a href="http://4sq.com/9msMEa" rel="nofollow">http://4sq.com/9msMEa</a> <a href="http://twitter.com/leonardaustin/statuses/20583011655" class="aktt_tweet_time">#</a></li>
<li>I&#039;m at Covent Garden Market (41 The Market, King St, London). <a href="http://4sq.com/cfl3Ch" rel="nofollow">http://4sq.com/cfl3Ch</a> <a href="http://twitter.com/leonardaustin/statuses/20392105717" class="aktt_tweet_time">#</a></li>
<li>Walking along the pavement playing on my phone, stepped in this. <a href="http://twitpic.com/2btebk" rel="nofollow">http://twitpic.com/2btebk</a> <a href="http://twitter.com/leonardaustin/statuses/20386544135" class="aktt_tweet_time">#</a></li>
<li>Currently looking at Argentinian fillet steaks online.  <a href="http://bit.ly/cexOBQ" rel="nofollow">http://bit.ly/cexOBQ</a> #<a href="http://search.twitter.com/search?q=%23betterthanporn" class="aktt_hashtag">betterthanporn</a> <a href="http://twitter.com/leonardaustin/statuses/20206317787" class="aktt_tweet_time">#</a></li>
<li>Went to the pub instead of the gym. I think it was right choice not sure I&#039;m going to think that 2morrow morning. #<a href="http://search.twitter.com/search?q=%23fb" class="aktt_hashtag">fb</a> <a href="http://twitter.com/leonardaustin/statuses/20171036529" class="aktt_tweet_time">#</a></li>
<li>Fighting the beer belly! (@ Pure Gym) <a href="http://4sq.com/7bxr1O" rel="nofollow">http://4sq.com/7bxr1O</a> <a href="http://twitter.com/leonardaustin/statuses/20086428485" class="aktt_tweet_time">#</a></li>
</ul>


<p>Related posts:<ol><li><a href='http://www.leonardaustin.com/micro-posts/leonard-austins-twitter-updates-for-2010-07-18' rel='bookmark' title='Permanent Link: My Twitter Updates for 2010-07-18'>My Twitter Updates for 2010-07-18</a></li>
<li><a href='http://www.leonardaustin.com/micro-posts/my-twitter-updates-for-2010-09-05' rel='bookmark' title='Permanent Link: My Twitter Updates for 2010-09-05'>My Twitter Updates for 2010-09-05</a></li>
<li><a href='http://www.leonardaustin.com/micro-posts/leonard-austins-twitter-updates-for-2010-07-11' rel='bookmark' title='Permanent Link: Leonard Austin&#8217;s Twitter Updates for 2010-07-11'>Leonard Austin&#8217;s Twitter Updates for 2010-07-11</a></li>
<li><a href='http://www.leonardaustin.com/micro-posts/leonard-austins-twitter-updates-for-2010-08-01' rel='bookmark' title='Permanent Link: My Twitter Updates for 2010-08-01'>My Twitter Updates for 2010-08-01</a></li>
<li><a href='http://www.leonardaustin.com/micro-posts/leonard-austins-twitter-updates-for-2010-06-27' rel='bookmark' title='Permanent Link: Leonard Austin&#8217;s Twitter Updates for 2010-06-27'>Leonard Austin&#8217;s Twitter Updates for 2010-06-27</a></li>
</ol></p><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/LeonardAustin?a=7VS82AI0mYs:ThFsCe8BFqs:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/LeonardAustin?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/LeonardAustin?a=7VS82AI0mYs:ThFsCe8BFqs:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/LeonardAustin?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/LeonardAustin?a=7VS82AI0mYs:ThFsCe8BFqs:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/LeonardAustin?i=7VS82AI0mYs:ThFsCe8BFqs:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/LeonardAustin?a=7VS82AI0mYs:ThFsCe8BFqs:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/LeonardAustin?i=7VS82AI0mYs:ThFsCe8BFqs:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/LeonardAustin?a=7VS82AI0mYs:ThFsCe8BFqs:7Q72WNTAKBA"><img src="http://feeds.feedburner.com/~ff/LeonardAustin?d=7Q72WNTAKBA" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/LeonardAustin/~4/7VS82AI0mYs" height="1" width="1"/>]]></content:encoded><description>I&amp;#039;m at The Reform (12-14 Merrion St, Leeds). http://4sq.com/dh9YA4 # I&amp;#039;m at Distrikt Bar (7 Duncan Street, Leeds). http://4sq.com/9msMEa # I&amp;#039;m at Covent Garden Market (41 The Market, King St, London). http://4sq.com/cfl3Ch # Walking along the pavement playing on my phone, stepped in this. http://twitpic.com/2btebk # Currently looking at Argentinian fillet steaks online. http://bit.ly/cexOBQ #betterthanporn [...]


Related posts:&lt;ol&gt;&lt;li&gt;&lt;a href='http://www.leonardaustin.com/micro-posts/leonard-austins-twitter-updates-for-2010-07-18' rel='bookmark' title='Permanent Link: My Twitter Updates for 2010-07-18'&gt;My Twitter Updates for 2010-07-18&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href='http://www.leonardaustin.com/micro-posts/my-twitter-updates-for-2010-09-05' rel='bookmark' title='Permanent Link: My Twitter Updates for 2010-09-05'&gt;My Twitter Updates for 2010-09-05&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href='http://www.leonardaustin.com/micro-posts/leonard-austins-twitter-updates-for-2010-07-11' rel='bookmark' title='Permanent Link: Leonard Austin&amp;#8217;s Twitter Updates for 2010-07-11'&gt;Leonard Austin&amp;#8217;s Twitter Updates for 2010-07-11&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href='http://www.leonardaustin.com/micro-posts/leonard-austins-twitter-updates-for-2010-08-01' rel='bookmark' title='Permanent Link: My Twitter Updates for 2010-08-01'&gt;My Twitter Updates for 2010-08-01&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href='http://www.leonardaustin.com/micro-posts/leonard-austins-twitter-updates-for-2010-06-27' rel='bookmark' title='Permanent Link: Leonard Austin&amp;#8217;s Twitter Updates for 2010-06-27'&gt;Leonard Austin&amp;#8217;s Twitter Updates for 2010-06-27&lt;/a&gt;&lt;/li&gt;
&lt;/ol&gt;</description><wfw:commentRss xmlns:wfw="http://wellformedweb.org/CommentAPI/">http://www.leonardaustin.com/micro-posts/leonard-austins-twitter-updates-for-2010-08-08/feed</wfw:commentRss><slash:comments xmlns:slash="http://purl.org/rss/1.0/modules/slash/">0</slash:comments><feedburner:origLink>http://www.leonardaustin.com/micro-posts/leonard-austins-twitter-updates-for-2010-08-08</feedburner:origLink></item><item><title>My Twitter Updates for 2010-08-01</title><link>http://feedproxy.google.com/~r/LeonardAustin/~3/eyhZKCP9dBE/leonard-austins-twitter-updates-for-2010-08-01</link><category>Micro Posts</category><category>tweets</category><category>twitter</category><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Leonard Austin</dc:creator><pubDate>Sat, 31 Jul 2010 16:00:00 PDT</pubDate><guid isPermaLink="false">http://www.leonardaustin.com/micro-posts/leonard-austins-twitter-updates-for-2010-08-01</guid><content:encoded xmlns:content="http://purl.org/rss/1.0/modules/content/"><![CDATA[<ul class="aktt_tweet_digest">
<li>@<a href="http://twitter.com/bwaine" class="aktt_username">bwaine</a> It&#039;s pretty easy mate if you like I&#039;ll send over an example. My biggest issue is getting unit tests working with modules. <a href="http://twitter.com/bwaine/statuses/20000154387" class="aktt_tweet_reply">in reply to bwaine</a> <a href="http://twitter.com/leonardaustin/statuses/20014824409" class="aktt_tweet_time">#</a></li>
<li>Out in Sheffield tonight, any recommendations? #<a href="http://search.twitter.com/search?q=%23fb" class="aktt_hashtag">fb</a> <a href="http://twitter.com/leonardaustin/statuses/19931330677" class="aktt_tweet_time">#</a></li>
<li>24-hour drinking culture &#039;failed&#039; &#8211; <a href="http://www.bbc.co.uk/news/uk-10784060" rel="nofollow">http://www.bbc.co.uk/news/uk-10784060</a> <a href="http://twitter.com/leonardaustin/statuses/19723663098" class="aktt_tweet_time">#</a></li>
<li>@<a href="http://twitter.com/oli_wal" class="aktt_username">oli_wal</a> why is James Holt called James Holly on 4sq? <a href="http://twitter.com/leonardaustin/statuses/19691827877" class="aktt_tweet_time">#</a></li>
<li>Watching MI3 couldnt remember @<a href="http://twitter.com/simonpegg" class="aktt_username">simonpegg</a> first name so called him Sean of the Pegg. People knew who I was talking about. <a href="http://twitter.com/leonardaustin/statuses/19689387958" class="aktt_tweet_time">#</a></li>
<li>@<a href="http://twitter.com/ClaireMal1" class="aktt_username">ClaireMal1</a> can&#039;t believe you&#039;re following ed! <a href="http://twitter.com/leonardaustin/statuses/19685754416" class="aktt_tweet_time">#</a></li>
<li>@<a href="http://twitter.com/ed_liddell" class="aktt_username">ed_liddell</a> living the dream. You still up for our eurotrip? <a href="http://twitter.com/ed_liddell/statuses/19683245336" class="aktt_tweet_reply">in reply to ed_liddell</a> <a href="http://twitter.com/leonardaustin/statuses/19685638788" class="aktt_tweet_time">#</a></li>
<li>I&#039;m at Midnight Bell (101 Water Lane, Leeds). <a href="http://4sq.com/cweEZn" rel="nofollow">http://4sq.com/cweEZn</a> <a href="http://twitter.com/leonardaustin/statuses/19683852536" class="aktt_tweet_time">#</a></li>
<li>Just became mayor of wetherspoons, Leeds train station. Got to be proud of that. #<a href="http://search.twitter.com/search?q=%23fb" class="aktt_hashtag">fb</a> <a href="http://twitter.com/leonardaustin/statuses/19679117742" class="aktt_tweet_time">#</a></li>
<li>Looks awesome, probably one of the reasons I&#039;ll end up getting an ipad. <a href="http://bit.ly/aGQWCa" rel="nofollow">http://bit.ly/aGQWCa</a> <a href="http://twitter.com/leonardaustin/statuses/19644051678" class="aktt_tweet_time">#</a></li>
<li>25 Lessons I’ve Learned In 50 Years: <a href="http://bit.ly/9uVTvV" rel="nofollow">http://bit.ly/9uVTvV</a> (my favourite &quot;Experience life before you settle down&quot;) <a href="http://twitter.com/leonardaustin/statuses/19599261358" class="aktt_tweet_time">#</a></li>
<li>Why do they have 12 counters and only 3 staff. There is a huge queue! (@ Post Office) <a href="http://4sq.com/9RJxJ0" rel="nofollow">http://4sq.com/9RJxJ0</a> <a href="http://twitter.com/leonardaustin/statuses/19563848365" class="aktt_tweet_time">#</a></li>
</ul>


<p>Related posts:<ol><li><a href='http://www.leonardaustin.com/micro-posts/my-twitter-updates-for-2010-09-05' rel='bookmark' title='Permanent Link: My Twitter Updates for 2010-09-05'>My Twitter Updates for 2010-09-05</a></li>
<li><a href='http://www.leonardaustin.com/micro-posts/leonard-austins-twitter-updates-for-2010-07-18' rel='bookmark' title='Permanent Link: My Twitter Updates for 2010-07-18'>My Twitter Updates for 2010-07-18</a></li>
<li><a href='http://www.leonardaustin.com/micro-posts/leonard-austins-twitter-updates-for-2010-07-25' rel='bookmark' title='Permanent Link: My Twitter Updates for 2010-07-25'>My Twitter Updates for 2010-07-25</a></li>
<li><a href='http://www.leonardaustin.com/micro-posts/leonard-austins-twitter-updates-for-2010-08-22' rel='bookmark' title='Permanent Link: My Twitter Updates for 2010-08-22'>My Twitter Updates for 2010-08-22</a></li>
<li><a href='http://www.leonardaustin.com/micro-posts/leonard-austins-twitter-updates-for-2010-07-11' rel='bookmark' title='Permanent Link: Leonard Austin&#8217;s Twitter Updates for 2010-07-11'>Leonard Austin&#8217;s Twitter Updates for 2010-07-11</a></li>
</ol></p><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/LeonardAustin?a=eyhZKCP9dBE:bIxl3my8edk:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/LeonardAustin?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/LeonardAustin?a=eyhZKCP9dBE:bIxl3my8edk:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/LeonardAustin?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/LeonardAustin?a=eyhZKCP9dBE:bIxl3my8edk:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/LeonardAustin?i=eyhZKCP9dBE:bIxl3my8edk:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/LeonardAustin?a=eyhZKCP9dBE:bIxl3my8edk:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/LeonardAustin?i=eyhZKCP9dBE:bIxl3my8edk:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/LeonardAustin?a=eyhZKCP9dBE:bIxl3my8edk:7Q72WNTAKBA"><img src="http://feeds.feedburner.com/~ff/LeonardAustin?d=7Q72WNTAKBA" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/LeonardAustin/~4/eyhZKCP9dBE" height="1" width="1"/>]]></content:encoded><description>@bwaine It&amp;#039;s pretty easy mate if you like I&amp;#039;ll send over an example. My biggest issue is getting unit tests working with modules. in reply to bwaine # Out in Sheffield tonight, any recommendations? #fb # 24-hour drinking culture &amp;#039;failed&amp;#039; &amp;#8211; http://www.bbc.co.uk/news/uk-10784060 # @oli_wal why is James Holt called James Holly on 4sq? # Watching [...]


Related posts:&lt;ol&gt;&lt;li&gt;&lt;a href='http://www.leonardaustin.com/micro-posts/my-twitter-updates-for-2010-09-05' rel='bookmark' title='Permanent Link: My Twitter Updates for 2010-09-05'&gt;My Twitter Updates for 2010-09-05&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href='http://www.leonardaustin.com/micro-posts/leonard-austins-twitter-updates-for-2010-07-18' rel='bookmark' title='Permanent Link: My Twitter Updates for 2010-07-18'&gt;My Twitter Updates for 2010-07-18&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href='http://www.leonardaustin.com/micro-posts/leonard-austins-twitter-updates-for-2010-07-25' rel='bookmark' title='Permanent Link: My Twitter Updates for 2010-07-25'&gt;My Twitter Updates for 2010-07-25&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href='http://www.leonardaustin.com/micro-posts/leonard-austins-twitter-updates-for-2010-08-22' rel='bookmark' title='Permanent Link: My Twitter Updates for 2010-08-22'&gt;My Twitter Updates for 2010-08-22&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href='http://www.leonardaustin.com/micro-posts/leonard-austins-twitter-updates-for-2010-07-11' rel='bookmark' title='Permanent Link: Leonard Austin&amp;#8217;s Twitter Updates for 2010-07-11'&gt;Leonard Austin&amp;#8217;s Twitter Updates for 2010-07-11&lt;/a&gt;&lt;/li&gt;
&lt;/ol&gt;</description><wfw:commentRss xmlns:wfw="http://wellformedweb.org/CommentAPI/">http://www.leonardaustin.com/micro-posts/leonard-austins-twitter-updates-for-2010-08-01/feed</wfw:commentRss><slash:comments xmlns:slash="http://purl.org/rss/1.0/modules/slash/">0</slash:comments><feedburner:origLink>http://www.leonardaustin.com/micro-posts/leonard-austins-twitter-updates-for-2010-08-01</feedburner:origLink></item></channel></rss>
