<?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>Ant Drewery &#187; WordPress</title>
	<atom:link href="http://blog.drewery.net/category/wordpress/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.drewery.net</link>
	<description>IT infrastructure, support and strategy</description>
	<lastBuildDate>Thu, 01 Dec 2011 09:47:16 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='blog.drewery.net' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://s2.wp.com/i/buttonw-com.png</url>
		<title>Ant Drewery &#187; WordPress</title>
		<link>http://blog.drewery.net</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://blog.drewery.net/osd.xml" title="Ant Drewery" />
	<atom:link rel='hub' href='http://blog.drewery.net/?pushpress=hub'/>
		<item>
		<title>Redirecting a WordPress blog using .htaccess</title>
		<link>http://blog.drewery.net/2009/02/19/redirecting-a-wordpress-blog-using-htaccess/</link>
		<comments>http://blog.drewery.net/2009/02/19/redirecting-a-wordpress-blog-using-htaccess/#comments</comments>
		<pubDate>Thu, 19 Feb 2009 14:12:23 +0000</pubDate>
		<dc:creator>Anthony Drewery</dc:creator>
				<category><![CDATA[Wordpress]]></category>

		<guid isPermaLink="false">http://blog.drewery.net/?p=137</guid>
		<description><![CDATA[I recently moved my WordPress blog from being self hosted to wordpress.com. The transfer was easy and straightforward. I simply upgraded the original blog to WordPress 2.7 then ran an export followed by an import into the new blog. This uses the WordPress eXtended RSS (WXR) format. WordPress.com allows me to use my own domain [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.drewery.net&amp;blog=6502410&amp;post=137&amp;subd=antdrewery&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>I recently moved my WordPress blog from being self hosted to <a href="http://www.wordpress.com" target="_blank">wordpress.com</a>. The transfer was easy and straightforward. I simply upgraded the original blog to WordPress 2.7 then ran an export followed by an import into the new blog. This uses the WordPress eXtended RSS (WXR) format.</p>
<p>WordPress.com allows me to use my own domain name (blog.drewery.net) but doesn&#8217;t let me use a subfolder structure as I did with my original blog (www.drewery.net/blog). This presented a challenge for my existing Google rankings with links to the old location. The solution came from <a href="http://www.linkedin.com/in/chrishimsworth" target="_blank">Chris Himsworth</a>, a developer that I work with, in the form of a custom <a href="http://www.htaccess-guide.com/" target="_blank">.htaccess</a> file. The file sits in the location of the original blog, parses the URL then redirects to the new location appending part of the original path. By using a 301 permamanet redirect Google then updates the links. The file is below:</p>
<blockquote><p>&lt;IfModule mod_rewrite.c&gt;<br />
RewriteEngine On<br />
RewriteBase /blog/<br />
RewriteCond %{REQUEST_FILENAME} !-f<br />
RewriteCond %{REQUEST_FILENAME} !-d<br />
RewriteRule ^(.*)$ http://blog.drewery.net/$1 [R=301,L]<br />
&lt;/IfModule&gt;</p></blockquote>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/antdrewery.wordpress.com/137/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/antdrewery.wordpress.com/137/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/antdrewery.wordpress.com/137/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/antdrewery.wordpress.com/137/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/antdrewery.wordpress.com/137/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/antdrewery.wordpress.com/137/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/antdrewery.wordpress.com/137/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/antdrewery.wordpress.com/137/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/antdrewery.wordpress.com/137/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/antdrewery.wordpress.com/137/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/antdrewery.wordpress.com/137/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/antdrewery.wordpress.com/137/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/antdrewery.wordpress.com/137/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/antdrewery.wordpress.com/137/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.drewery.net&amp;blog=6502410&amp;post=137&amp;subd=antdrewery&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://blog.drewery.net/2009/02/19/redirecting-a-wordpress-blog-using-htaccess/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/9ac112d149b667282aee5e6cc74ecf5a?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Ant</media:title>
		</media:content>
	</item>
		<item>
		<title>WordPress WP-ShortStat plugin issues</title>
		<link>http://blog.drewery.net/2007/04/27/wordpress-wp-shortstat-plugin-issues/</link>
		<comments>http://blog.drewery.net/2007/04/27/wordpress-wp-shortstat-plugin-issues/#comments</comments>
		<pubDate>Fri, 27 Apr 2007 07:43:26 +0000</pubDate>
		<dc:creator>Anthony Drewery</dc:creator>
				<category><![CDATA[Wordpress]]></category>

		<guid isPermaLink="false">http://www.drewery.net/blog/2007/04/27/wordpress-wp-shortstat-plugin-issues/</guid>
		<description><![CDATA[Some time ago my blog stats stopped updating. I was using Jeff Minard&#8217;s WP-ShortStat plugin that was based on ShortStat by Shaun Inman. I did a little digging at the time and ran some MySQL DB maintenance as I was convinced I&#8217;d reached some sort of limitation in my hosted environment. This didn&#8217;t help and [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.drewery.net&amp;blog=6502410&amp;post=131&amp;subd=antdrewery&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Some time ago my blog stats stopped updating. I was using Jeff Minard&#8217;s <a href="http://dev.wp-plugins.org/wiki/wp-shortstat" target="_blank">WP-ShortStat</a>  plugin that was based on <a href="http://shortstat.shauninman.com/" target="_blank">ShortStat</a>  by Shaun Inman. I did a little digging at the time and ran some MySQL DB maintenance as I was convinced I&#8217;d reached some sort of limitation in my hosted environment. This didn&#8217;t help and I let the matter drop as I was busy with other commitments.&nbsp;</p>
<p>It now seems like this is a known issue that began when I upgraded to <a href="http://www.wordpress.org" target="_blank">WordPress</a>  2.02. Luckily Markus K&auml;mmerer has continued development of the WP-ShortStat plugin, adding new features as well as fixing the bug. You can get the updated plugin at <a href="http://blog.happyarts.de/wp-shortstat/" target="_blank">http://blog.happyarts.de/wp-shortstat/</a>. Installation is a breeze and my stats are updating once again.</p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/antdrewery.wordpress.com/131/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/antdrewery.wordpress.com/131/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/antdrewery.wordpress.com/131/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/antdrewery.wordpress.com/131/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/antdrewery.wordpress.com/131/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/antdrewery.wordpress.com/131/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/antdrewery.wordpress.com/131/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/antdrewery.wordpress.com/131/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/antdrewery.wordpress.com/131/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/antdrewery.wordpress.com/131/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/antdrewery.wordpress.com/131/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/antdrewery.wordpress.com/131/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/antdrewery.wordpress.com/131/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/antdrewery.wordpress.com/131/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/antdrewery.wordpress.com/131/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/antdrewery.wordpress.com/131/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.drewery.net&amp;blog=6502410&amp;post=131&amp;subd=antdrewery&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://blog.drewery.net/2007/04/27/wordpress-wp-shortstat-plugin-issues/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/9ac112d149b667282aee5e6cc74ecf5a?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Ant</media:title>
		</media:content>
	</item>
		<item>
		<title>WordPress 2.0</title>
		<link>http://blog.drewery.net/2006/01/04/wordpress-20/</link>
		<comments>http://blog.drewery.net/2006/01/04/wordpress-20/#comments</comments>
		<pubDate>Wed, 04 Jan 2006 14:49:44 +0000</pubDate>
		<dc:creator>Anthony Drewery</dc:creator>
				<category><![CDATA[Wordpress]]></category>

		<guid isPermaLink="false">http://www.drewery.net/blog/2006/01/04/wordpress-20/</guid>
		<description><![CDATA[I&#8217;ve just upgraded to WordPress 2.0 and so far, so good. The upgrade process was well documented and went without a hitch. All my existing plugins continued to function. However, as stressed in the documentation make sure you backup your installation and database first. I do regular scheduled backups of my database using the WordPress [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.drewery.net&amp;blog=6502410&amp;post=28&amp;subd=antdrewery&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve just upgraded to <a href="http://wordpress.org/development/2005/12/wp2/">WordPress 2.0 </a>and so far, so good. The upgrade process was well documented and went without a hitch. All my existing plugins continued to function. However, as stressed in the documentation make sure you backup your installation and database first. I do regular scheduled backups of my database using the <a href="http://www.skippy.net/blog/plugins/">WordPress Database Backup</a> plugin by Scott Merill. It backs up the database and emails it to me nightly.</p>
<p>I&#8217;m still playing with the updated admin interface but the main change I&#8217;ve noticed is WYSIWYG editing when writing posts, which is a welcome improvement. There are also some nice touches with the post preview and file uploads. This is only my first post with the new version but if you run your own WordPress server the upgrade is worth checking out.</p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/antdrewery.wordpress.com/28/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/antdrewery.wordpress.com/28/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/antdrewery.wordpress.com/28/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/antdrewery.wordpress.com/28/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/antdrewery.wordpress.com/28/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/antdrewery.wordpress.com/28/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/antdrewery.wordpress.com/28/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/antdrewery.wordpress.com/28/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/antdrewery.wordpress.com/28/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/antdrewery.wordpress.com/28/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/antdrewery.wordpress.com/28/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/antdrewery.wordpress.com/28/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/antdrewery.wordpress.com/28/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/antdrewery.wordpress.com/28/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/antdrewery.wordpress.com/28/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/antdrewery.wordpress.com/28/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.drewery.net&amp;blog=6502410&amp;post=28&amp;subd=antdrewery&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://blog.drewery.net/2006/01/04/wordpress-20/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/9ac112d149b667282aee5e6cc74ecf5a?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Ant</media:title>
		</media:content>
	</item>
	</channel>
</rss>
