<?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>Nick Taylors blog &#187; wordpress</title>
	<atom:link href="http://nickt.com/tag/wordpress/feed/" rel="self" type="application/rss+xml" />
	<link>http://nickt.com</link>
	<description>killing time with travel, technology &#38; land rovers...</description>
	<lastBuildDate>Thu, 29 Jul 2010 19:49:37 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
		<item>
		<title>Media Temple: Moving WordPress and MediaWiki from (gs) to (dv)</title>
		<link>http://nickt.com/2009/03/22/media-temple-moving-wordpress-and-mediawiki-from-gs-to-dv/</link>
		<comments>http://nickt.com/2009/03/22/media-temple-moving-wordpress-and-mediawiki-from-gs-to-dv/#comments</comments>
		<pubDate>Mon, 23 Mar 2009 03:01:05 +0000</pubDate>
		<dc:creator>nickt</dc:creator>
				<category><![CDATA[technology]]></category>
		<category><![CDATA[(dv)]]></category>
		<category><![CDATA[(gs)]]></category>
		<category><![CDATA[(mt)]]></category>
		<category><![CDATA[database]]></category>
		<category><![CDATA[dedicated virtual]]></category>
		<category><![CDATA[grid server]]></category>
		<category><![CDATA[hosting]]></category>
		<category><![CDATA[media temple]]></category>
		<category><![CDATA[mediawiki]]></category>
		<category><![CDATA[migration]]></category>
		<category><![CDATA[mysql]]></category>
		<category><![CDATA[reference]]></category>
		<category><![CDATA[server]]></category>
		<category><![CDATA[servers]]></category>
		<category><![CDATA[sql]]></category>
		<category><![CDATA[upgrade]]></category>
		<category><![CDATA[vps]]></category>
		<category><![CDATA[wiki]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://nickt.com/?p=508</guid>
		<description><![CDATA[I&#8217;ve reached the point where I&#8217;ve outgrown the Media Temple (referral link) (gs) gridservice offering and have migrated to a (dv) dedicated virtual plan. My primary reasons were increased scalability, performance and flexibility. I&#8217;ve read some negative comments about Media Temple, but I&#8217;ve been with them for 3 years and had no problems, other than [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve reached the point where I&#8217;ve outgrown the <a href="http://www.mediatemple.net/go/order/?refdom=dv.adventurevehicles.com">Media Temple</a> (referral link) <a href="http://mediatemple.net/webhosting/gs/">(gs) gridservice</a> offering and have migrated to a <a href="http://mediatemple.net/webhosting/gs/">(dv) dedicated virtual</a> plan. My primary reasons were increased scalability, performance and flexibility. I&#8217;ve read some negative comments about Media Temple, but I&#8217;ve been with them for 3 years and had no problems, other than the occasional slowness. Their customer service has always been responsive and helpful. </p>
<p>I have a number of sites hosted on the (gs), including <a href="http://wordpress.org/">WordPress</a> and <a href="http://www.mediawiki.org/wiki/MediaWiki">MediaWiki</a> sites with <a href="http://www.mysql.com/">MySQL</a> databases, some of them are mine and some below to third parties. </p>
<p>(dv) comes with a <a href="http://www.parallels.com/products/plesk/">Plesk</a> front-end management tool, which is ok, but the first thing I did was enable <a href="http://en.wikipedia.org/wiki/Secure_Shell">ssh</a> access as I prefer the extra flexibility that hands-on environment gives you. Though I did spend the afternoon familiarizing myself with the Plesk environment and I like it well enough.</p>
<p>There are a few caveats when moving WordPress to a new site. I also changed the domains, and that added some extra complexity. I moved:</p>
<ul>
<li>http://blog.exerro.com/ to <a title="Nick &amp; Kristys Travel blog" href="http://exerro.com/">http://exerro.com/</a></li>
<li>http://blog.http://nickt.com/ to <a title="Nick Taylor's personal blog" href="http://nickt.com/">http://nickt.com/</a></li>
<li>http://blog.nickt.com/ to <a title="Nick Taylor's professional tech blog" href="http://nickt.com/">http://nickt.com/</a></li>
<li>and some other, minor, changes</li>
</ul>
<p>I got rid of the leading hostnames mainly to simplify my environment and it also aids <a title="wikipedia entry on seo" href="http://en.wikipedia.org/wiki/Search_engine_optimization">SEO</a>. </p>
<p>These are some of the things you should watch for:</p>
<ul>
<li>The backup and restore of the database didn&#8217;t work well and I didn&#8217;t have much confidence in it. (mt) have a <a href="http://kb.mediatemple.net/questions/129/How+can+I+Backup+and+Restore+a+MySQL+database%3F">KnowledgeBase article on the subject</a>. I used the command line to backup the databases like this:
<ul>
<li><code>$ mysqldump --add-drop-table -u Username -p dbname &gt; dbname.sql</code></li>
</ul>
</li>
<li>And restored them like this:
<ul>
<li><code>$ mysql -u Username -p dbname &lt; dbname.sql</code></li>
</ul>
</li>
<li>As I&#8217;ve moved domains, the databases needed some work to fix links. I found <a href="http://www.mydigitallife.info/2007/10/01/how-to-move-wordpress-blog-to-new-domain-or-location/">an article that was of help</a>, but what you basically do is
<ul>
<li>update the wp_options table with:
<ul>
<li><code>UPDATE wp_options SET option_value = replace(option_value, 'http://OLDURL', 'http://NEWURL') WHERE option_name = 'home' OR option_name = 'siteurl';</code></li>
</ul>
</li>
<li>update the references to absolute URLs:
<ul>
<li><code>UPDATE wp_posts SET guid = replace(guid, 'http://OLDURL','http://NEWURL');</code></li>
</ul>
</li>
<li>update the posts that reference other posts on the site:
<ul>
<li><code>UPDATE wp_posts SET post_content = replace(post_content, 'http://OLDURL', 'http://NEWURL');</code></li>
</ul>
</li>
</ul>
</li>
<li>As I changed domain names, the permalinks broke. Make the <a href="http://httpd.apache.org/docs/1.3/howto/htaccess.html">.htaccess</a> file writeable and in wp-admin/settings/permalinks hit &#8220;save changes&#8221; to regenerate the permalinks. If you have a problem here, it&#8217;ll probably be down to the .htaccess file either not existing or not being writable. </li>
<li>WordPress on (dv) requires the <a title="wikipedia entry on unix file stystem permissions" href="http://en.wikipedia.org/wiki/File_system_permissions">permissions</a> on the wp-content/uploads directory to be 777, or you have problems adding to your media library. There may be a better way of doing this, but after spending a couple of hours I decided it was good enough. You also have to either edit the wp_options table in the database or simply change the settings/misc uploads setting in WordPress admin to be &#8220;wp-content/uploads&#8221; (note there&#8217;s no leading &#8220;/&#8221;). There are a lot of threads on the (mt) forums discussing this, <a href="https://forums.mediatemple.net/viewtopic.php?id=2350">this is the most relevant one</a>. The WordPress forums also <a href="http://wordpress.org/support/topic/180378">discuss this problem</a>. </li>
<li>Also to allow successful uploads to your media library, <a title="PHP safe mode" href="http://us.php.net/features.safe-mode">PHP safe-mode</a> has to be &#8220;off&#8221; as the httpd server and filesystem permissions are different. The easiest way to change this setting is via the Plesk control panel, but you can also edit <code>/etc/php.ini</code>. </li>
<li>I had some non-WordPress files, mostly images, on the old sites, so <a href="http://kb.mediatemple.net/questions/242/How+do+I+redirect+my+site+using+a+.htaccess+file%3F">I used .htaccess to redirect</a> to the new locations, specifically for links to files and images I&#8217;ve been posting to forums for years, and didn&#8217;t want them to break. For example, http://nickt.com/landrovers redirects to <a title="Nicks fleet of overland vehicles" href="http://exerro.com/oldsites/2009/http://nickt.com/landrovers/">http://exerro.com/oldsites/2009/http://nickt.com/landrovers/.</a></li>
<li>I use the <a href="http://wordpress.org/extend/plugins/wp-db-backup/">WordPress Database Backup plugin</a>, and it needed a new backup directory to be created in <code>wp-content</code> and made writable. </li>
<li>I noticed that the <a href="http://wordpress.org/extend/plugins/wordpress-automatic-upgrade/faq/">WordPress Automatic Upgrade</a> and the automatic plugin upgrades now require an ftp username and password. </li>
<li>I setup <a href="http://www.mediawiki.org/wiki/MediaWiki">MediaWiki</a> to use short URLs, like <a href="http://www.wikipedia.org/">Wikipedia</a>, (aka removing &#8220;index.php&#8221; from the URL) in line with best practices for forming URLs using <a href="http://www.mediawiki.org/wiki/Manual:Short_URL">this method</a>. </li>
<li>Also for the &#8220;<a href="http://codex.exerro.com/wiki/Main_Page">codex exerro</a>&#8220;, I only allowed authorized users to read pages using <a href="http://www.mediawiki.org/wiki/Manual:Short_URL">this method</a>. </li>
<li>I temporarily disabled account creation by adding &#8220;<code>$wgGroupPermissions['*']['createaccount'] = false;</code>&#8221; to  <code>LocalSettings.php</code></li>
</ul>
<p>I&#8217;m still wondering whether or not to use <a href="http://drupal.org/">Drupal</a> instead of MediaWiki for both the &#8220;codex exerro&#8221; and a private wiki I&#8217;m building. Drupal has more flexibility in terms of user rights management (or is at least simpler than MediaWiki) and managing content (unsurprisingly as it is a Content Management System), but doesn&#8217;t look as good out of the box and is more complex to setup and maintain.</p>
<p>Anyway, it took around a day to migrate half a dozen sites and databases. I&#8217;m looking forward to pushing (dv) to see what it&#8217;s got!</p>
]]></content:encoded>
			<wfw:commentRss>http://nickt.com/2009/03/22/media-temple-moving-wordpress-and-mediawiki-from-gs-to-dv/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Embedding Test</title>
		<link>http://nickt.com/2008/12/28/embedding-test/</link>
		<comments>http://nickt.com/2008/12/28/embedding-test/#comments</comments>
		<pubDate>Sun, 28 Dec 2008 18:15:35 +0000</pubDate>
		<dc:creator>nickt</dc:creator>
				<category><![CDATA[misc]]></category>
		<category><![CDATA[blog]]></category>
		<category><![CDATA[blogging]]></category>
		<category><![CDATA[dimensions]]></category>
		<category><![CDATA[embed]]></category>
		<category><![CDATA[embedding]]></category>
		<category><![CDATA[flickr]]></category>
		<category><![CDATA[images]]></category>
		<category><![CDATA[plugin]]></category>
		<category><![CDATA[resolution]]></category>
		<category><![CDATA[size]]></category>
		<category><![CDATA[theme]]></category>
		<category><![CDATA[video]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://nickt.com/?p=437</guid>
		<description><![CDATA[As I&#8217;m planning on embedding images and videos into the blog, I need to remember that the optimal size using my customized grid-focus theme is 700px wide, and around 525px high (though it&#8217;s ok to +/- by a hundred px or so). I recently spent some time in the The Maze District of Canyonlands National [...]]]></description>
			<content:encoded><![CDATA[<p>As I&#8217;m planning on embedding images and videos into the blog, I need to remember that the optimal size using my <a href="http://nickt.com/2008/12/27/new-wordpress-theme-for-indigoprime/">customized</a> <a href="http://5thirtyone.com/grid-focus">grid-focus</a> theme is 700px wide, and around 525px high (though it&#8217;s ok to +/- by a hundred px or so). </p>
<p>I recently spent some time in the <a href="http://www.nps.gov/cany/planyourvisit/maze.htm">The Maze District</a> of <a href="http://www.nps.gov/cany/">Canyonlands National Park</a>. Here&#8217;s the slideshow from that trip.<br />
I  used <a href="http://www.animoto.com/">animoto</a> to put together a video slideshow, with music (700x389px):<br />
<object width="700" height="389"><param name="allowfullscreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="movie" value="http://vimeo.com/moogaloop.swf?clip_id=2624258&amp;server=vimeo.com&amp;show_title=1&amp;show_byline=0&amp;show_portrait=0&amp;color=ffffff&amp;fullscreen=1" /><embed src="http://vimeo.com/moogaloop.swf?clip_id=2624258&amp;server=vimeo.com&amp;show_title=1&amp;show_byline=0&amp;show_portrait=0&amp;color=ffffff&amp;fullscreen=1" type="application/x-shockwave-flash" allowfullscreen="true" allowscriptaccess="always" width="700" height="389"></embed></object><br /><a href="http://vimeo.com/2624258">A Trip to The Maze</a> from <a href="http://vimeo.com/nickt">Nick Taylor</a> on <a href="http://vimeo.com">Vimeo</a></p>
<p>I use <a href="http://www.flickr.com/">flickr</a> to host my images, so it makes sense to use their  flash-based slideshow, if for nothing else other than ease of use (700x525px).<br />
<object width="700" height="525"><param name="flashvars" value="&#038;offsite=true&#038;lang=en-us&#038;page_show_url=%2Fphotos%2Findigoprime%2Fsets%2F72157607528750621%2Fshow%2F&#038;page_show_back_url=%2Fphotos%2Findigoprime%2Fsets%2F72157607528750621%2F&#038;set_id=72157607528750621&#038;jump_to="></param><param name="movie" value="http://www.flickr.com/apps/slideshow/show.swf?v=63961"></param><param name="allowFullScreen" value="true"></param><embed type="application/x-shockwave-flash" src="http://www.flickr.com/apps/slideshow/show.swf?v=63961" allowFullScreen="true" flashvars="&#038;offsite=true&#038;lang=en-us&#038;page_show_url=%2Fphotos%2Findigoprime%2Fsets%2F72157607528750621%2Fshow%2F&#038;page_show_back_url=%2Fphotos%2Findigoprime%2Fsets%2F72157607528750621%2F&#038;set_id=72157607528750621&#038;jump_to=" width="700" height="525"></embed></object></p>
<p>Finally, here&#8217;s a static image embedded from flickr, resized to 700x466px (a good size for landscape oriented shots, remember to embed the large via the <a href="http://tantannoodles.com/toolkit/photo-album/">flickr photo album plugin</a> and resize down in the HTML).<br />
<a href="http://www.flickr.com/photos/indigoprime/2891147316/" class="tt-flickr tt-flickr-Large" title="200809 - Trip to The Maze"><img class="alignnone" src="http://farm4.static.flickr.com/3003/2891147316_8c57ecb6b4_b.jpg" alt="200809 - Trip to The Maze" width="700" height="466" /></a> </p>
<p>Hopefully this looks ok and I&#8217;ll use these defaults in the future. Of course, over at <a href="http://exerro.com">blog.exerro.com</a>, the defaults are 950px wide, and slideshow photos should be 425px high. I&#8217;d love a way to do this without using Flash, any suggestions?</p>
]]></content:encoded>
			<wfw:commentRss>http://nickt.com/2008/12/28/embedding-test/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>New WordPress theme for exerro too!</title>
		<link>http://nickt.com/2008/12/27/new-wordpress-theme-for-exerro-too/</link>
		<comments>http://nickt.com/2008/12/27/new-wordpress-theme-for-exerro-too/#comments</comments>
		<pubDate>Sun, 28 Dec 2008 01:47:24 +0000</pubDate>
		<dc:creator>nickt</dc:creator>
				<category><![CDATA[misc]]></category>
		<category><![CDATA[blog]]></category>
		<category><![CDATA[blogging]]></category>
		<category><![CDATA[exerro]]></category>
		<category><![CDATA[template]]></category>
		<category><![CDATA[theme]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://nickt.com/?p=433</guid>
		<description><![CDATA[Today was a day for new WordPress templates! As I upgraded blog.http://nickt.com to the grid-focus theme, I was in the mood to continue and upgrade our travel blogs theme. I wanted a different look and feel from this blog, and one that would exhibit photographs well on the front page. I found the theme I [...]]]></description>
			<content:encoded><![CDATA[<p>Today was a day for new WordPress templates! As I <a href="http://nickt.com/2008/12/27/new-wordpress-theme-for-indigoprime/">upgraded blog.http://nickt.com to the grid-focus theme</a>, I was in the mood to continue and upgrade our <a href="http://exerro.com/">travel blogs</a> theme. I wanted a different look and feel from this blog, and one that would exhibit photographs well on the front page. I found the theme I was looking for with &#8220;<a href="http://graphpaperpress.com/2008/10/05/modularity-multimedia-theme-framework-for-wordpress/">Modularity</a>&#8221; from <a href="http://graphpaperpress.com/">Graphpaper Press</a>. I kept a copy of the instructions <a href="http://nickt.com/misc/ModularityINSTALL.html">available</a>. </p>
<p><a class="tt-flickr tt-flickr-Medium" title="blog.exerro.com screenshot" href="http://www.flickr.com/photos/indigoprime/3142974680/"><img class="aligncenter" src="http://farm4.static.flickr.com/3296/3142974680_e3b5b25fca.jpg" alt="blog.exerro.com screenshot" width="500" height="469" /></a></p>
<p>See it in action for yourself over at <a href="http://exerro.com/">blog.exerro.com</a>!</p>
]]></content:encoded>
			<wfw:commentRss>http://nickt.com/2008/12/27/new-wordpress-theme-for-exerro-too/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>New WordPress Theme for indigoprime</title>
		<link>http://nickt.com/2008/12/27/new-wordpress-theme-for-indigoprime/</link>
		<comments>http://nickt.com/2008/12/27/new-wordpress-theme-for-indigoprime/#comments</comments>
		<pubDate>Sat, 27 Dec 2008 20:57:04 +0000</pubDate>
		<dc:creator>nickt</dc:creator>
				<category><![CDATA[misc]]></category>
		<category><![CDATA[5thirtyone]]></category>
		<category><![CDATA[blog]]></category>
		<category><![CDATA[blogging]]></category>
		<category><![CDATA[indigoprime]]></category>
		<category><![CDATA[presentation]]></category>
		<category><![CDATA[theme]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://nickt.com/?p=422</guid>
		<description><![CDATA[I&#8217;ve been happy with the Hemingway-based Ninja-Monkeys theme, and I still use it over at my professional blog. Here&#8217;s what it looked like: As you can see, it&#8217;s a little bland, but perfect for text-heavy sites. Also, on the front/index page, there were problems with embedded elements and graphics spilling-over into the next column &#8211; [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve been happy with the <a title="Hemingway WordPress theme" href="http://warpspire.com/hemingway/">Hemingway</a>-based <a title="Ninja Monkeys" href="http://ninjamonkeys.co.za/">Ninja-Monkeys theme</a>, and I still use it over at my <a title="Nick Taylor's professional blog" href="http://nickt.com/">professional blog</a>. Here&#8217;s what it looked like:</p>
<p><a class="tt-flickr tt-flickr-Large" title="blog.http://nickt.com screenshot from December 2008" href="http://www.flickr.com/photos/indigoprime/3141439369/"><img class="aligncenter" src="http://farm4.static.flickr.com/3081/3141439369_cee587d694_b.jpg" alt="blog.http://nickt.com screenshot from December 2008" width="550" height="450" /></a></p>
<p>As you can see, it&#8217;s a little bland, but perfect for text-heavy sites. Also, on the front/index page, there were problems with embedded elements and graphics spilling-over into the next column &#8211; it looked ugly. </p>
<p>Lately, I&#8217;ve been wanting to add more, larger photos in-line in blog posts and I&#8217;m embedding more video.</p>
<p>So I hunted around for a new theme. I liked the <a title="pro photo WordPress themes" href="http://www.prophotoblogs.com/">prophoto themes</a>, but thought they were expensive. <a title="Graphpaper Press WordPress themes" href="http://graphpaperpress.com/">Graphpaper Press</a> has some wonderful themes, and in fact I may use one of theme over at <a title="Nick &amp; Kristys live travels" href="http://exerro.com/">our travel blog</a>, but they are also a paid-for commercial product (they are however, exactly what I&#8217;m looking for when we travel).</p>
<p>I was happy when I found Derek Punsalan&#8217;s site over at <a title="5thirtyone.com" href="http://5thirtyone.com/">5thirtyone.com</a>. He has a couple of free themes, including the highly visual <a title="unstandard WordPress theme" href="http://5thirtyone.com/the-unstandard">unstandard theme</a>, and the one I settled on, <a title="grid-focus WordPress theme. " href="http://5thirtyone.com/grid-focus">grid-focus</a>. </p>
<p>Grid-focus enables me to have large graphics and embeds in the post, up to 700px across (I edited the .css file to get more width here at the expense of deleting the third column). This shows off graphics well and eliminates the the problem of overlap between posts. </p>
<p>I think it looks great, don&#8217;t you?</p>
]]></content:encoded>
			<wfw:commentRss>http://nickt.com/2008/12/27/new-wordpress-theme-for-indigoprime/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Testing umapper</title>
		<link>http://nickt.com/2008/10/08/testing-umapper/</link>
		<comments>http://nickt.com/2008/10/08/testing-umapper/#comments</comments>
		<pubDate>Wed, 08 Oct 2008 13:56:46 +0000</pubDate>
		<dc:creator>nickt</dc:creator>
				<category><![CDATA[technology]]></category>
		<category><![CDATA[blog]]></category>
		<category><![CDATA[geo]]></category>
		<category><![CDATA[maps]]></category>
		<category><![CDATA[plugin]]></category>
		<category><![CDATA[test]]></category>
		<category><![CDATA[umapper]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://nickt.com/?p=254</guid>
		<description><![CDATA[I&#8217;ve just installed the umapper WordPress plugin. The map below is one I quickly created at the umapper website.  It looks like just the app I&#8217;ve been needing for our live-travels blog over at exerro.]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve just installed the <a title="umapper WordPress plugin" href="http://wordpress.org/extend/plugins/umapper">umapper WordPress plugin</a>. The map below is one I quickly created at the <a title="umapper" href="http://www.umapper.com">umapper</a> website. </p>
<div>
    
    <div style="width:440px;height:280px;float:">

    <object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=9,0,0,0" width="100%" height="100%" id="kmlPath=http://umapper.s3.amazonaws.com/maps/kml/10510.kml">
    <param name="FlashVars" value="kmlPath=http://umapper.s3.amazonaws.com/maps/kml/10510.kml" />
    <param name="movie" value="http://umapper.s3.amazonaws.com/templates/swf/embed.swf" />
    <param name="quality" value="high" />
    <param name="allowScriptAccess" value="always" />
    <param name="allowFullScreen" value="true" />
    <embed src="http://umapper.s3.amazonaws.com/templates/swf/embed.swf" FlashVars="kmlPath=http://umapper.s3.amazonaws.com/maps/kml/10510.kml" allowScriptAccess="always" allowFullScreen="true" quality="high" width="100%" height="100%" name="kmlPath=http://umapper.s3.amazonaws.com/maps/kml/10510.kml" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer" />
    </object>
    </div>
    </div>
<p>It looks like just the app I&#8217;ve been needing for our live-travels blog over at <a title="exerro blog" href="http://exerro.com/">exerro</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://nickt.com/2008/10/08/testing-umapper/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Using flickr again</title>
		<link>http://nickt.com/2008/04/05/using-flickr-again/</link>
		<comments>http://nickt.com/2008/04/05/using-flickr-again/#comments</comments>
		<pubDate>Sun, 06 Apr 2008 02:25:31 +0000</pubDate>
		<dc:creator>nickt</dc:creator>
				<category><![CDATA[technology]]></category>
		<category><![CDATA[4wd]]></category>
		<category><![CDATA[4x4]]></category>
		<category><![CDATA[aperture]]></category>
		<category><![CDATA[blog]]></category>
		<category><![CDATA[blogging]]></category>
		<category><![CDATA[blogs]]></category>
		<category><![CDATA[d90]]></category>
		<category><![CDATA[defender]]></category>
		<category><![CDATA[flickr]]></category>
		<category><![CDATA[Land Rover]]></category>
		<category><![CDATA[land rover]]></category>
		<category><![CDATA[software]]></category>
		<category><![CDATA[utah]]></category>
		<category><![CDATA[wordpress]]></category>
		<category><![CDATA[workflow]]></category>

		<guid isPermaLink="false">http://nickt.com/?p=33</guid>
		<description><![CDATA[I&#8217;ve decided to start using flickr again as I like how easy it makes blogging. For our travel blog, our workflow is based on Aperture and MarsEdit which in turn upload to both flickr and our WordPress blogs. I&#8217;m using flickrexport to get my images out of Aperture. Here&#8217;s a picture of one of my [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve decided to start using flickr again as I like how easy it makes blogging. For our <a href="http://exerro.com/">travel blog</a>, our workflow is based on Aperture and MarsEdit which in turn upload to both flickr and our WordPress blogs. I&#8217;m using <a href="http://connectedflow.com/flickrexport/">flickrexport</a> to get my images out of Aperture.</p>
<p>Here&#8217;s a picture of one of my trucks by way of a test.</p>
<p><a title="View 'D90 in Utah' on Flickr.com" href="http://www.flickr.com/photos/44124412397@N01/2390680073"><img src="http://farm3.static.flickr.com/2259/2390680073_bd4343ce13_m.jpg" border="0" alt="D90 in Utah" width="240" height="160" /></a></p>
<p>I&#8217;m going to have to remember that the pictures cannot be more than 400px wide given the two column layout in my current template. In MarsEdit, I&#8217;ll have to use the &#8220;small&#8221; size for images.</p>
]]></content:encoded>
			<wfw:commentRss>http://nickt.com/2008/04/05/using-flickr-again/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Blog upgrades</title>
		<link>http://nickt.com/2008/04/05/blog-upgrades/</link>
		<comments>http://nickt.com/2008/04/05/blog-upgrades/#comments</comments>
		<pubDate>Sun, 06 Apr 2008 00:48:07 +0000</pubDate>
		<dc:creator>nickt</dc:creator>
				<category><![CDATA[technology]]></category>
		<category><![CDATA[admin]]></category>
		<category><![CDATA[blog]]></category>
		<category><![CDATA[blogging]]></category>
		<category><![CDATA[openid]]></category>
		<category><![CDATA[plugin]]></category>
		<category><![CDATA[software]]></category>
		<category><![CDATA[tech]]></category>
		<category><![CDATA[theme]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://nickt.com/?p=31</guid>
		<description><![CDATA[Today I&#8217;ve done the lions-share of the work to upgrade my 3 blogs. Now, I&#8217;m not really sure why I have 3 blogs, other than it helps my different personas log their thoughts in appropriate places. The 3 blogs are: blog.exerro.com &#8211; a blog that I&#8217;ll use when we&#8217;re traveling blog.nickt.com &#8211; a blog for [...]]]></description>
			<content:encoded><![CDATA[<p>Today I&#8217;ve done the lions-share of the work to upgrade my 3 blogs. Now, I&#8217;m not really sure why I have 3 blogs, other than it helps my different personas log their thoughts in appropriate places. The 3 blogs are:</p>
<ul>
<li><a href="http://exerro.com">blog.exerro.com</a> &#8211; a blog that I&#8217;ll use when we&#8217;re traveling</li>
<li><a href="http://nickt.com">blog.nickt.com</a> &#8211; a blog for the consulting side of life<a href="http://nickt.com"></a></li>
<li><a href="http://nickt.com">blog.http://nickt.com</a> &#8211; this blog, which is a place for everything else</li>
</ul>
<p>I&#8217;ve kept a similar look and feel across all 3, I host them all on <a title="Media Temple" href="http://www.mediatemple.net/" target="_self">Media Temple</a>, which offers a great virtualized service. I&#8217;m running <a title="WordPress v2.5" href="http://codex.wordpress.org/Version_2.5" target="_self">WordPress 2.5</a> with a <a title="mysql" href="http://www.mysql.com/" target="_self">mysql</a> backend.</p>
<p>I&#8217;ve always liked <a title="Kyle Neath" href="http://warpspire.com/" target="_self">Kyle Neath&#8217;s</a> <a title="hemingway theme" href="http://warpspire.com/hemingway" target="_self">hemingway theme</a>, but I noticed it didn&#8217;t support <a title="WordPress widgets" href="http://widgets.wordpress.com/" target="_self">WordPress Widgets</a>. It&#8217;s possible to hack the template a little to get this working, then I discovered that the <a title="NinjaMonkeys" href="http://ninjamonkeys.co.za/" target="_self">NinjaMonkeys</a> had already done this. It saved me a lot of time. Checkout <a title="NinjaMonleys widgetized hemingway theme for WordPress" href="http://ninjamonkeys.co.za/ninja-monkeys-theme-widgetized-hemingway-for-wordpress-22/" target="_self">Ninja Monkeys! Theme &#8211; Widgetized Hemingway for WordPress 2.2+</a>.</p>
<p>I also added a few plugins:</p>
<ul>
<li><a title="akismet" href="http://akismet.com/" target="_self">akismet</a> &#8211; to cut down on comment spam</li>
<li>uberdose <a title="uberdose all in one seo pack" href="http://wp.uberdose.com/2007/03/24/all-in-one-seo-pack/" target="_self">all in one SEO pack</a></li>
<li><a title="flickr photo gallery for wordpress" href="http://tantannoodles.com/index.php" target="_self">flickr photo gallery</a> &#8211; this is the nicest of the flickr plugins</li>
<li><a title="google XML sitemaps generator" href="http://www.arnebrachhold.de/projects/wordpress-plugins/google-xml-sitemaps-generator/" target="_self">google XML sitemaps generator</a></li>
<li><a title="WP-OpenID" href="http://wordpress.org/extend/plugins/openid/" target="_self">WP-OpenID</a> &#8211; again, to cut down on comment spam</li>
<li><a title="Alex Kings WordPress plugins" href="http://alexking.org/projects/wordpress" target="_self">Twitter Tools</a> &#8211; to enable tweets on my sidebar, courtesy of Denver-based dev <a title="About Alex King" href="http://alexking.org/about" target="_self">Alex King</a></li>
</ul>
<p>As we&#8217;re off traveling again soon (follow our progress on <a title="Nick &amp; Kristy's travels" href="http://exerro.com/" target="_self">blog.exerro.com</a>), I&#8217;ve also started using <a title="MarsEdit - a Mac Blog editor" href="http://www.red-sweater.com/marsedit/" target="_self">Marsedit</a>, to allow us both to blog offline and upload text and images whenever we can connect to a ropey internet connection!</p>
]]></content:encoded>
			<wfw:commentRss>http://nickt.com/2008/04/05/blog-upgrades/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
