<?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/"
	>

<channel>
	<title>Jumping Through Hoops &#187; leopard</title>
	<atom:link href="http://blog.jameshiggs.com/tags/leopard/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.jameshiggs.com</link>
	<description>James Higgs&#039;s Blog</description>
	<lastBuildDate>Wed, 03 Feb 2010 14:16:44 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.6</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Getting WordPress, mod_rewrite and Leopard to work together</title>
		<link>http://blog.jameshiggs.com/2007/12/25/getting-wordpress-mod_rewrite-and-leopard-to-work-together/</link>
		<comments>http://blog.jameshiggs.com/2007/12/25/getting-wordpress-mod_rewrite-and-leopard-to-work-together/#comments</comments>
		<pubDate>Tue, 25 Dec 2007 13:28:46 +0000</pubDate>
		<dc:creator>higgis</dc:creator>
				<category><![CDATA[Tech]]></category>
		<category><![CDATA[Apache]]></category>
		<category><![CDATA[apple]]></category>
		<category><![CDATA[leopard]]></category>
		<category><![CDATA[mac]]></category>
		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://blog.jameshiggs.com/2007/12/25/getting-wordpress-mod_rewrite-and-leopard-to-work-together/</guid>
		<description><![CDATA[I&#8217;ve been trying to get Leopard, Apache 2 and WordPress working together for a while now. I want to use the WordPress friendly URL feature, and this requires the Apache mod_rewrite module to work too. There are various places around the web that have partial solutions to these problems. Here&#8217;s the procedure I followed &#8211; [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve been trying to get Leopard, Apache 2 and WordPress working together for a while now. I want to use the WordPress friendly URL feature, and this requires the Apache mod_rewrite module to work too. There are various places around the web that have partial solutions to these problems. Here&#8217;s the procedure I followed &#8211; YMMV</p>
<p>First off, WordPress is installed in <code>/Users/jameshiggs/Sites/blog</code>. Leopard comes with Apache 2.2 installed, but has PHP disabled by default. To correct this, go to the console and change directory to <code>/etc/apache2</code> and open <code>httpd.conf</code> in your favourite editor. For me this means typing:</p>
<pre>sudo mate httpd.conf</pre>
<p>You&#8217;ll probably have to enter your admin password. Find the line that reads:</p>
<pre>#LoadModule php5_module libexec/apache2/libphp5.so</pre>
<p>and uncomment it so that it looks like this:</p>
<pre>LoadModule php5_module libexec/apache2/libphp5.so</pre>
<p>Next, we need to make sure that your user directory allows <code>.htaccess</code> rules. To do this, create a file called <code>jameshiggs.conf</code> (obviously, you&#8217;ll need to replace my user name with yours) in <code>/etc/apache2/users</code>. The contents of that file should read:</p>
<pre>&lt;Directory "/Users/jameshiggs/Sites"&gt;
	Options Indexes MultiViews
	AllowOverride All
	Order allow,deny
	Allow from all
&lt;/Directory&gt;</pre>
<p>Again, you&#8217;ll need to replace my user name with yours.</p>
<p>The final piece of the jigsaw is to configure WordPress to use friendly URLs &#8211; which you do from the Options &gt; Permalinks page. I&#8217;ve selected the second option which makes URLs look like this: <code>http://localhost/~jameshiggs/blog/2007/12/25/sample-post/</code>. If WordPress can write to the site root then it will automatically create the <code>.htaccess</code> file. If not, you&#8217;ll need to create it yourself in the root of your blog site. On my machine, the file should look like this:</p>
<pre>&lt;IfModule mod_rewrite.c&gt;
	Options +FollowSymLinks
	RewriteEngine On
	RewriteBase /~jameshiggs/blog/
	RewriteCond %{REQUEST_FILENAME} !-f
	RewriteCond %{REQUEST_FILENAME} !-d
	RewriteRule . /~jameshiggs/blog/index.php [L]
&lt;/IfModule&gt;</pre>
<p>Finally, you need to restart Apache &#8211; the easiest way to do that is to go to System Preferences &gt; Sharing panel and untick Web Sharing. Once Apache has stopped, tick it again and Apache should start up. And that&#8217;s it.</p>
<p>Let me know if you have any variants to this procedure.</p>
<p>Thanks to <a href="http://www.bagelturf.com/files/a47270927ba7060915782314c984c3a9-1074.html">Bagelturf</a> and <a href="http://danilo.ariadoss.com/2007/12/16/how-to-setup-apache-php-mysql-on-mac-os-x-105-leopard/">Ariadoss</a> for hints that helped me get this running.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.jameshiggs.com/2007/12/25/getting-wordpress-mod_rewrite-and-leopard-to-work-together/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Not loving Stacks on Leopard?</title>
		<link>http://blog.jameshiggs.com/2007/11/28/not-loving-stacks-on-leopard/</link>
		<comments>http://blog.jameshiggs.com/2007/11/28/not-loving-stacks-on-leopard/#comments</comments>
		<pubDate>Wed, 28 Nov 2007 17:42:51 +0000</pubDate>
		<dc:creator>higgis</dc:creator>
				<category><![CDATA[Tech]]></category>
		<category><![CDATA[apple]]></category>
		<category><![CDATA[leopard]]></category>
		<category><![CDATA[mac]]></category>

		<guid isPermaLink="false">http://blog.jameshiggs.com/2007/11/28/not-loving-stacks-on-leopard/</guid>
		<description><![CDATA[Via Matt Legend Gemmell I found Quay &#8211; a way to have Tiger-style hierarchical folder menus in your dock, in case Leopard&#8217;s Stacks aren&#8217;t doing it for you. It&#8217;s shareware and costs only €7.
]]></description>
			<content:encoded><![CDATA[<p><a href="http://mattgemmell.com/2007/11/28/hierarchical-folders-in-the-leopard-dock-with-quay">Via Matt Legend Gemmell</a> I found <a href="http://www.brockerhoff.net/quay/index.html">Quay</a> &#8211; a way to have Tiger-style hierarchical folder menus in your dock, in case Leopard&#8217;s Stacks aren&#8217;t doing it for you. It&#8217;s shareware and costs only €7.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.jameshiggs.com/2007/11/28/not-loving-stacks-on-leopard/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Leopard glitches</title>
		<link>http://blog.jameshiggs.com/2007/11/28/leopard-glitches/</link>
		<comments>http://blog.jameshiggs.com/2007/11/28/leopard-glitches/#comments</comments>
		<pubDate>Wed, 28 Nov 2007 11:54:06 +0000</pubDate>
		<dc:creator>higgis</dc:creator>
				<category><![CDATA[Opinion]]></category>
		<category><![CDATA[Tech]]></category>
		<category><![CDATA[apple]]></category>
		<category><![CDATA[leopard]]></category>

		<guid isPermaLink="false">http://blog.jameshiggs.com/2007/11/28/leopard-glitches/</guid>
		<description><![CDATA[I&#8217;ve been using Leopard for a while now and, broadly, I like it. But there are one or two things that are really pissing me off.

The PubSubAgent (used for .Mac bookmark synchronisation) craps itself all the time if you&#8217;re behind a proxy
Disk images don&#8217;t always eject properly in the Finder sidebar
As I mentioned before, AirPort [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve been using Leopard for a while now and, broadly, I like it. But there are one or two things that are really pissing me off.</p>
<ul>
<li>The PubSubAgent (used for .Mac bookmark synchronisation) <a href="http://discussions.apple.com/message.jspa?messageID=5911122">craps itself all the time if you&#8217;re behind a proxy</a></li>
<li>Disk images don&#8217;t always eject properly in the Finder sidebar</li>
<li><a href="http://blog.jameshiggs.com/2007/11/11/time-machine-backups-to-airport-extreme/">As I mentioned before</a>, AirPort Extreme discs don&#8217;t auto-mount or show up in the Finder properly</li>
<li>iCal seems to have lost the event details panel and has replaced it with an annoying speech-bubble thing</li>
<li>There are still too many apps with compatibility problems (Pukka and MySQL being the two that are affecting me at the moment)</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://blog.jameshiggs.com/2007/11/28/leopard-glitches/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Time Machine backups to AirPort Extreme</title>
		<link>http://blog.jameshiggs.com/2007/11/11/time-machine-backups-to-airport-extreme/</link>
		<comments>http://blog.jameshiggs.com/2007/11/11/time-machine-backups-to-airport-extreme/#comments</comments>
		<pubDate>Sun, 11 Nov 2007 11:43:44 +0000</pubDate>
		<dc:creator>higgis</dc:creator>
				<category><![CDATA[Tech]]></category>
		<category><![CDATA[apple]]></category>
		<category><![CDATA[leopard]]></category>
		<category><![CDATA[time machine]]></category>

		<guid isPermaLink="false">http://blog.jameshiggs.com/2007/11/11/time-machine-backups-to-airport-extreme/</guid>
		<description><![CDATA[I was disappointed when I installed Leopard to find that I couldn&#8217;t use my AirPort Extreme shared disc as the backup location &#8211; what I wanted was to be able to backup all my Macs to the same disk without needing to attach portable drives to them.
There is a solution &#8211; you can just enable [...]]]></description>
			<content:encoded><![CDATA[<p>I was disappointed when I installed <a href="http://www.apple.com/macosx">Leopard</a> to find that I couldn&#8217;t use my <a href="http://www.apple.com/uk/airportextreme/">AirPort Extreme</a> shared disc as the backup location &#8211; what I wanted was to be able to backup all my Macs to the same disk without needing to attach portable drives to them.</p>
<p>There is a solution &#8211; you can just enable backing up to shared drives as a preference, and <a href="http://feeds.feedburner.com/~r/9To5Mac-MacAllDay/~3/181852907/time-machine-fix-flux-capacitor-43262455">9 to 5 Mac have the solution here</a>.</p>
<p>[<strong>Update</strong>: it turns out that this is a fairly long way from a perfect solution - Leopard doesn't seem to support auto-mounting of AirPort Extreme shared discs - so Time Machine gets confused when the OS starts up and doesn't seem to be able to recover. <a href="http://discussions.apple.com/thread.jspa?messageID=5721373">There's more on that disc auto-mounting issue on the Apple support site</a>.]</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.jameshiggs.com/2007/11/11/time-machine-backups-to-airport-extreme/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
