<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	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/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title>munday, tue...</title>
	<atom:link href="http://munday.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://munday.wordpress.com</link>
	<description>Just another manic munday</description>
	<lastBuildDate>Mon, 04 Jan 2010 12:02:54 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='munday.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://s2.wp.com/i/buttonw-com.png</url>
		<title>munday, tue...</title>
		<link>http://munday.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://munday.wordpress.com/osd.xml" title="munday, tue..." />
	<atom:link rel='hub' href='http://munday.wordpress.com/?pushpress=hub'/>
		<item>
		<title>Manually Installing PHPUnit with MAMP on Mac OS X 10.6 Snow Leopard</title>
		<link>http://munday.wordpress.com/2010/01/04/manually-installing-phpunit-with-mamp-on-mac-os-x-10-6-snow-leopard/</link>
		<comments>http://munday.wordpress.com/2010/01/04/manually-installing-phpunit-with-mamp-on-mac-os-x-10-6-snow-leopard/#comments</comments>
		<pubDate>Mon, 04 Jan 2010 12:02:54 +0000</pubDate>
		<dc:creator>Ian Munday</dc:creator>
				<category><![CDATA[Tech]]></category>

		<guid isPermaLink="false">http://munday.wordpress.com/?p=60</guid>
		<description><![CDATA[1. Get a copy of the latest version of PHPUnit (PHPUnit 3.4.6 &#8211; 4 Jan 2010) from http://pear.phpunit.de/get/ 2. Extract your folder to your Desktop. 3. Edit &#8220;phpunit.php&#8221; found in &#8220;PHPUnit-3.4.6/PHPUnit-3.4.6/&#8220;. 3.1. Scroll near to the bottom and replace &#8220;@php_bin@&#8221; with &#8220;/Applications/MAMP/bin/php5/bin/php&#8220;. 3.2. Save as &#8220;phpunit&#8221; (no extension) in &#8220;/usr/local/bin/&#8220;, or save to your Desktop, [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=munday.wordpress.com&amp;blog=345440&amp;post=60&amp;subd=munday&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<div style="background-color:#f2f2f2;border-left-width:3px;border-left-style:solid;border-left-color:#999999;margin-left:10px;padding-left:5px;font-family:courier;">
<pre>
</pre>
</div>
<p>1. Get a copy of the latest version of PHPUnit (PHPUnit 3.4.6 &#8211; 4 Jan 2010) from <a href="http://pear.phpunit.de/get/">http://pear.phpunit.de/get/</a></p>
<p>2. Extract your folder to your Desktop.</p>
<p>3. Edit &#8220;<strong>phpunit.php</strong>&#8221; found in &#8220;<strong>PHPUnit-3.4.6/PHPUnit-3.4.6/</strong>&#8220;.</p>
<p>3.1. Scroll near to the bottom and replace &#8220;<strong>@php_bin@</strong>&#8221; with &#8220;<strong>/Applications/MAMP/bin/php5/bin/php</strong>&#8220;.</p>
<p>3.2. Save as &#8220;<strong>phpunit</strong>&#8221; (no extension) in &#8220;<strong>/usr/local/bin/</strong>&#8220;, or save to your Desktop, then copy to &#8220;<strong>/usr/local/bin/</strong>&#8220;.</p>
<p>3.3. Make the <strong>phpunit</strong> file executable by typing the following in the Terminal:</p>
<div style="background-color:#f2f2f2;border-left-width:3px;border-left-style:solid;border-left-color:#999999;margin-left:10px;padding-left:5px;font-family:courier;">
<pre>
sudo chmod +x /usr/local/bin/phpunit
</pre>
</div>
<p>4. Edit &#8220;<strong>PHP.php</strong>&#8221; found in &#8220;<strong>PHPUnit-3.4.6/PHPUnit-3.4.6/PHPUnit/Util/</strong>&#8220;.</p>
<p>4.1. Scroll about 3/4 near the bottom and replace &#8220;<strong>@php_bin@</strong>&#8221; with &#8220;<strong>/Applications/MAMP/bin/php5/bin/php</strong>&#8220;.</p>
<p>4.2. Save the file and copy the &#8220;<strong>PHPUnit-3.4.1/PHPUnit-3.4.1/PHPUnit</strong>&#8221; folder to &#8220;<strong>/usr/lib/php/</strong>&#8220;.</p>
<p>5. Test it out by making a test anywhere, here is some sample code you can plonk into &#8220;<strong>SampleTest.php</strong>&#8220;.</p>
<div style="background-color:#f2f2f2;border-left-width:3px;border-left-style:solid;border-left-color:#999999;margin-left:10px;padding-left:5px;font-family:courier;">
<pre>
&lt;?php
class SampleTest extends PHPUnit_Framework_TestCase
{
    public function testHowsit() {
        $this-&gt;assertTrue(1 == 1);
    }
}
?&gt;
</pre>
</div>
<p>6. Open up your Terminal to where your test (SampleTest.php) is located.</p>
<p>7. Run the test using: </p>
<div style="background-color:#f2f2f2;border-left-width:3px;border-left-style:solid;border-left-color:#999999;margin-left:10px;padding-left:5px;font-family:courier;">
<pre>
/usr/local/bin/phpunit SampleTest.php
</pre>
</div>
<p>You should see the following:</p>
<div style="background-color:#f2f2f2;border-left-width:3px;border-left-style:solid;border-left-color:#999999;margin-left:10px;padding-left:5px;font-family:courier;">
<pre>
PHPUnit 3.4.6 by Sebastian Bergmann.

.

Time: 0 seconds, Memory: 5.75Mb

OK (1 test, 1 assertion)
</pre>
</div>
<p><em>[Credit goes to TigerMunky at <a href="http://tmshweetness.blogspot.com/2009/10/manually-installing-phpunit-with-mamp.html">http://tmshweetness.blogspot.com/2009/10/manually-installing-phpunit-with-mamp.html</a>]</em></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/munday.wordpress.com/60/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/munday.wordpress.com/60/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/munday.wordpress.com/60/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/munday.wordpress.com/60/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/munday.wordpress.com/60/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/munday.wordpress.com/60/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/munday.wordpress.com/60/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/munday.wordpress.com/60/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/munday.wordpress.com/60/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/munday.wordpress.com/60/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/munday.wordpress.com/60/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/munday.wordpress.com/60/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/munday.wordpress.com/60/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/munday.wordpress.com/60/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=munday.wordpress.com&amp;blog=345440&amp;post=60&amp;subd=munday&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://munday.wordpress.com/2010/01/04/manually-installing-phpunit-with-mamp-on-mac-os-x-10-6-snow-leopard/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/464533c5e67187880f04e781418cdcff?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">munday</media:title>
		</media:content>
	</item>
		<item>
		<title>Adding Expires headers with Apache Module mod_expires</title>
		<link>http://munday.wordpress.com/2009/12/16/adding-expires-headers-with-apache-module-mod_expires/</link>
		<comments>http://munday.wordpress.com/2009/12/16/adding-expires-headers-with-apache-module-mod_expires/#comments</comments>
		<pubDate>Wed, 16 Dec 2009 10:37:14 +0000</pubDate>
		<dc:creator>Ian Munday</dc:creator>
				<category><![CDATA[Performance]]></category>
		<category><![CDATA[Tech]]></category>

		<guid isPermaLink="false">http://munday.wordpress.com/?p=42</guid>
		<description><![CDATA[As part of my efforts to improve the performance www.epiphanyrisknetwork.com, I wanted to set Expires headers on components so that they become cacheable and avoid unnecessary HTTP requests on subsequent page views. (Ref: http://developer.yahoo.com/performance/rules.html#expires) I&#8217;ll be improving this over time, but so far I have the following in my .htaccess file: &#60;IfModule mod_expires.c&#62; ExpiresActive on [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=munday.wordpress.com&amp;blog=345440&amp;post=42&amp;subd=munday&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>As part of my efforts to improve the performance <a href="http://www.epiphanyrisknetwork.com/">www.epiphanyrisknetwork.com</a>, I wanted to set Expires headers on components so that they become cacheable and avoid unnecessary HTTP requests on subsequent page views.  <em>(Ref: <a href="http://developer.yahoo.com/performance/rules.html#expires">http://developer.yahoo.com/performance/rules.html#expires</a>)</em></p>
<p>I&#8217;ll be improving this over time, but so far I have the following in my .htaccess file:</p>
<div style="background-color:#f2f2f2;border-left-width:3px;border-left-style:solid;border-left-color:#999999;margin-left:10px;padding-left:5px;font-family:courier;">
<pre>
&lt;IfModule mod_expires.c&gt;
  ExpiresActive on
  ExpiresByType image/gif "access plus 1 months"
  ExpiresByType image/png "access plus 1 months"
  ExpiresByType image/jpeg "access plus 1 months"
  ExpiresByType image/ico "access plus 1 months"
  ExpiresDefault "access plus 1 days"
&lt;/IfModule&gt;
</pre>
</div>
<p>Let&#8217;s break this down&#8230;</p>
<div style="background-color:#f2f2f2;border-left-width:3px;border-left-style:solid;border-left-color:#999999;margin-left:10px;padding-left:5px;font-family:courier;">
<pre>
  ExpiresActive on
</pre>
</div>
<p>The first directive simply informs that the module should be used.</p>
<div style="background-color:#f2f2f2;border-left-width:3px;border-left-style:solid;border-left-color:#999999;margin-left:10px;padding-left:5px;font-family:courier;">
<pre>
  ExpiresByType image/gif "access plus 1 months"
  ExpiresByType image/png "access plus 1 months"
  ExpiresByType image/jpeg "access plus 1 months"
  ExpiresByType image/ico "access plus 1 months"
</pre>
</div>
<p>The second through to fifth directives deals with specific image types.  So the first of these informs that GIFs should be reloaded from the web server one month after the document was last accessed.</p>
<div style="background-color:#f2f2f2;border-left-width:3px;border-left-style:solid;border-left-color:#999999;margin-left:10px;padding-left:5px;font-family:courier;">
<pre>
  ExpiresDefault "access plus 1 days"
</pre>
</div>
<p>The sixth and final directive informs that all document types that are not specified should be reloaded one day from the current time.</p>
<p>The time parameters in the quotes may be <strong>access</strong> (<strong>A</strong>) or <strong>modification</strong> (<strong>M</strong>).  Setting <strong>now</strong> is also valid, this is the same as access. Setting A or access produces the same result.  It is preferrable to use access over modification because modification only can be applied to files that come from disk, apache does not figure out modification time for other objects and omits the header in these cases.</p>
<p>The <strong>plus</strong> key is not needed and is only optional to make the configuration files easier to read.</p>
<p>The time length is specified in seconds by default, or any of the following keys can be used:</p>
<ul>
<li>years</li>
<li>months</li>
<li>weeks</li>
<li>days</li>
<li>hours</li>
<li>minutes</li>
<li>seconds</li>
</ul>
<p>So:</p>
<div style="background-color:#f2f2f2;border-left-width:3px;border-left-style:solid;border-left-color:#999999;margin-left:10px;padding-left:5px;font-family:courier;">
<pre>
  ExpiresDefault "access plus 2 minutes"
</pre>
</div>
<p>is equal to setting the slightly more cryptic:</p>
<div style="background-color:#f2f2f2;border-left-width:3px;border-left-style:solid;border-left-color:#999999;margin-left:10px;padding-left:5px;font-family:courier;">
<pre>
  ExpiresDefault "A120"
</pre>
</div>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/munday.wordpress.com/42/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/munday.wordpress.com/42/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/munday.wordpress.com/42/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/munday.wordpress.com/42/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/munday.wordpress.com/42/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/munday.wordpress.com/42/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/munday.wordpress.com/42/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/munday.wordpress.com/42/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/munday.wordpress.com/42/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/munday.wordpress.com/42/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/munday.wordpress.com/42/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/munday.wordpress.com/42/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/munday.wordpress.com/42/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/munday.wordpress.com/42/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=munday.wordpress.com&amp;blog=345440&amp;post=42&amp;subd=munday&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://munday.wordpress.com/2009/12/16/adding-expires-headers-with-apache-module-mod_expires/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/464533c5e67187880f04e781418cdcff?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">munday</media:title>
		</media:content>
	</item>
		<item>
		<title>Post Office and Roxburghe Incompetence</title>
		<link>http://munday.wordpress.com/2009/10/13/post-office-and-roxburghe-incompetence/</link>
		<comments>http://munday.wordpress.com/2009/10/13/post-office-and-roxburghe-incompetence/#comments</comments>
		<pubDate>Tue, 13 Oct 2009 12:39:18 +0000</pubDate>
		<dc:creator>Ian Munday</dc:creator>
				<category><![CDATA[What really bugs me]]></category>

		<guid isPermaLink="false">http://munday.wordpress.com/?p=38</guid>
		<description><![CDATA[I hope no one else falls foul of the incompetence of the Post Office and Roxburghe debt collection. After cancelling, within my rights, a new telephone line installation with the Post Office, they have demonstrated a total inability to properly close the account.  Despite numerous phone calls over half a year, and reassurances from their [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=munday.wordpress.com&amp;blog=345440&amp;post=38&amp;subd=munday&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>I hope no one else falls foul of the incompetence of the <a href="http://www.postoffice.co.uk/" target="_blank">Post Office</a> and <a href="http://www.roxburghe.com/" target="_blank">Roxburghe</a> debt collection.</p>
<p>After cancelling, within my rights, a new telephone line installation with the Post Office, they have demonstrated a total inability to properly close the account.  Despite numerous phone calls over half a year, and reassurances from their staff that the account is closed and no debt is owed, and I still receive automated overdue bill notifications.  When asked for written confirmation of the account closure staff are &#8220;unable&#8221; to fulfil such a basic request.  Come on Post Office, this is pathetic &#8211; get your basic business processes functioning!</p>
<p>The situation was then compounded by starting to receive letters from a debt collection company called <a href="http://www.roxburghe.com/" target="_blank">Roxburghe</a>.  Roxburghe are unhelpful, unprofessional and insulting in their correspondence .  (Misspelling their own company name on correspondence certainly doesn&#8217;t boost credibility.)  The <a href="http://www.roxburghe.com/faq.php#ah5" target="_blank">statement on their FAQ</a> page that, &#8220;Roxburghe will always treat you in a courteous and professional manner,&#8221; is meaningless.  Companies which operate in the manner in which they do should not be in business.  An organisation such as the Post Office will only damage their reputation by employing the services of such an organisation.  However the Post Office only has itself to blame for incorrectly passing customer details like mine on to such agencies.</p>
<p>That is all I have to say on the matter.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/munday.wordpress.com/38/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/munday.wordpress.com/38/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/munday.wordpress.com/38/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/munday.wordpress.com/38/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/munday.wordpress.com/38/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/munday.wordpress.com/38/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/munday.wordpress.com/38/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/munday.wordpress.com/38/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/munday.wordpress.com/38/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/munday.wordpress.com/38/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/munday.wordpress.com/38/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/munday.wordpress.com/38/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/munday.wordpress.com/38/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/munday.wordpress.com/38/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=munday.wordpress.com&amp;blog=345440&amp;post=38&amp;subd=munday&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://munday.wordpress.com/2009/10/13/post-office-and-roxburghe-incompetence/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/464533c5e67187880f04e781418cdcff?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">munday</media:title>
		</media:content>
	</item>
		<item>
		<title>How To Install PEAR in Mac OS X Leopard</title>
		<link>http://munday.wordpress.com/2008/02/08/how-to-install-pear-in-mac-os-x-leopard/</link>
		<comments>http://munday.wordpress.com/2008/02/08/how-to-install-pear-in-mac-os-x-leopard/#comments</comments>
		<pubDate>Fri, 08 Feb 2008 14:21:59 +0000</pubDate>
		<dc:creator>Ian Munday</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://munday.wordpress.com/?p=35</guid>
		<description><![CDATA[Unlike previous version of OS X, Leopard doesn’t come with PHP&#8217;s PEAR repository installed by default. Luckily, installing is quick and painless. From a command line: curl http://pear.php.net/go-pear &#62; go-pear.php sudo php -q go-pear.php (Just press enter to select all the default choices.) Next we need to modify our php.ini file to include the new [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=munday.wordpress.com&amp;blog=345440&amp;post=35&amp;subd=munday&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Unlike previous version of OS X, Leopard doesn’t come with PHP&#8217;s PEAR repository installed by default. Luckily, installing is quick and painless.</p>
<p>From a command line:</p>
<div style="background-color:#f2f2f2;border-left-width:3px;border-left-style:solid;border-left-color:#999999;margin-left:10px;padding-left:5px;font-family:courier;">curl http://pear.php.net/go-pear &gt; go-pear.php</div>
<div style="background-color:#f2f2f2;border-left-width:3px;border-left-style:solid;border-left-color:#999999;margin-left:10px;padding-left:5px;font-family:courier;">sudo php -q go-pear.php</div>
<p>(Just press enter to select all the default choices.)</p>
<p>Next we need to modify our php.ini file to include the new PEAR files:</p>
<div style="background-color:#f2f2f2;border-left-width:3px;border-left-style:solid;border-left-color:#999999;margin-left:10px;padding-left:5px;font-family:courier;">sudo cp /etc/php.ini.default /etc/php.ini</div>
<p>Edit /etc/php.ini and change</p>
<div style="background-color:#f2f2f2;border-left-width:3px;border-left-style:solid;border-left-color:#999999;margin-left:10px;padding-left:5px;font-family:courier;">;include_path = “.:/php/includes”</div>
<p>to read</p>
<div style="background-color:#f2f2f2;border-left-width:3px;border-left-style:solid;border-left-color:#999999;margin-left:10px;padding-left:5px;font-family:courier;">include_path = “.:/usr/share/pear”</div>
<p>Restart Apache and you’re done!</p>
<p>[Adapted from <a href="http://clickontyler.com/blog/2008/01/how-to-install-pear-in-mac-os-x-leopard/">http://clickontyler.com/blog/2008/01/how-to-install-pear-in-mac-os-x-leopard/</a>]</p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/munday.wordpress.com/35/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/munday.wordpress.com/35/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/munday.wordpress.com/35/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/munday.wordpress.com/35/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/munday.wordpress.com/35/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/munday.wordpress.com/35/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/munday.wordpress.com/35/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/munday.wordpress.com/35/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/munday.wordpress.com/35/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/munday.wordpress.com/35/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/munday.wordpress.com/35/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/munday.wordpress.com/35/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/munday.wordpress.com/35/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/munday.wordpress.com/35/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/munday.wordpress.com/35/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/munday.wordpress.com/35/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=munday.wordpress.com&amp;blog=345440&amp;post=35&amp;subd=munday&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://munday.wordpress.com/2008/02/08/how-to-install-pear-in-mac-os-x-leopard/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/464533c5e67187880f04e781418cdcff?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">munday</media:title>
		</media:content>
	</item>
		<item>
		<title>Setting up Tomcat as a service on Linux</title>
		<link>http://munday.wordpress.com/2007/07/27/setting-tomcat-up-as-a-service/</link>
		<comments>http://munday.wordpress.com/2007/07/27/setting-tomcat-up-as-a-service/#comments</comments>
		<pubDate>Fri, 27 Jul 2007 16:23:07 +0000</pubDate>
		<dc:creator>Ian Munday</dc:creator>
				<category><![CDATA[Tech]]></category>
		<category><![CDATA[Work]]></category>

		<guid isPermaLink="false">http://munday.wordpress.com/2007/07/27/setting-tomcat-up-as-a-service/</guid>
		<description><![CDATA[If you want Tomcat to start automatically on boot then you need to set it up as a service. To do this you need to copy the code below and save it as a file called tomcat in the folder /etc/init.d: # This is the init script for starting up the # Jakarta Tomcat server [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=munday.wordpress.com&amp;blog=345440&amp;post=34&amp;subd=munday&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>If you want Tomcat to start automatically on boot then you need to set it up as a service. To do this you need to copy the code below and save it as a file called tomcat in the folder /etc/init.d:</p>
<div style="background-color:#F2F2F2;border-left:3px solid #999999;margin-left:10px;padding-left:5px;font-family:courier;">
# This is the init script for starting up the<br />
# Jakarta Tomcat server<br />
#<br />
# chkconfig: 345 91 10<br />
# description: Starts and stops the Tomcat daemon.<br />
#</p>
<p># Source function library.<br />
. /etc/rc.d/init.d/functions</p>
<p># Get config.<br />
. /etc/sysconfig/network</p>
<p># Check that networking is up.<br />
[ "${NETWORKING}" = "no" ] &amp;&amp; exit 0</p>
<p>tomcat=/usr/share/tomcat<br />
startup=$tomcat/bin/startup.sh<br />
shutdown=$tomcat/bin/shutdown.sh<br />
export JAVA_HOME=/usr/java/jre1.5.0_12/<br />
export CATALINA_HOME=/usr/share/tomcat</p>
<p>start(){<br />
echo -n $&#8221;Starting Tomcat service: &#8220;<br />
$startup<br />
RETVAL=$?<br />
echo<br />
}</p>
<p>stop(){<br />
action $&#8221;Stopping Tomcat service: &#8221; $shutdown<br />
RETVAL=$?<br />
echo<br />
}</p>
<p>status(){<br />
numproc=`ps -ef | grep catalina | grep -v &#8220;grep catalina&#8221; | wc -l`<br />
if [ $numproc -gt 0 ]; then<br />
echo &#8220;Tomcat is running&#8230;&#8221;<br />
else<br />
echo &#8220;Tomcat is stopped&#8230;&#8221;<br />
fi<br />
}</p>
<p>restart(){<br />
stop<br />
sleep 5<br />
start<br />
}</p>
<p># See how we were called.<br />
case &#8220;$1&#8243; in<br />
start)<br />
start<br />
;;<br />
stop)<br />
stop<br />
;;<br />
status)<br />
status<br />
;;<br />
restart)<br />
restart<br />
;;<br />
*)<br />
echo $&#8221;Usage: $0 {start|stop|status|restart}&#8221;<br />
exit 1<br />
esac</p>
<p>exit 0
</p></div>
<p>You may have to change the value for tomcat and JAVA_HOME if Tomcat and your JDK are in different locations to mine. You then need to make the file executable with the command:</p>
<div style="background-color:#F2F2F2;border-left:3px solid #999999;margin-left:10px;padding-left:5px;font-family:courier;">
sudo chmod +x /etc/init.d/tomcat
</div>
<p>And finally you need to set it to start at boot with the command:</p>
<div style="background-color:#F2F2F2;border-left:3px solid #999999;margin-left:10px;padding-left:5px;font-family:courier;">
sudo chkconfig &#8211;add tomcat
</div>
<p>You now have a working Tomcat install that will start it self at boot time. You can also interact with it using the service command to start, stop, restart and see the status of the service at any time. E.g.</p>
<div style="background-color:#F2F2F2;border-left:3px solid #999999;margin-left:10px;padding-left:5px;font-family:courier;">
sudo service tomcat start<br />
sudo service tomcat satus<br />
sudo service tomcat stop
</div>
<p>[Adapted from <a href="http://www.bartbusschots.ie/blog/?p=240">http://www.bartbusschots.ie/blog/?p=240</a>]</p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/munday.wordpress.com/34/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/munday.wordpress.com/34/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/munday.wordpress.com/34/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/munday.wordpress.com/34/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/munday.wordpress.com/34/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/munday.wordpress.com/34/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/munday.wordpress.com/34/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/munday.wordpress.com/34/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/munday.wordpress.com/34/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/munday.wordpress.com/34/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/munday.wordpress.com/34/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/munday.wordpress.com/34/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/munday.wordpress.com/34/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/munday.wordpress.com/34/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/munday.wordpress.com/34/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/munday.wordpress.com/34/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=munday.wordpress.com&amp;blog=345440&amp;post=34&amp;subd=munday&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://munday.wordpress.com/2007/07/27/setting-tomcat-up-as-a-service/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/464533c5e67187880f04e781418cdcff?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">munday</media:title>
		</media:content>
	</item>
		<item>
		<title>Solihull to Manchester Airport</title>
		<link>http://munday.wordpress.com/2007/05/31/solihull-to-manchester-airport/</link>
		<comments>http://munday.wordpress.com/2007/05/31/solihull-to-manchester-airport/#comments</comments>
		<pubDate>Thu, 31 May 2007 14:59:57 +0000</pubDate>
		<dc:creator>Ian Munday</dc:creator>
				<category><![CDATA[Travels]]></category>
		<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://munday.wordpress.com/2007/05/31/solihull-to-manchester-airport/</guid>
		<description><![CDATA[Dad was flying off from Manchester Airport last weekend so put &#8220;solihull to manchester airport&#8221; in to the UK version of Google Maps. My favourite is step 27, &#8220;Swim across the Atlantic Ocean&#8221;. That&#8217;s 3,462 miles in (apparently) 29 days. Um, yeah.<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=munday.wordpress.com&amp;blog=345440&amp;post=33&amp;subd=munday&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Dad was flying off from Manchester Airport last weekend so put &#8220;<a href="http://maps.google.co.uk/maps?f=q&amp;hl=en&amp;q=solihull+to+manchester+airport">solihull to manchester airport</a>&#8221; in to the UK version of Google Maps.</p>
<p>My favourite is step 27, &#8220;Swim across the Atlantic Ocean&#8221;.  That&#8217;s 3,462 miles in (apparently) 29 days.  Um, yeah.</p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/munday.wordpress.com/33/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/munday.wordpress.com/33/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/munday.wordpress.com/33/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/munday.wordpress.com/33/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/munday.wordpress.com/33/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/munday.wordpress.com/33/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/munday.wordpress.com/33/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/munday.wordpress.com/33/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/munday.wordpress.com/33/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/munday.wordpress.com/33/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/munday.wordpress.com/33/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/munday.wordpress.com/33/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/munday.wordpress.com/33/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/munday.wordpress.com/33/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/munday.wordpress.com/33/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/munday.wordpress.com/33/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=munday.wordpress.com&amp;blog=345440&amp;post=33&amp;subd=munday&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://munday.wordpress.com/2007/05/31/solihull-to-manchester-airport/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/464533c5e67187880f04e781418cdcff?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">munday</media:title>
		</media:content>
	</item>
		<item>
		<title>Installing Java on Ubuntu Feisty Fawn 7.04</title>
		<link>http://munday.wordpress.com/2007/05/23/installing-java-on-ubuntu-feisty-fawn-704/</link>
		<comments>http://munday.wordpress.com/2007/05/23/installing-java-on-ubuntu-feisty-fawn-704/#comments</comments>
		<pubDate>Wed, 23 May 2007 23:16:19 +0000</pubDate>
		<dc:creator>Ian Munday</dc:creator>
				<category><![CDATA[Tech]]></category>
		<category><![CDATA[Work]]></category>

		<guid isPermaLink="false">http://munday.wordpress.com/2007/05/23/installing-java-on-ubuntu-feisty-fawn-704/</guid>
		<description><![CDATA[Just tell aptitude to install Java 1.5: sudo aptitude install sun-java5-jdk You can check Java is installed correctly by typing: java -version [Taken from http://ubuntuguide.org/wiki/Ubuntu:Feisty]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=munday.wordpress.com&amp;blog=345440&amp;post=32&amp;subd=munday&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Just tell aptitude to install Java 1.5:</p>
<div style="background-color:#F2F2F2;border-left:3px solid #999999;margin-left:10px;padding-left:5px;font-family:courier;">
sudo aptitude install sun-java5-jdk
</div>
<p>You can check Java is installed correctly by typing:</p>
<div style="background-color:#F2F2F2;border-left:3px solid #999999;margin-left:10px;padding-left:5px;font-family:courier;">
java -version
</div>
<p>[Taken from <a href="http://ubuntuguide.org/wiki/Ubuntu:Feisty">http://ubuntuguide.org/wiki/Ubuntu:Feisty</a>]</p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/munday.wordpress.com/32/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/munday.wordpress.com/32/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/munday.wordpress.com/32/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/munday.wordpress.com/32/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/munday.wordpress.com/32/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/munday.wordpress.com/32/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/munday.wordpress.com/32/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/munday.wordpress.com/32/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/munday.wordpress.com/32/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/munday.wordpress.com/32/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/munday.wordpress.com/32/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/munday.wordpress.com/32/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/munday.wordpress.com/32/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/munday.wordpress.com/32/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/munday.wordpress.com/32/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/munday.wordpress.com/32/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=munday.wordpress.com&amp;blog=345440&amp;post=32&amp;subd=munday&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://munday.wordpress.com/2007/05/23/installing-java-on-ubuntu-feisty-fawn-704/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/464533c5e67187880f04e781418cdcff?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">munday</media:title>
		</media:content>
	</item>
		<item>
		<title>Apache Tomcat 5.5 on Ubuntu Edgy Eft 6.10</title>
		<link>http://munday.wordpress.com/2007/05/21/apache-tomcat-55-on-ubuntu-edgy-eft-610/</link>
		<comments>http://munday.wordpress.com/2007/05/21/apache-tomcat-55-on-ubuntu-edgy-eft-610/#comments</comments>
		<pubDate>Mon, 21 May 2007 12:25:16 +0000</pubDate>
		<dc:creator>Ian Munday</dc:creator>
				<category><![CDATA[Tech]]></category>
		<category><![CDATA[Work]]></category>

		<guid isPermaLink="false">http://munday.wordpress.com/2007/05/21/apache-tomcat-55-on-ubuntu-edgy-eft-610/</guid>
		<description><![CDATA[Step 1 – Install JRE and SDK Check the version of Java by typing: java -version Use these instructions to install if necessary. Step 2 – Get Tomcat Download Tomcat 5.5 from http://tomcat.apache.org/. In this example I am using apache-tomcat-5.5.23.tar.gz Move to file to /usr/share and decompress: tar zxf apache-tomcat-5.5.23.tar.gz Step 3 – Add a [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=munday.wordpress.com&amp;blog=345440&amp;post=30&amp;subd=munday&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><strong>Step 1 – Install JRE and SDK</strong></p>
<p>Check the version of Java by typing:</p>
<div style="background-color:#F2F2F2;border-left:3px solid #999999;margin-left:10px;padding-left:5px;font-family:courier;">
java -version
</div>
<p>Use <a href="http://munday.wordpress.com/2007/05/21/installing-java-on-ubuntu-edgy-eft-610/">these instructions</a> to install if necessary.</p>
<p><strong>Step 2 – Get Tomcat</strong></p>
<p>Download Tomcat 5.5 from <a href="http://tomcat.apache.org/">http://tomcat.apache.org/</a>.  In this example I am using apache-tomcat-5.5.23.tar.gz</p>
<p>Move to file to /usr/share and decompress:</p>
<div style="background-color:#F2F2F2;border-left:3px solid #999999;margin-left:10px;padding-left:5px;font-family:courier;">
tar zxf apache-tomcat-5.5.23.tar.gz
</div>
<p><strong>Step 3 – Add a Symbolic Link</strong></p>
<p>To make things simpler I added the symbolic link &#8216;tomcat&#8217; which points to the apache-tomcat-5.5.23 directory. Within /usr/share type:</p>
<div style="background-color:#F2F2F2;border-left:3px solid #999999;margin-left:10px;padding-left:5px;font-family:courier;">
ln -s ./apache-tomcat-5.5.23 ./tomcat
</div>
<p><strong>Step 4 – Set JAVA_HOME and CLASSPATH</strong></p>
<p>You need to point out where you installed Java SDK. You will have to edit the file &#8216;.bashrc&#8217;. (I suggest you backup first just in case.) In terminal type:</p>
<div style="background-color:#F2F2F2;border-left:3px solid #999999;margin-left:10px;padding-left:5px;font-family:courier;">
sudo nano ~/.bashrc
</div>
<p>Add the following lines to the file:</p>
<div style="background-color:#F2F2F2;border-left:3px solid #999999;margin-left:10px;padding-left:5px;font-family:courier;">
# for tomcat<br />
export JAVA_HOME=/usr/lib/jvm/java-1.5.0-sun-1.5.0.06/<br />
export CLASSPATH=&#8221;/usr/share/tomcat/common/lib/jsp-api.jar;/usr/share/tomcat/common/lib/servlet-api.jar&#8221;
</div>
<p>Save and close.  You will have to log out and back in again before these changes take effect.</p>
<p><strong>Step 5 – Starting and stopping tomcat</strong></p>
<p>Tomcat should now be ready to run. In terminal type:</p>
<div style="background-color:#F2F2F2;border-left:3px solid #999999;margin-left:10px;padding-left:5px;font-family:courier;">
sudo /usr/share/tomcat/bin/startup.sh
</div>
<p>If everything is working fine, you will see the following lines:</p>
<div style="background-color:#F2F2F2;border-left:3px solid #999999;margin-left:10px;padding-left:5px;font-family:courier;">
Using CATALINA_BASE:   /usr/share/tomcat<br />
Using CATALINA_HOME:   /usr/share/tomcat<br />
Using CATALINA_TMPDIR: /usr/share/tomcat/temp<br />
Using JRE_HOME:       /usr/lib/jvm/java-1.5.0-sun-1.5.0.06/
</div>
<p>In your browser head to http://localhost:8080/ and test.</p>
<p>To stop Tomcat type:</p>
<div style="background-color:#F2F2F2;border-left:3px solid #999999;margin-left:10px;padding-left:5px;font-family:courier;">
sudo /usr/share/tomcat/bin/shutdown.sh
</div>
<p>[Adapted from <a href="http://doc.gwos.org/index.php/Install_tomcat_5.5">http://doc.gwos.org/index.php/Install_tomcat_5.5</a>]</p>
<p>[27-07-2007:  Also see <a href="http://www.bartbusschots.ie/blog/?p=240">http://www.bartbusschots.ie/blog/?p=240</a>]</p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/munday.wordpress.com/30/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/munday.wordpress.com/30/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/munday.wordpress.com/30/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/munday.wordpress.com/30/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/munday.wordpress.com/30/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/munday.wordpress.com/30/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/munday.wordpress.com/30/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/munday.wordpress.com/30/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/munday.wordpress.com/30/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/munday.wordpress.com/30/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/munday.wordpress.com/30/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/munday.wordpress.com/30/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/munday.wordpress.com/30/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/munday.wordpress.com/30/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/munday.wordpress.com/30/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/munday.wordpress.com/30/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=munday.wordpress.com&amp;blog=345440&amp;post=30&amp;subd=munday&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://munday.wordpress.com/2007/05/21/apache-tomcat-55-on-ubuntu-edgy-eft-610/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/464533c5e67187880f04e781418cdcff?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">munday</media:title>
		</media:content>
	</item>
		<item>
		<title>Installing Java on Ubuntu Edgy Eft 6.10</title>
		<link>http://munday.wordpress.com/2007/05/21/installing-java-on-ubuntu-edgy-eft-610/</link>
		<comments>http://munday.wordpress.com/2007/05/21/installing-java-on-ubuntu-edgy-eft-610/#comments</comments>
		<pubDate>Mon, 21 May 2007 12:03:59 +0000</pubDate>
		<dc:creator>Ian Munday</dc:creator>
				<category><![CDATA[Tech]]></category>
		<category><![CDATA[Work]]></category>

		<guid isPermaLink="false">http://munday.wordpress.com/2007/05/21/installing-java-on-ubuntu-edgy-eft-610/</guid>
		<description><![CDATA[You need to ensure that apt-get is pointed at the right place. In /etc/apt/sources.list add in the following: deb http://us.archive.ubuntu.com/ubuntu dapper main restricted deb http://us.archive.ubuntu.com/ubuntu dapper universe multiverse After this have apt updates its repository: sudo apt-get update And finally, just tell it to install Java 1.5: sudo apt-get install sun-java5-jdk You can check Java [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=munday.wordpress.com&amp;blog=345440&amp;post=31&amp;subd=munday&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>You need to ensure that apt-get is pointed at the right place. In /etc/apt/sources.list add in the following:</p>
<div style="background-color:#F2F2F2;border-left:3px solid #999999;margin-left:10px;padding-left:5px;font-family:courier;">
deb http://us.archive.ubuntu.com/ubuntu dapper main restricted<br />
deb http://us.archive.ubuntu.com/ubuntu dapper universe multiverse
</div>
<p>After this have apt updates its repository:</p>
<div style="background-color:#F2F2F2;border-left:3px solid #999999;margin-left:10px;padding-left:5px;font-family:courier;">
sudo apt-get update
</div>
<p>And finally, just tell it to install Java 1.5:</p>
<div style="background-color:#F2F2F2;border-left:3px solid #999999;margin-left:10px;padding-left:5px;font-family:courier;">
sudo apt-get install sun-java5-jdk
</div>
<p>You can check Java is installed correctly by typing:</p>
<div style="background-color:#F2F2F2;border-left:3px solid #999999;margin-left:10px;padding-left:5px;font-family:courier;">
java -version
</div>
<p>[Adapted from <a href="http://www.javalobby.org/java/forums/t72809.html">http://www.javalobby.org/java/forums/t72809.html</a>]</p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/munday.wordpress.com/31/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/munday.wordpress.com/31/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/munday.wordpress.com/31/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/munday.wordpress.com/31/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/munday.wordpress.com/31/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/munday.wordpress.com/31/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/munday.wordpress.com/31/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/munday.wordpress.com/31/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/munday.wordpress.com/31/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/munday.wordpress.com/31/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/munday.wordpress.com/31/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/munday.wordpress.com/31/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/munday.wordpress.com/31/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/munday.wordpress.com/31/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/munday.wordpress.com/31/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/munday.wordpress.com/31/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=munday.wordpress.com&amp;blog=345440&amp;post=31&amp;subd=munday&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://munday.wordpress.com/2007/05/21/installing-java-on-ubuntu-edgy-eft-610/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/464533c5e67187880f04e781418cdcff?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">munday</media:title>
		</media:content>
	</item>
		<item>
		<title>OpenSEF in Joomla</title>
		<link>http://munday.wordpress.com/2007/02/26/opensef-in-joomla/</link>
		<comments>http://munday.wordpress.com/2007/02/26/opensef-in-joomla/#comments</comments>
		<pubDate>Mon, 26 Feb 2007 15:27:07 +0000</pubDate>
		<dc:creator>Ian Munday</dc:creator>
				<category><![CDATA[Tech]]></category>

		<guid isPermaLink="false">http://munday.wordpress.com/2007/02/26/opensef-in-joomla/</guid>
		<description><![CDATA[There are two things I like to apply to an installation of Joomla to improve its Search Engine Friendly (SEF) functionality. OpenSEF OpenSEF is a Joomla 1.0.x component that extendes Joomla&#8217;s SEF URL mechanism allowing you to define arbitary, friendly URLs for any of Joomla&#8217;s content and component items. (Installation instructions.) Joomla SEF Patch The [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=munday.wordpress.com&amp;blog=345440&amp;post=27&amp;subd=munday&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>There are two things I like to apply to an installation of Joomla to improve its Search Engine Friendly (<abbr title="Search Engine Friendly">SEF</abbr>) functionality.</p>
<p><strong>OpenSEF</strong></p>
<p><a href="http://projects.j-prosolution.com/projects/os-projects/project-opensef.html">OpenSEF</a> is a Joomla 1.0.x component that extendes Joomla&#8217;s SEF URL mechanism allowing you to define arbitary, friendly URLs for any of Joomla&#8217;s content and component items. (<a href="http://projects.j-prosolution.com/documents/opensef/install-opensef.html">Installation instructions</a>.)</p>
<p><strong>Joomla SEF Patch</strong></p>
<p>The out of the box installation of Joomla is not fully optimized for search engine optimising features &#8211; the Joomla SEF patch aims to improve this.  You can read more about the <a href="http://www.joomlatwork.com/products/free_products_for_joomla/sef_patch_joomla.html">free verson of the SEF patch</a>.</p>
<p>Joomla SEF Patch is listed on the <a href="http://extensions.joomla.org/component/option,com_mtree/task,viewlink/link_id,490/Itemid,35/">Joomla! Extensions</a> site.  It can be downloaded from <a href="http://www.joomlatwork.com/downloads/">http://www.joomlatwork.com/downloads/</a>.</p>
<p><em>(Using <a href="http://www.panic.com/transmit/">Transmit</a>&#8216;s <a href="http://newfangledtelegraph.com/blog/entry/merge-folders-with-transmit/">Merge Folder</a> function makes this a breeze.)</em></p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/munday.wordpress.com/27/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/munday.wordpress.com/27/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/munday.wordpress.com/27/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/munday.wordpress.com/27/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/munday.wordpress.com/27/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/munday.wordpress.com/27/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/munday.wordpress.com/27/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/munday.wordpress.com/27/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/munday.wordpress.com/27/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/munday.wordpress.com/27/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/munday.wordpress.com/27/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/munday.wordpress.com/27/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/munday.wordpress.com/27/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/munday.wordpress.com/27/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/munday.wordpress.com/27/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/munday.wordpress.com/27/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=munday.wordpress.com&amp;blog=345440&amp;post=27&amp;subd=munday&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://munday.wordpress.com/2007/02/26/opensef-in-joomla/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/464533c5e67187880f04e781418cdcff?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">munday</media:title>
		</media:content>
	</item>
	</channel>
</rss>
