<?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>Tortoise IT &#187; News</title>
	<atom:link href="http://www.sean-barton.co.uk/category/news/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.sean-barton.co.uk</link>
	<description>Homepage of Sean Barton, a freelance website developer from Cheshire</description>
	<lastBuildDate>Sat, 19 Jun 2010 12:24:39 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.4</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Wordpress sites hosted by Rackspace Cloud hacked!</title>
		<link>http://www.sean-barton.co.uk/2010/06/wordpress-sites-hosted-by-rackspace-cloud-hacked/</link>
		<comments>http://www.sean-barton.co.uk/2010/06/wordpress-sites-hosted-by-rackspace-cloud-hacked/#comments</comments>
		<pubDate>Fri, 18 Jun 2010 13:03:15 +0000</pubDate>
		<dc:creator>Sean</dc:creator>
				<category><![CDATA[Bug Fixes]]></category>
		<category><![CDATA[Important!]]></category>
		<category><![CDATA[News]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[Troubleshooting]]></category>
		<category><![CDATA[Wordpress]]></category>

		<guid isPermaLink="false">http://www.sean-barton.co.uk/?p=451</guid>
		<description><![CDATA[I spent the best part of last night helping someone sort out their  hacked sites. An interesting problem really&#8230; it&#8217;s a hack that has been  effecting Wordpress sites hosted with Rackspace Cloud and early  speculation suggests it&#8217;s to do with an outdated version of PhpMyAdmin  that someone had managed to break [...]]]></description>
			<content:encoded><![CDATA[<p>I spent the best part of last night helping someone sort out their  hacked sites. An interesting problem really&#8230; it&#8217;s a hack that has been  effecting Wordpress sites hosted with Rackspace Cloud and early  speculation suggests it&#8217;s to do with an outdated version of PhpMyAdmin  that someone had managed to break into. Rackspace have, apparently, been  keeping quiet about it and have been logging into peoples servers and  removing the appropriate files and records (so i&#8217;m told).</p>
<p><strong>What does it do?</strong></p>
<p>The hack causes a file to be uploaded to one of your plugin directories  and masks itself as a language template file (pot). So far I have seen it hiding within All in one SEO pack and Si Captcha plugins but there are more! Within the file is a  huge amount of garbage that looks to be rubbish. In actual fact it&#8217;s  all valid php code but nonsense in the form of massive nested ternary IF statements using Hex codes as the condition and action parts. The point is, of course, to make the file look encrypted whilst actually masking a single function. This function simply calls a single row from the wp_options table, selects a portion of the data, reverses it runs it.</p>
<p>The second part of the hack is as follows&#8230; The database row that the above file decodes is stored on wp_options with an  option_name of rss_ followed by a long number&#8230; again an attempt to make it look genuine. Within the row is a  serialised string containing what looks like valid data but with a huge  encoded section in the middle. To the trained eye it&#8217;s known to be a  base64 encoded string, however, the twist is that the string and corresponding &#8216;eval&#8217; statement are reversed and therefore running base64_decode won&#8217;t work out of the box.</p>
<p>When reversed and run, it&#8217;s a chunk of php with yet more base64 encoding  inside but this time the correct way round! The end result is that it&#8217;s both a shell and a mysql browser  allowing anyone knowing the correct URL parameters to gain access to  both your file system and database(s).</p>
<p><strong>Scary huh! Anything else&#8230;</strong></p>
<p>Sadly yes! Most sites are reporting a new user in their users table with administrative rights sometimes called &#8216;amin&#8217;, other times having a &#8230; in it and other times completely hidden. I have read that the username is actually a huge amount of JS code which hides itself. Fairly clever to give the author of this hack credit where it&#8217;s due!</p>
<p>Next other sites are reporting some dodgy iFrames showing up in their posts. This is, apparently the extent of the problem however with complete access to your database and file structure they could be a lot more malicious.</p>
<p><strong>Is there a fix?</strong></p>
<p>Yep&#8230; Rackspace are, apparently, doing their best to fix the problem whilst not (at the time of writing and to my knowledge) taking responsibility for the problem. I am told that the site setup has been blamed and permissions of 777 have been mentioned. Again, all speculation so best go read up at more official sources.</p>
<p>So other than Rackspace sorting it you can do any of the following&#8230;</p>
<ul>
<li>Remove any spurious rows from wp_options where there is a large encoded block in the value field. You should be looking for anything with an option name of rss_&#8230;. where &#8230; is a large number.</li>
<li>Remove the user &#8216;amin&#8217; or anything with &#8216;&#8230;&#8217; inside it from your database and change any passwords. The hack can NOT give the hacker your admin password so don&#8217;t worry but it&#8217;s best to change it just in case. There are always ways!</li>
<li>Check your plugin files for anything that looks odd. The file that I have seen has the ending .H.bak.pot or something similar. Bear in mind that .h is a library file, .bak is a text backup file and .pot is a language file. Neither .h nor .bak have any business on a Wordpress site.</li>
</ul>
<p><strong>How can I stop this sort of thing from happening again?</strong></p>
<p>You technically can&#8217;t but there are a couple of things to help you out&#8230;</p>
<ul>
<li>Backup your site files and database regularly (where regularly is more frequent than once a month or just relying on your provider to do them!)</li>
<li>Turn off PHP commands like EXEC and EVAL. Anything that gives the PHP script access to your filesystem. It will definitely cause problems with plugins and sites but it&#8217;s the price we pay for safety</li>
<li>Make sure your permissions are all correct and check them regularly.</li>
<li>Check plugins before uploading them, a simple check in files for eval or exec should do it but it depends on how fussy you want to be!</li>
</ul>
<p><em>That&#8217;s it for me&#8230; there are loads of blogs about detailing more about the problem and I understand the threat to be several days old now. Still worth knowing isn&#8217;t it!</em></p>
]]></content:encoded>
			<wfw:commentRss>http://www.sean-barton.co.uk/2010/06/wordpress-sites-hosted-by-rackspace-cloud-hacked/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>NewMedias get&#8217;s it&#8217;s third musketeer!</title>
		<link>http://www.sean-barton.co.uk/2010/05/newmedias-gets-its-third-musketeer/</link>
		<comments>http://www.sean-barton.co.uk/2010/05/newmedias-gets-its-third-musketeer/#comments</comments>
		<pubDate>Fri, 21 May 2010 23:08:43 +0000</pubDate>
		<dc:creator>Sean</dc:creator>
				<category><![CDATA[News]]></category>
		<category><![CDATA[Personal Blog]]></category>
		<category><![CDATA[Statements and Rants]]></category>
		<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[Your Brand]]></category>

		<guid isPermaLink="false">http://www.sean-barton.co.uk/?p=441</guid>
		<description><![CDATA[Those of you who know me from the NewMedias Your Members project will remember that for years it has been a two man band. Some were sceptical about the future of Your Members and whether it was just going to fizzle away like so many other Wordpress plugins. I am pleased to now tell you [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.newmedias.co.uk"><img class="alignright size-full wp-image-444" title="logo" src="http://www.sean-barton.co.uk/wp-content/uploads/2010/05/logo.jpg" alt="logo" width="204" height="49" /></a>Those of you who know me from the NewMedias Your Members project will remember that for years it has been a two man band. Some were sceptical about the future of Your Members and whether it was just going to fizzle away like so many other Wordpress plugins. I am pleased to now tell you that actually no, we aren&#8217;t going anywhere and in fact will be trying to get things moving again with help of the latest member of the team, Glenn Pegden. Glenn has a varied background, likes long walks on the beach and candle lit dinners. I understand he also knows a thing or two about sales and therefore he will be kicking myself and Tim Nash into shape to get the plugin(s) updated, pretty and unmissable!</p>
<p>Current plans include a whole new website just for the Your Members plugin to house things like&#8230; wait for it&#8230; documentation and a proper list of the things it can actually do! We have recently released YM version 1.6 which is the best version yet! We hope to get some feedback and tweets to the new YM Twitter account for things that you, the community, would like to see and then get the next version out to you sometime in the next couple of months.</p>
<p>Any questions about the plugin, the project or Glenns vital statistics then you can get in touch with us at newmedias.co.uk or use my site contact form and we shall get back to you.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.sean-barton.co.uk/2010/05/newmedias-gets-its-third-musketeer/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Why buy from an ugly website?</title>
		<link>http://www.sean-barton.co.uk/2010/02/why-buy-from-an-ugly-website/</link>
		<comments>http://www.sean-barton.co.uk/2010/02/why-buy-from-an-ugly-website/#comments</comments>
		<pubDate>Wed, 03 Feb 2010 09:00:12 +0000</pubDate>
		<dc:creator>Sean</dc:creator>
				<category><![CDATA[Events]]></category>
		<category><![CDATA[News]]></category>
		<category><![CDATA[Personal Blog]]></category>
		<category><![CDATA[SEO]]></category>
		<category><![CDATA[Shameless Plugs]]></category>
		<category><![CDATA[Statements and Rants]]></category>
		<category><![CDATA[Usability]]></category>
		<category><![CDATA[blacklist]]></category>
		<category><![CDATA[design]]></category>

		<guid isPermaLink="false">http://www.sean-barton.co.uk/?p=394</guid>
		<description><![CDATA[I have been thinking a great deal recently about the work I do and how much of it is purely functional before someone else goes away and ruins it with their bad design choices. I attended ThinkVisibility 2 last September and it was a real eye opener with regard to the talks I was subjected [...]]]></description>
			<content:encoded><![CDATA[<p>I have been thinking a great deal recently about the work I do and how much of it is purely functional before someone else goes away and ruins it with their bad design choices. I attended <a title="Think Visibility 3" href="http://www.thinkvisibility.com">ThinkVisibility 2</a> last September and it was a real eye opener with regard to the talks I was subjected to. One was to do with eye tracking and we were shown an example of a number of users&#8217; browsing patterns for different sites. I never realised how predictable users can be with the way they look at some sites.</p>
<p>However, one of the sites we were shown was Amazon and it shows the users having trouble getting around. I have to ask myself exactly how on earth Amazon makes money at all when people are obviously struggling to find what they want, or worse, find what they want but can&#8217;t work out how to pay for the thing!</p>
<p>I have started looking at websites in a new light now and often refuse to buy anything from a site that I deem to be <em>unworthy</em> <em>of my custom</em>. It sounds a little bit odd for me to say that but I honestly do think twice about getting out my wallet if it takes me longer than I want to spend finding the items in the first place.</p>
<p>I would almost be inclined to start a black list of sites that, in my opinion, were badly designed but before long it would be unmaintainable <img src='http://www.sean-barton.co.uk/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>What, however, I will do is comment on a few sites that I do get along with and tell you why&#8230;</p>
<p>#1 Google<br />
I was introduced to Google in 2001 when I was at college and my lecturers suggested they use it because of the distinct lack of advertising. This, of course, has now changed and Google has a colossal advertising network. Let me ask you this though&#8230; does it get in the way of your browsing? I say no it doesn&#8217;t and the clean cut and fast interface they provide is exactly what I want to see.</p>
<p>#2 eBay &amp; Paypal<br />
I have been using eBay and Paypal for years as I am sure most of Europe and the US have been as well. I find the interface on eBay inkeeping with the &#8216;fun&#8217; theme of the dutch auction and the clean lines of Paypal when you come to actually hand over your money a refreshing contrast. Would you really want to hand over your card details on a site that looks like a child has written it? eBay offers a good and intuitive search functionality but also excellent browsing and viewing product pages.</p>
<p>#3 Apple<br />
I may be criticised for saying this but I think that apple also have the right idea with regard to their site design. Design, of course, is something that Apple have grown up with and have continued to excel at through the ages. I find the homepage to be a no nonsense view of what they want you to see (which at the moment is the new iPad (a big iPod in my opinion.. not a great deal of product design elaboration there!)). The shop is non contentional but you always manage to find your product and get it into your shopping cart with no problems.</p>
<p>#4 Facebook<br />
To start, I hate facebook&#8230; It is one of those sites that just ropes people in to basically live until the shelf life runs out and they move onto something else. They are managing to keep ahead of (or in conjunction with) Twitter quite well at the moment but then the sites have somewhat different core strengths. However, my hatred aside, you really have to give it to them that the design of the site, the navigation and the speed are all pretty good indeed. The use of Ajax and Javascript are a credit to the site and the user experience is a good one indeed.</p>
<p>#5 Bing<br />
I don&#8217;t use the search engine at all to be honest as I am firmly a Google man (stubborn really if anything else) however, one has to appreciate the front page of Bing. Instead of going the Google route and showing nothing or the Yahoo route and showing everything they have shown interesting bits of information about random things. The picture in the background changes frequently (much like Googles header image) and the hotspots on the image give interesting information about the scene and it&#8217;s contents. I like this method of not being forced to swallow news (or worse, wait for it to load!) that I don&#8217;t want to see but providing me with an interesting picture with the opportunity to easily get more information. Well done Microsoft on your first half decent search engine page!</p>
<p>The list could go on and on but I have things to do. Please do feel free to add your own likes and dislikes to my list. The point was to highlight the fact that design and placement of a website is often not as important to some people as it should be. These examples are sites whom I think have done it properly. Copying them is not the best thing to do at all but use them as an inspiration to guide you in making the right decisions for your own homepages.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.sean-barton.co.uk/2010/02/why-buy-from-an-ugly-website/feed/</wfw:commentRss>
		<slash:comments>7</slash:comments>
		</item>
		<item>
		<title>Think Visibility 2, It&#8217;s all over (for now)</title>
		<link>http://www.sean-barton.co.uk/2009/09/think-visibility-2-its-all-over-for-now/</link>
		<comments>http://www.sean-barton.co.uk/2009/09/think-visibility-2-its-all-over-for-now/#comments</comments>
		<pubDate>Sun, 13 Sep 2009 22:04:12 +0000</pubDate>
		<dc:creator>Sean</dc:creator>
				<category><![CDATA[Events]]></category>
		<category><![CDATA[News]]></category>
		<category><![CDATA[SEO]]></category>
		<category><![CDATA[Shameless Plugs]]></category>

		<guid isPermaLink="false">http://www.sean-barton.co.uk/?p=321</guid>
		<description><![CDATA[Well, although I generally don&#8217;t do plugs I stepped out of my norm in my last post to advertise Think Visibility 2 so it seems only fair to let you know how it went.
Firstly a real well done to The Hodge for organising such a fantastic event. The quality of speaker and diversity in the [...]]]></description>
			<content:encoded><![CDATA[<p>Well, although I generally don&#8217;t do plugs I stepped out of my norm in my last post to advertise <a title="Think Visibility 2 homepage" href="http://www.thinkvisibility.com/" target="_blank">Think Visibility 2</a> so it seems only fair to let you know how it went.</p>
<p>Firstly a real well done to<a title="Dominic Hodgsons site" href="http://www.thehodge.co.uk/" target="_blank"> The Hodge</a> for organising such a fantastic event. The quality of speaker and diversity in the talks made for a really interesting day. My only wish was that there would have been more time and more speakers. Not a criticism really but by the time you have watched one or two talks you realise you could sit there all day and absorb information from the guys that are up there doing their stuff.</p>
<p>I was really only there to help out however the actual delegates all seemed to be getting on well and networking with each other. It was a little sad watching a room full of grown ups (mainly men) sitting &#8216;playing&#8217; on their iPhones &#8216;Tweeting&#8217; through the entire thing but that is kind of expected given the nature of the event. This, however, was cleverly exploited when the delegates were asked to &#8216;Tweet&#8217; in questions for the &#8216;panel show&#8217; which amused everyone around the half way mark.</p>
<p>My personal favourite talk was on usability studies using eye tracking techniques to record the unconscious interest of the brain. It kind of confirmed that amazons site design is rubbish and that you can design sites to hide content you don&#8217;t want the user to red right in the middle of the screen. There were also numerous Wordpress talks which proved interesting indeed. <a href="http://yoast.com/" target="_blank">Joost De Valk</a> for one, although not the most inspirational speaker, had some good ideas to talk about and plans for great things to come.</p>
<p>To conclude briefly a great time was had by all, friends were made, business cards exchanged and geeky (and some non geeky) brains were picked. So thanks once again to Dom for organising the event and all the speakers/delegates for making it such a good event. I imagine everyone is now really looking forward (and saving up for) Think Visibility 3 which I beleive is in March 2010 (keep an eye on The Hodges site for more info).</p>
]]></content:encoded>
			<wfw:commentRss>http://www.sean-barton.co.uk/2009/09/think-visibility-2-its-all-over-for-now/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Think Visibility 2</title>
		<link>http://www.sean-barton.co.uk/2009/08/think-visibility-2/</link>
		<comments>http://www.sean-barton.co.uk/2009/08/think-visibility-2/#comments</comments>
		<pubDate>Fri, 21 Aug 2009 11:01:25 +0000</pubDate>
		<dc:creator>Sean</dc:creator>
				<category><![CDATA[Events]]></category>
		<category><![CDATA[News]]></category>
		<category><![CDATA[SEO]]></category>
		<category><![CDATA[Shameless Plugs]]></category>
		<category><![CDATA[The Hodge]]></category>
		<category><![CDATA[Think Visibility 2]]></category>
		<category><![CDATA[Tim Nash]]></category>

		<guid isPermaLink="false">http://www.sean-barton.co.uk/?p=318</guid>
		<description><![CDATA[I would like to draw peoples attention to an event occurring in Leeds on the 12th September which I shall be attending. In light of the Extremely successful Think Visibility event earlier this year, Dominic Hodgson (The Hodge) has decided to host another!
Think Visibility describes itself as a series of conferences on &#8220;the things that [...]]]></description>
			<content:encoded><![CDATA[<p>I would like to draw peoples attention to an event occurring in Leeds on the 12th September which I shall be attending. In light of the Extremely successful Think Visibility event earlier this year, <a title="Dominic Hodgsons site" href="http://thehodge.co.uk" target="_blank">Dominic Hodgson</a> (The Hodge) has decided to host another!</p>
<p>Think Visibility describes itself as <em>a series of conferences on &#8220;<em>the things that usually get left behind in the web design process</em>&#8220;</em>. I wasn&#8217;t fortunate enough to attend the first event but am very much looking forward to this one.</p>
<p>Speakers include Rob Manuel (The guy that helped found b3ta), Joost de Valk whom I know as a very popular Wordpress Developer, Tim Nash (some bloke), The Hodge himself and many <a title="Think Visibility 2 speakers" href="http://www.thinkvisibility.com/speakers/" target="_blank">more</a>.</p>
<p>Visit <a title="Think Visibility 2 homepage" href="http://www.thinkvisibility.co.uk" target="_blank">www.thinkvisibility.co.uk</a> to read more about the event and buy your ticket. Use the coupon code TIMNASH to get £20 off the price.</p>
<p>Tim Nash is also hosting a <a title="Tims pre event talk post" href="http://www.timnash.co.uk/08/2009/think-visibility-2-oh-yes-its-back/" target="_blank">pre-event talk</a> for all those interested on the Friday. Visit his blog <a title="Tims pre event talk post" href="http://www.timnash.co.uk/08/2009/think-visibility-2-oh-yes-its-back/" target="_blank">here</a> for more information but rest assured that any meetup with <a title="Tim Nash's blog" href="http://www.timnash.co.uk" target="_blank">Tim</a> is always eventful!</p>
<p>Now go buy a ticket and I shall see you there!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.sean-barton.co.uk/2009/08/think-visibility-2/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Wordpress PHP Execution from within a Post or Page</title>
		<link>http://www.sean-barton.co.uk/2009/04/wordpress-php-execution-from-within-a-post-or-page/</link>
		<comments>http://www.sean-barton.co.uk/2009/04/wordpress-php-execution-from-within-a-post-or-page/#comments</comments>
		<pubDate>Wed, 08 Apr 2009 12:57:07 +0000</pubDate>
		<dc:creator>Sean</dc:creator>
				<category><![CDATA[News]]></category>

		<guid isPermaLink="false">http://www.sean-barton.co.uk/?p=258</guid>
		<description><![CDATA[I have just written a plugin which allows you to run PHP code from a Wordpress post or page. The story is that I needed to allow a Wordpress user to hook into a bespoke function from the body of a page. There were two obvious ways to do this:

Add a new Wordpress Page custom [...]]]></description>
			<content:encoded><![CDATA[<p>I have just written a plugin which allows you to run PHP code from a Wordpress post or page. The story is that I needed to allow a Wordpress user to hook into a bespoke function from the body of a page. There were two obvious ways to do this:</p>
<ul>
<li>Add a new Wordpress Page custom template and put your code in there (no security holes but severely limited in its uses)</li>
<li>Add a new plugin to allow PHP code to be embedded into post content</li>
</ul>
<p>Obviously I have gone with the plugin method for its increased flexibility and portability but I must mention before we go any further that it makes use of the PHP exec command. As you may well know this allows the user two run ANY code they like and this plugin merely facilitates that by adding it to Wordpress. There are, however, so many more plus points for this type of ability so it&#8217;s an acceptable risk (to me <img src='http://www.sean-barton.co.uk/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  ).</p>
<p>The plugin uses the Wordpress shortcode API (so no horrible regular expressions) to add a new hook into the content of a post or page. Any content encapsulated in the hook is considered to be PHP code and will be executed every time that page or post is shown. The plugin can easily handle smart quotes and HTML so there is no need to use the HTML tab within the post edit page like some other plugins require you to do.</p>
<p><strong>Usage</strong></p>
<p>To use the plugin you simply use [sb_php][/sb_php] and put PHP code between the hooks as follows:</p>
<pre>[sb_php]echo 'this is PHP code';[/sb_php]</pre>
<p>will output:</p>
<p>this is PHP code</p>
<p><strong>Download: <a class="downloadlink" href="http://www.sean-barton.co.uk/wp-content/plugins/download-monitor/download.php?id=9" title="Version 1 downloaded 250 times" >SB Post PHP (408 bytes)</a></strong></p>
]]></content:encoded>
			<wfw:commentRss>http://www.sean-barton.co.uk/2009/04/wordpress-php-execution-from-within-a-post-or-page/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>My Forum</title>
		<link>http://www.sean-barton.co.uk/2009/01/my-forum/</link>
		<comments>http://www.sean-barton.co.uk/2009/01/my-forum/#comments</comments>
		<pubDate>Sun, 11 Jan 2009 22:17:35 +0000</pubDate>
		<dc:creator>Sean</dc:creator>
				<category><![CDATA[News]]></category>

		<guid isPermaLink="false">http://www.sean-barton.co.uk/?p=177</guid>
		<description><![CDATA[I have been getting the odd comment about various posts of mine and each one has lead to an off site conversation about the comment. I decided to install a forum on this site so if ever anyone decides to ask me anything then they can do without any problems.
I have used Simplepress Forum as [...]]]></description>
			<content:encoded><![CDATA[<p>I have been getting the odd comment about various posts of mine and each one has lead to an off site conversation about the comment. I decided to install a forum on this site so if ever anyone decides to ask me anything then they can do without any problems.</p>
<p>I have used Simplepress Forum as it installs like a plugin unlike BBPress which is separate and is a pain to integrate.</p>
<p>Feel free to ask me anything, I get a few emails about Google Map API and Geocoding. If you prefer not to speak on a public forum then my email address is barton.sean@gmail.com</p>
<p>Update: Binned it because I decided SimplePress was rubbish <img src='http://www.sean-barton.co.uk/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://www.sean-barton.co.uk/2009/01/my-forum/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>A NEW Wordpress Session Manager</title>
		<link>http://www.sean-barton.co.uk/2009/01/a-new-wordpress-session-manager/</link>
		<comments>http://www.sean-barton.co.uk/2009/01/a-new-wordpress-session-manager/#comments</comments>
		<pubDate>Fri, 02 Jan 2009 21:23:19 +0000</pubDate>
		<dc:creator>Sean</dc:creator>
				<category><![CDATA[News]]></category>
		<category><![CDATA[Session Manager]]></category>
		<category><![CDATA[Wordpress]]></category>

		<guid isPermaLink="false">http://www.sean-barton.co.uk/?p=102</guid>
		<description><![CDATA[Over the Christmas holiday (2008-2009), I have been rewriting the original Wordpress Session Manager for Wordpress 2.7 and extending the feature list slightly.
It is now freely available to download on the Session Manager download and information page.
Give it a try and let me know what you think!
]]></description>
			<content:encoded><![CDATA[<p>Over the Christmas holiday (2008-2009), I have been rewriting the original Wordpress Session Manager for Wordpress 2.7 and extending the feature list slightly.</p>
<p>It is now freely available to download on the <a href="http://www.sean-barton.co.uk/wordpress-session-manager/">Session Manager</a> download and information page.</p>
<p>Give it a try and let me know what you think!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.sean-barton.co.uk/2009/01/a-new-wordpress-session-manager/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>YourMembers</title>
		<link>http://www.sean-barton.co.uk/2008/06/yourmembers/</link>
		<comments>http://www.sean-barton.co.uk/2008/06/yourmembers/#comments</comments>
		<pubDate>Mon, 23 Jun 2008 19:24:50 +0000</pubDate>
		<dc:creator>Sean</dc:creator>
				<category><![CDATA[News]]></category>

		<guid isPermaLink="false">http://www.sean-barton.co.uk/?p=8</guid>
		<description><![CDATA[I haven&#8217;t posted anything for some time now so I thought I might give a glimpse of what I&#8217;ve been working on. Mainly I&#8217;ve been working on Zencart fixes and smaller projects but I want to tell you about one of the larger ones called YourMembers.
Your Members is a feature packed Membership Management Plugin allowing [...]]]></description>
			<content:encoded><![CDATA[<p>I haven&#8217;t posted anything for some time now so I thought I might give a glimpse of what I&#8217;ve been working on. Mainly I&#8217;ve been working on Zencart fixes and smaller projects but I want to tell you about one of the larger ones called YourMembers.</p>
<address>Your Members is a feature packed Membership Management Plugin allowing anyone to turn a Wordpress Blog into a fully functioning members site which can accept payments through Paypal.</address>
<p>I think the above paragraph from <a title="The YourMembers site" href="http://www.newmedias.co.uk" target="_blank">www.newmedias.co.uk</a> gives a good indication of what it does but it doesn&#8217;t really do it justice.</p>
<p>YourMembers allows you to set subscription levels for your blog so some posts are available to some but not others. It allows you to sell individual posts at set prices if you want to or even a combination of the two options if you like. ie: if a post is available only to premium members then you can also set it purchasable so others can purchase them.</p>
<p>I am currently in the process of integrating digital delivery of files through this system so a purchasable post can have a file as part of its content. I am also working on a Wordpress MU version of the plugin.</p>
<p>Keep your eye on <a title="The YourMembers site" href="http://www.newmedias.co.uk" target="_blank">www.newmedias.co.uk</a> for more information</p>
<p><strong>UPDATE: </strong>Of course you will be pleased to hear that YourMembers is now available at <a title="The YourMembers site" href="http://www.newmedias.co.uk" target="_blank">newmedias.co.uk</a>. From now until the 10th July 2008 there will be a $20 reduction in cost available by way of a voucher (Details on the website)</p>
]]></content:encoded>
			<wfw:commentRss>http://www.sean-barton.co.uk/2008/06/yourmembers/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Welcome to my blog</title>
		<link>http://www.sean-barton.co.uk/2008/05/welcome-to-my-blog/</link>
		<comments>http://www.sean-barton.co.uk/2008/05/welcome-to-my-blog/#comments</comments>
		<pubDate>Wed, 14 May 2008 20:25:13 +0000</pubDate>
		<dc:creator>Sean</dc:creator>
				<category><![CDATA[News]]></category>

		<guid isPermaLink="false">http://www.sean-barton.co.uk/?p=3</guid>
		<description><![CDATA[Welcome to my blog. Heres what It's all about!]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ll start by saying that everything I post is something I have used which means that you get to skip all those silly mistakes that are inevitable when writing a piece of code. I&#8217;ll try to give an example of the working product with code snippets and pointers on where I went wrong so you don&#8217;t have to. I generally work in PHP / MYSQL but I will probably try out new languages (as i learn them!).</p>
<p>All i can say is, feedback appreciated.</p>
<p>Sean</p>
]]></content:encoded>
			<wfw:commentRss>http://www.sean-barton.co.uk/2008/05/welcome-to-my-blog/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
