<?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>Henry Moyo &#187; reviews</title>
	<atom:link href="http://blog.henrymoyo.com/category/reviews/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.henrymoyo.com</link>
	<description>Web design &#38; web development Canterbury - London</description>
	<lastBuildDate>Mon, 10 Aug 2009 13:45:16 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=2008</generator>
		<item>
		<title>4 8 15 16 23 42&#8230;</title>
		<link>http://blog.henrymoyo.com/2009/01/27/4-8-15-16-23-42/</link>
		<comments>http://blog.henrymoyo.com/2009/01/27/4-8-15-16-23-42/#comments</comments>
		<pubDate>Tue, 27 Jan 2009 17:28:00 +0000</pubDate>
		<dc:creator>michelle</dc:creator>
				<category><![CDATA[reviews]]></category>

		<guid isPermaLink="false">http://blog.henrymoyo.com/?p=271</guid>
		<description><![CDATA[                                  Yes, that&#8217;s right my die hard fans. Lost is back. Season 5 started on Sunday and its official. We are counting down to the biggest climax of all series ever! Only 34 episodes this season and since we started [...]]]></description>
			<content:encoded><![CDATA[<p>                                 <img class="alignnone size-medium wp-image-273" title="lost-season-4a1" src="http://blog.henrymoyo.com/wp-content/uploads/2009/01/lost-season-4a1-300x153.jpg" alt="lost-season-4a1" width="300" height="153" /></p>
<p>Yes, that&#8217;s right my die hard fans. Lost is back. Season 5 started on Sunday and its official. We are counting down to the biggest climax of all series ever! Only 34 episodes this season and since we started with a double, that means only 32 to go. Can I get a whoop whoop! I don&#8217;t know what you doing, but don&#8217;t even try to call me on a Sunday evening. I got a date with Jack and Sawyer. That&#8217;s right, Kate aint got nothing on me. (&#8220;,)</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.henrymoyo.com/2009/01/27/4-8-15-16-23-42/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>WordPress 2.7 Recent Comments Link Not Working</title>
		<link>http://blog.henrymoyo.com/2009/01/22/wordpress-27-recent-comments-link-not-working/</link>
		<comments>http://blog.henrymoyo.com/2009/01/22/wordpress-27-recent-comments-link-not-working/#comments</comments>
		<pubDate>Thu, 22 Jan 2009 02:14:07 +0000</pubDate>
		<dc:creator>henry</dc:creator>
				<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[reviews]]></category>
		<category><![CDATA[web development]]></category>

		<guid isPermaLink="false">http://blog.henrymoyo.com/?p=258</guid>
		<description><![CDATA[Just to give you the heads up if you use the sidebar on your wordpress blog. I recently upgraded my blog to the latest version &#8211; WordPress 2.7 and have found a small bug which I&#8217;m not entirely sure wasn&#8217;t there before, but I only noticed it today after the upgrade. I use the Recent [...]]]></description>
			<content:encoded><![CDATA[<p>Just to give you the heads up if you use the sidebar on your wordpress blog. I recently upgraded my blog to the latest version &#8211; WordPress 2.7 and have found a small bug which I&#8217;m not entirely sure wasn&#8217;t there before, but I only noticed it today after the upgrade.</p>
<p>I use the Recent Comment widget on the sidebar to display recent comments on my posts in the form of &#8220;{authorLink} On {postLink}&#8221;. I noticed that the author link (links to website of whoever posted a comment on one of my posts) didn&#8217;t seem to work in all browsers accept Google Chrome (strangely enough).<br />
<span id="more-258"></span><br />
On further investigation into the source of the page, I realised that for some reason the link generated was urlEncoded and not formated right.</p>
<p>e.g</p>
<p><span style="color: #b9dc51;">&#8216;http://www.example.com%27%20rel%3D%27external%20nofollow&#8217;</span></p>
<p>instead of</p>
<p><span style="color: #b9dc51;">&#8220;http://www.example.com&#8221; rel=&#8221;external nofollow&#8221;</span></p>
<p>After a few minutes of debugging and digging around through the wordpress pages. I eventually found the source of the problem located on <span style="color: #f90558;">line 148</span> in <span style="color: #f90558;">category-template.php</span> in the <span style="color: #f90558;">wp-includes</span> folder.</p>
<p><span style="color: #b9dc51;">$return = &#8220;&lt;a href=&#8217;$url&#8217; rel=&#8217;external nofollow&#8217; class=&#8217;url&#8217;&gt;$author&lt;/a&gt;&#8221;;</span></p>
<p>I simply changed the line above to</p>
<p><span style="color: #b9dc51;">$return = &#8220;&lt;a href=\&#8221;$url\&#8221; rel=\&#8221;external nofollow\&#8221; class=\&#8221;url\&#8221;&gt;$author&lt;/a&gt;&#8221;;</span></p>
<p>and that sorted out the format of the output string and PRESTO the links work again.</p>
<p style="padding-left: 30px;"><span style="color: #99cc00;"><span style="color: #800080;">* UPDATE &#8211; 9th February 2009</span><br />
</span></p>
<p style="padding-left: 30px;">Just a heads up on this post.</p>
<p style="padding-left: 30px;">Some WP users have reported that they&#8217;ve found the line in question in &#8220;comment-template.php&#8221; and not in &#8220;category-template.php&#8221;. So if you cant find it in one of them, it&#8217;s most likely in the other.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.henrymoyo.com/2009/01/22/wordpress-27-recent-comments-link-not-working/feed/</wfw:commentRss>
		<slash:comments>9</slash:comments>
		</item>
		<item>
		<title>Mel Gibsons&#8217; Apocalypto</title>
		<link>http://blog.henrymoyo.com/2009/01/11/mel-gibsons-apocalypto/</link>
		<comments>http://blog.henrymoyo.com/2009/01/11/mel-gibsons-apocalypto/#comments</comments>
		<pubDate>Sun, 11 Jan 2009 13:51:51 +0000</pubDate>
		<dc:creator>michelle</dc:creator>
				<category><![CDATA[Random]]></category>
		<category><![CDATA[reviews]]></category>
		<category><![CDATA[movies]]></category>

		<guid isPermaLink="false">http://blog.henrymoyo.com/?p=244</guid>
		<description><![CDATA[I&#8217;ve been in the movie business for a couple of years now, and I know now never to trust anyone&#8217;s opinion of a film. I missed out on what I consider one of the greatest projects to hit the big screen and had to settle to watch it on a measly 42inch screen. Not only [...]]]></description>
			<content:encoded><![CDATA[<p class="MsoNormal"><a href="http://blog.henrymoyo.com/wp-content/uploads/2009/01/apocalyto1.jpg"><img class="alignnone size-thumbnail wp-image-245" title="apocalyto" src="http://blog.henrymoyo.com/wp-content/uploads/2009/01/apocalyto1-150x150.jpg" alt="" width="150" height="150" /></a></p>
<p class="MsoNormal">I&#8217;ve been in the movie business for a couple of years now, and I know now never to trust anyone&#8217;s opinion of a film. I missed out on what I consider one of the greatest projects to hit the big screen and had to settle to watch it on a measly 42inch screen. Not only that, but Blockbuster didn’t have the title in Blu-Ray, so the whole high def stuff also went out the window. I mean fate must have had it in for me, because I had also just missed a free showing on Virgin 1 and ended up paying £3 to rent it. Why all the hassle? All because I listened to someone who said that the film was a disappointment, not worth me going to the cinema for it. I almost missed out on a film that ranks high in my top 10 favourite films ever.<span id="more-244"></span></p>
<p class="MsoNormal">So what is it that I am raving about? Well, it’s no other than Mel Gibson’s Apocalypto. I mean, fair enough <span> </span>its subtitled, but I was so engrossed in the humorous antics of <span><span>Israel Ríos</span> as Cocoa Leaf</span>, the bloody scenes (and from a diehard fan of horrors and action films, there is a lot of cringe worthy scenes), and also the sad bits that I didn’t even notice I was reading the dialogue. This film has a little bit for everyone – except those who are under 18 (obviously!) – and I think Mel Gibson is an amazing director, writer and producer! His Passion of the Christ is the only film that’s made me cry near enough continuously and he has just gone and outdone himself again.</p>
<p><span>So what’s it all about? Well,<span> it’s s</span><span>et in ancient Central America, during the declining period of the<span> </span>Maya civilization. <span> </span><span>Apocalypto</span><span> </span>depicts the journey of a<span> </span>Mesoamerican<span> </span>tribesman who must escape human sacrifice and rescue his family after the capture and destruction of his village.</span></span><span><span> He is then taken on a perilous journey to a world ruled by fear and oppression where a harrowing end awaits him. Through a twist of fate and spurred by the power of his love for his woman and his family he will make a desperate break to return home and to ultimately save his way of life.</span></span></p>
<p class="MsoNormal"><span><span>Mel Gibson only cast actors </span></span><span>of<span> </span>Native American<span> </span>descent</span><span><span> who were not known so that they could not be linked to previous roles</span></span><span>, and it has<span> </span>Yucatec Maya<span> </span>dialogue. </span></p>
<p class="MsoNormal"><span><span>All I’m saying is&#8230; please visit a Blockbuster near you and watch this.</span></span></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.henrymoyo.com/2009/01/11/mel-gibsons-apocalypto/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Media Temple Grid Service Hosting Review</title>
		<link>http://blog.henrymoyo.com/2008/10/24/media-temple-grid-service-hosting-review/</link>
		<comments>http://blog.henrymoyo.com/2008/10/24/media-temple-grid-service-hosting-review/#comments</comments>
		<pubDate>Fri, 24 Oct 2008 22:40:28 +0000</pubDate>
		<dc:creator>henry</dc:creator>
				<category><![CDATA[Digital]]></category>
		<category><![CDATA[Websites]]></category>
		<category><![CDATA[hosting]]></category>
		<category><![CDATA[reviews]]></category>
		<category><![CDATA[grid service]]></category>
		<category><![CDATA[media temple]]></category>

		<guid isPermaLink="false">http://blog.henrymoyo.com/?p=50</guid>
		<description><![CDATA[It&#8217;s been 2 whole weeks since I&#8217;ve had my Media Temple grid service hosting account and so far I&#8217;m loving it. Although I did have a few problems with my Urchin stats from the start of my service (500 error page), a (mt) technical assistant was able to have the issue sorted out within 24hrs [...]]]></description>
			<content:encoded><![CDATA[<p style="text-align: center;">
<p style="text-align: center;">
<p style="text-align: center;"><img class="aligncenter size-full wp-image-75" style="border: 0pt none;" title="Henry Moyo . Media Temple . Grid Service" src="http://blog.henrymoyo.com/wp-content/uploads/2008/10/mt.jpg" alt="" width="480" height="150" /></p>
<p>It&#8217;s been 2 whole weeks since I&#8217;ve had my Media Temple grid service hosting account and so far I&#8217;m loving it. Although I did have a few problems with my Urchin stats from the start of my service (500 error page), a (mt) technical assistant was able to have the issue sorted out within 24hrs of when I sent out an email to them which is quicker than my other hosting provider (not naming names) has responded to emails.</p>
<p>The control panel is intuitive, well layed out, easy to navigate and beatiful. They have a great designer or team of designers at media temple. The only down side I&#8217;ve found with the account centre <span id="more-50"></span>is that it can be very slow, I mean annoyingly slow reminiscent of the days of dial up. Well, maybe I&#8217;m exagerating a little there but it could seriously do with a little boost.</p>
<p>The one touch install is just brilliant, saves you a lot of time and effort configuring files especially for users who don&#8217;t have the knowledge to manually install the relevant sites or blogs offered but would like to use them.</p>
<p>Being a web developer, it also gives me a lot of control over what I can do with the websites I build. It doesn&#8217;t give you as much control as you&#8217;ld have with a dedicated server but you definately get a lot for the money you pay and for most people, it definately gives you more control than you can shake a stick at. I&#8217;m eagerley anticipating the launch of the (cs) Cluster-Server in Q4 of 2008(any day now) which will be the successor to the grid-service and hopefuly most of the issues currently on the grid-service will be ironed out.</p>
<p>Another plus for the grid-service is it allows you to host upto 100 domains in one account without any extra charges and every one of those domains can have a database each, allowing you to host all your sites, your friends sites and even client sites if you wanted too. I don&#8217;t know about you, but I have a number of websites which are hosted by different providers and for the same services (often less) that i get with the media temple grid service but are a lot more expensive. On average, I&#8217;m paying near enough the same amount of money if not more every month for the hosting of one domain than I am for multiple domains on the grid service.</p>
<p>I took a gamble when going for the media temple grid service as I had read a lot of bad reviews online about website downtime and other issues, but liked the look of the site so much and wanted to give their control panel a go. So far I haven&#8217;t experienced any downtime on my site (hoping it stays that way) and the customer service has been absolutely phenomenal, a lot better than expected.</p>
<p>Media Temple grid service if far from perfect, but which hosting provider or package is? For the amount of goodies you get with the (gs), although I find the account centre (control panel) slow, $20 dollars a month is a bargain and well justified.</p>
<p>For now, I&#8217;m loving the hosting and (mt) definately get my vote.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.henrymoyo.com/2008/10/24/media-temple-grid-service-hosting-review/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
	</channel>
</rss>
