<?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>Andy Fielder</title>
	<atom:link href="http://www.andyfielder.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.andyfielder.com</link>
	<description>Freelance Web Designer, Developer and SEO in St Albans</description>
	<lastBuildDate>Mon, 01 Mar 2010 21:36:25 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Wordpress Blogs Same Users</title>
		<link>http://www.andyfielder.com/2010/03/wordpress-blogs-same-users/</link>
		<comments>http://www.andyfielder.com/2010/03/wordpress-blogs-same-users/#comments</comments>
		<pubDate>Mon, 01 Mar 2010 21:35:40 +0000</pubDate>
		<dc:creator>Andy Fielder</dc:creator>
				<category><![CDATA[Bits]]></category>
		<category><![CDATA[Blog]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://www.andyfielder.com/?p=144</guid>
		<description><![CDATA[Another guide i thought i would commit to my blog for the future. These code snippets allow you to had any number of wp blogs and use the wordpress users all from the same blog.
To start with install the 1st blog as per the instructions. Make the table prefix something you will recognise eg &#8220;wp_main_&#8221; [...]]]></description>
			<content:encoded><![CDATA[<p>Another guide i thought i would commit to my blog for the future. These code snippets allow you to had any number of wp blogs and use the wordpress users all from the same blog.</p>
<p>To start with install the 1st blog as per the instructions. Make the table prefix something you will recognise eg &#8220;wp_main_&#8221; as you will have to refer back to it.</p>
<p>Once your fist blog has been installed, install your 2nd wordpress blog in a different directory. Make the table prefix something differnt ot the main/1st blog you made. But in the same database. Once the setup is complete, download the wp_config file and edit it.</p>
<p>Add:</p>
<blockquote><p>define(&#8216;CUSTOM_USER_TABLE&#8217;, &#8216;&lt;-YOUR MAIN USERS TABLE eg:wp_users-&gt;&#8217;);<br />
define(&#8216;CUSTOM_USER_META_TABLE&#8217;, &#8216;&lt;-YOUR MAIN USERS TABLE eg:wp_usermeta-&gt;&#8217;);<br />
define(&#8216;CUSTOM_CAPABILITIES_PREFIX&#8217;, &lt;-YOUR MAIN USERS PREFIX eg:&#8217;wp_-&gt;&#8217;);</p></blockquote>
<p>This lets the second blog use the tables relating to the user from the main blog.</p>
<p>You also need to make the authentication keys the same. Copy these from the wp_config file of your main blog:</p>
<blockquote><p>define(&#8216;AUTH_KEY&#8217;, &#8216;&lt;-YOUR KEY-&gt;&#8217;);<br />
define(&#8216;SECURE_AUTH_KEY&#8217;, &#8216;&lt;-YOUR KEY-&gt;&#8217;);<br />
define(&#8216;LOGGED_IN_KEY&#8217;, &#8216;&lt;-YOUR KEY-&gt;&#8217;);</p></blockquote>
<p>Now we are done with the config file. Now you need to edit a file called capabilities.php, this is found in your /includes/ folder.</p>
<blockquote><p><strong>Find:</strong> $this-&gt;cap_key = $wpdb-&gt;prefix . &#8216;capabilities&#8217;;</p></blockquote>
<blockquote><p><strong>And Replace:</strong> //    $this-&gt;cap_key = $wpdb-&gt;prefix . &#8216;capabilities&#8217;; added custom below</p>
<p>if (defined (&#8216;CUSTOM_CAPABILITIES_PREFIX&#8217;)) {<br />
$this-&gt;cap_key = CUSTOM_CAPABILITIES_PREFIX . &#8216;capabilities&#8217;;<br />
}<br />
else {    $this-&gt;cap_key = $wpdb-&gt;prefix . &#8216;capabilities&#8217;;<br />
}</p>
<p>$this-&gt;caps = &amp;$this-&gt;{$this-&gt;cap_key};<br />
if ( ! is_array( $this-&gt;caps ) )<br />
$this-&gt;caps = array();<br />
$this-&gt;get_role_caps();<br />
}</p></blockquote>
<p>Save these files down and upload them to your server. All should now be working. This can be done with any number of additional blogs.</p>
<p>Please remember you will need to change the capabilities.php file each time you upgrade to add the new lines.</p>
<p>Bookmark this page for next time ou upgrade!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.andyfielder.com/2010/03/wordpress-blogs-same-users/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>SVN on 1and1 Hosting</title>
		<link>http://www.andyfielder.com/2010/02/svn-on-1and1-hosting/</link>
		<comments>http://www.andyfielder.com/2010/02/svn-on-1and1-hosting/#comments</comments>
		<pubDate>Thu, 25 Feb 2010 15:14:03 +0000</pubDate>
		<dc:creator>Andy Fielder</dc:creator>
				<category><![CDATA[Bits]]></category>
		<category><![CDATA[Blog]]></category>
		<category><![CDATA[1and1]]></category>
		<category><![CDATA[SSH]]></category>
		<category><![CDATA[SVN]]></category>

		<guid isPermaLink="false">http://www.andyfielder.com/?p=136</guid>
		<description><![CDATA[Here is another of my guides for 1and1 users, i had issues finding a good guide when installing or adding SVN, subversion to my 1and1 shared hosting for the first time, to trial is use for updating wordpress on 1and1 automatically, but more of that another day.
Sorry for no pictures, if you are a more [...]]]></description>
			<content:encoded><![CDATA[<p>Here is another of my guides for 1and1 users, i had issues finding a good guide when installing or adding <strong>SVN</strong>, <strong>subversion</strong> to my <strong>1and1</strong> shared hosting for the first time, to trial is use for updating wordpress on 1and1 automatically, but more of that another day.</p>
<p>Sorry for no pictures, if you are a more visual person then i will try and get some screen shots etc to help you on your way with SVN and 1and1</p>
<p>Here is the executable code, it has taken me a few trials to get it all working as it should after studying the various guides on the net.</p>
<p>NOTE: You need to substitute YOUR_SERVER and the xx/xxxxxxx for your own details. These can be found by uploading a phpinfo() file to your host in the normal way and copying the details across.</p>
<p>NOTE:Check your subversion&#8217;s version i believe 1.6.3 is the latest, just change the version numbers and it should all work fine (if you want the latest version)</p>
<p>mkdir ~/tmp<br />
mkdir ~/opt/svn<br />
cd ~/tmp<br />
wget http://subversion.tigris.org/downloads/subversion-1.6.0.tar.gz<br />
wget http://subversion.tigris.org/downloads/subversion-deps-1.6.0.tar.gz<br />
tar -xzvf subversion-1.6.0.tar.gz<br />
tar -xzvf subversion-deps-1.6.0.tar.gz<br />
cd ~/tmp/subversion-1.6.0<br />
./configure &#8211;prefix=/YOUR_SERVER/homepages/xx/xxxxxxxxxx/htdocs/opt/svn<br />
make<br />
make install</p>
<p>echo &#8216;export PATH=~/opt/svn/bin:$PATH&#8217; &gt;&gt; ~/.bash_profile<br />
svn &#8211;version</p>
<p>rm ~/tmp/subversion* -r<br />
svnadmin create ~/opt/svn/repos</p>
<p>There is the code needed to setup SVN using PuTTy and SSH to connect to the server</p>
<p><strong>Please let me know if i have made any errors.</strong></p>
<p><span style="text-decoration: underline;">References:</span></p>
<p>http://www.flyonsoft.com/component/content/article/78</p>
<p>http://www.lbsharp.com/wordpress/index.php/2007/11/30/configuring-website-on-a-1and1-shared-host/</p>
<p>http://articles.itecsoftware.com/web-development/install-subversion-on-1and1-hosting-provider</p>
]]></content:encoded>
			<wfw:commentRss>http://www.andyfielder.com/2010/02/svn-on-1and1-hosting/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>GBR 29er Association</title>
		<link>http://www.andyfielder.com/2010/02/gbr-29er-association/</link>
		<comments>http://www.andyfielder.com/2010/02/gbr-29er-association/#comments</comments>
		<pubDate>Thu, 25 Feb 2010 11:37:57 +0000</pubDate>
		<dc:creator>Andy Fielder</dc:creator>
				<category><![CDATA[Featured]]></category>
		<category><![CDATA[Portfolio]]></category>

		<guid isPermaLink="false">http://www.andyfielder.com/?p=131</guid>
		<description><![CDATA[I was asked to manage, maintain and develop the UK 29er website. The design still remains mainly unchanged from the original i made all those years ago!
]]></description>
			<content:encoded><![CDATA[<p>I was asked to manage, maintain and develop the UK 29er website. The design still remains mainly unchanged from the original i made all those years ago!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.andyfielder.com/2010/02/gbr-29er-association/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>1and1 Meet Magento</title>
		<link>http://www.andyfielder.com/2010/02/1and1-meet-magento/</link>
		<comments>http://www.andyfielder.com/2010/02/1and1-meet-magento/#comments</comments>
		<pubDate>Wed, 24 Feb 2010 20:01:18 +0000</pubDate>
		<dc:creator>Andy Fielder</dc:creator>
				<category><![CDATA[Bits]]></category>
		<category><![CDATA[Blog]]></category>
		<category><![CDATA[Featured]]></category>

		<guid isPermaLink="false">http://www.andyfielder.com/?p=116</guid>
		<description><![CDATA[A Guide to Installing Magento on 1and1 Shared Hosting.
Hopefully you are aware that there limitations when using a sharedhosting provider, often implemented to allow the provider to keep the server secure. Luckily with 1and1 we are able to work around this and allow Magento access to PHP 5.2 (Please note this guide is just for [...]]]></description>
			<content:encoded><![CDATA[<p><strong>A Guide to Installing Magento on 1and1 Shared Hosting.</strong></p>
<p>Hopefully you are aware that there limitations when using a sharedhosting provider, often implemented to allow the provider to keep the server secure. Luckily with 1and1 we are able to work around this and allow Magento access to PHP 5.2 (Please note this guide is just for using with 1and1&#8217;s shared hosting solutions). Enjoy!</p>
<p><span style="text-decoration: underline;">Getting Started</span></p>
<ul>
<li>Setup your MySQL database</li>
</ul>
<ol>
<li>Navigate to your 1and1 Administration tab in your 1and1 control panel</li>
<li>Using the 1and1 MySQL Administration page click New Database, start a fresh one just for Magento</li>
<li>Make sure its set to use MySQL version 5.0, fill in YOUR details as shown below</li>
</ol>
<p><a rel="attachment wp-att-117" href="http://www.andyfielder.com/2010/02/1and1-meet-magento/mysql-magento/"><img class="alignnone size-thumbnail wp-image-117" title="MySQL Magento" src="http://www.andyfielder.com/wp-content/uploads/2010/02/MySQL-Magento-270x150.jpg" alt="" width="270" height="150" /></a></p>
<ul>
<li>Download the latest Magento installation package (full release, not installer)-&gt; http://www.magentocommerce.com/download (at time of writing its version 1.4.0.1)</li>
<li>Upload this to your server (yes, upload the Magento zipped folder)</li>
<li>In your 1and1 control panel navigate to your web space explorer and right click on the .zip file you just uploaded and extract it. You are able to move/rename the folder if you need to.</li>
<li>Now you need to go back to your favourite FTP program and CHMOD the following files and folders to 777</li>
</ul>
<ol>
<li>magento/var/.htaccess (file)</li>
<li>magento/app/etc (folder)</li>
<li>magento/var (folder)</li>
<li>magento/media (folder)</li>
</ol>
<ul>
<li>Download the .htaccess file found in the root directory of your Magento install.</li>
<li>Edit the file, removing the comments from:</li>
</ul>
<blockquote><p>############################################<br />
## this line is specific for 1and1 hosting</p>
<p>AddType x-mapp-php5 .php<br />
AddHandler x-mapp-php5 .php</p>
<p>############################################</p></blockquote>
<ul>
<li>This allows you to use PHP 5.0</li>
<li>You will also need to un-comment &#8220;#RewriteBase /magento/&#8221; and edit it if you changed the location of your install</li>
<li>Re-upload the .htaccess file</li>
<li>Make sure the MySQL database is READY, this is shown in the 1and1 control panel under MySQL Administration</li>
<li>Now you can begin the install goto http://www.you_domain.com/magento/index.php/install</li>
<li>From here you just need to add the details requested by the installation program, copying and pasting from the 1and1 control panel as needed</li>
<li>To enter the adming section of magento just point your browser to http://www.you_domain.com/magento/index.php/admin (or whatever you alter admin to in the installation)</li>
</ul>
<p>I hope you have found this 1and1 Magento setup guide useful, its been put together by myself after having issues setting up Magento on my shared 1and1 account. Info has been taken from a number of installation guides from the net and reworded by myself.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.andyfielder.com/2010/02/1and1-meet-magento/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>New Bits Section</title>
		<link>http://www.andyfielder.com/2010/02/bits-section/</link>
		<comments>http://www.andyfielder.com/2010/02/bits-section/#comments</comments>
		<pubDate>Wed, 24 Feb 2010 18:49:06 +0000</pubDate>
		<dc:creator>Andy Fielder</dc:creator>
				<category><![CDATA[Bits]]></category>
		<category><![CDATA[Blog]]></category>

		<guid isPermaLink="false">http://www.andyfielder.com/?p=107</guid>
		<description><![CDATA[I&#8217;m going to be writing new posts in the bits section, which are there for reference, of things that i hope people will find interesting to read and a help.
If you like to read things like this, rather than knowing absolutley everything about what im geting upto on the net, subscribe to the Bits category.
Enjoy
]]></description>
			<content:encoded><![CDATA[<p>I&#8217;m going to be writing new posts in the bits section, which are there for reference, of things that i hope people will find interesting to read and a help.</p>
<p>If you like to read things like this, rather than knowing absolutley everything about what im geting upto on the net, subscribe to the Bits category.</p>
<p>Enjoy</p>
]]></content:encoded>
			<wfw:commentRss>http://www.andyfielder.com/2010/02/bits-section/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Database and Hosting Stress!</title>
		<link>http://www.andyfielder.com/2010/02/database-stress/</link>
		<comments>http://www.andyfielder.com/2010/02/database-stress/#comments</comments>
		<pubDate>Tue, 23 Feb 2010 23:59:39 +0000</pubDate>
		<dc:creator>Andy Fielder</dc:creator>
				<category><![CDATA[Blog]]></category>

		<guid isPermaLink="false">http://www.andyfielder.com/?p=77</guid>
		<description><![CDATA[I have had a very annoying day of development trying but failing to do a large number of simple tasks using my databases. Turns out they have been taken over by hundreds of thousands of spam messages, comments and users, meaning that databases are at more than double there maximum sizes!
This has been sorted now [...]]]></description>
			<content:encoded><![CDATA[<p>I have had a very annoying day of development trying but failing to do a large number of simple tasks using my databases. Turns out they have been taken over by hundreds of thousands of spam messages, comments and users, meaning that databases are at more than double there maximum sizes!</p>
<p>This has been sorted now on all but one of my databases&#8230; more deleting tomorrow i think.</p>
<p>Unfortunately this was not my only problem, the themes used on this blog have broken, so i will need to take a closer look at them after a good-nights sleep. It seems broken themes is the reason why i haven&#8217;t been able to post for such along time!</p>
<p>On a more positve note, we have upgraded are hosting solution to deal with the increased traffic over the last year and hopefully reduce the loads by moving the most frequently addressed databses to different dedicated database servers, instead of having them all lumped together.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.andyfielder.com/2010/02/database-stress/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Xuella Arnold</title>
		<link>http://www.andyfielder.com/2009/11/freelance-web-development-xuella-arnold/</link>
		<comments>http://www.andyfielder.com/2009/11/freelance-web-development-xuella-arnold/#comments</comments>
		<pubDate>Thu, 12 Nov 2009 20:24:51 +0000</pubDate>
		<dc:creator>Andy Fielder</dc:creator>
				<category><![CDATA[Featured]]></category>
		<category><![CDATA[Portfolio]]></category>

		<guid isPermaLink="false">http://www.andyfielder.com/?p=64</guid>
		<description><![CDATA[Freelance Web Development
I have been working with Xuella Arnold, who is a PMC jewellery maker, for quite some time now. Xuella wont be offended by me saying she is not very tech savvy so the key objective when completing her development project was to keep everything very simple, neat and tidy.
Xuella contacted me after her [...]]]></description>
			<content:encoded><![CDATA[<p><strong>Freelance Web Development</strong></p>
<p>I have been working with Xuella Arnold, who is a PMC jewellery maker, for quite some time now. Xuella wont be offended by me saying she is not very tech savvy so the key objective when completing her development project was to keep everything very simple, neat and tidy.</p>
<p>Xuella contacted me after her previous web developer could no longer undertake the work required. I inherited quite a dated website and a custom shopping cart system allowing customers to purchase products from the online gallery of her work.</p>
<p>As the website was previously hosted on his servers the first task was to setup Xuella with her own web hosting and transfer her doman across.</p>
<p>Initially i thought it would be a simple download and re-upload of her website, but we decided to revamp the website. Keeping her original brand identity and making minor visual adjustments to the site, moving it away form pure HTML to a CSS and HTML website.</p>
<p>Xuella had a large amount of media she wanted to put on the website. She drew up designs which we discussed and i set about creating the website as you see it now.</p>
<p>The new shopping cart system is entirely Paypal driven and very simple for Xuella to update using Paypal.</p>
<p>Lastly after updating the text on the website we setup an amazon affiliate scheme so she could earn commission based sales of her book when ordered from Amazon through her website.</p>
<p>She is very happy with the results. I am still working for Xuella keeping her website updated.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.andyfielder.com/2009/11/freelance-web-development-xuella-arnold/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Red Alert 3</title>
		<link>http://www.andyfielder.com/2009/03/red-alert-3/</link>
		<comments>http://www.andyfielder.com/2009/03/red-alert-3/#comments</comments>
		<pubDate>Tue, 24 Mar 2009 12:19:49 +0000</pubDate>
		<dc:creator>Andy Fielder</dc:creator>
				<category><![CDATA[Featured]]></category>
		<category><![CDATA[Portfolio]]></category>
		<category><![CDATA[cnc4]]></category>
		<category><![CDATA[command and conquer 4]]></category>
		<category><![CDATA[ra3]]></category>
		<category><![CDATA[red alert 3]]></category>

		<guid isPermaLink="false">http://www.andyfielder.com/?p=52</guid>
		<description><![CDATA[SEO
Its been a long old slog, but I am now happy with my Red Alert 3 website. The site has been a huge learning curve for me in terms of SEO and programming, as well as giving me in depth knowledge of word-press and how to use it. The site is http://www.ra3.co.uk and is one [...]]]></description>
			<content:encoded><![CDATA[<p><strong>SEO</strong></p>
<p>Its been a long old slog, but I am now happy with my Red Alert 3 website. The site has been a huge learning curve for me in terms of SEO and programming, as well as giving me in depth knowledge of word-press and how to use it. The site is http://www.ra3.co.uk and is one of my best domains i own. Catchy, short, easy to remember and ranks well in google. Especially for red alert 3 maps, for which it dominates. All i have left to do is make a few more pages and then develop my next project which will be http://www.cnc4.co.uk for the next installment of <a href="http://www.cnc4.co.uk">command and conquer 4</a>.</p>
<p>Be sure to check out the site and let me know what you think!</p>
<div id="seolinx-tooltip" style="border: 1px solid #000000; margin: 0pt; padding: 0pt; display: none; opacity: 0.9; position: absolute; width: auto; z-index: 99999;">
<table style="border: 0pt none; margin: 0pt; padding: 0pt; border-collapse: separate; width: auto;" border="0">
<tbody>
<tr>
<td id="seolinx-table" style="border: 0pt none; margin: 1px; padding: 0pt; font-family: Tahoma; font-size: 11px; font-weight: bold;">
<div style="margin: 0pt; padding: 0pt; overflow: auto; width: auto;">
<table id="seolinx-paramtable" style="border: 1px solid gray; margin: 0pt; border-collapse: separate;" border="0">
<tbody>
<tr>
<td style="border: 1px solid gray; padding: 2px; background: #f0f0f0 none repeat scroll 0% 0%; color: darkgreen; font-family: Tahoma; font-size: 7pt; font-weight: bold; white-space: nowrap;"><img style="vertical-align: middle;" src="http://toolbarqueries.google.com/favicon.ico" alt="" width="12" height="12" /> PR: <a style="color: blue; font-family: Tahoma; font-size: 7pt; font-weight: bold; text-decoration: underline;" title="Google pagerank" href="javascript:{}">wait&#8230;</a></td>
<td style="border: 1px solid gray; padding: 2px; background: #f0f0f0 none repeat scroll 0% 0%; color: darkgreen; font-family: Tahoma; font-size: 7pt; font-weight: bold; white-space: nowrap;"><img style="vertical-align: middle;" src="http://www.google.com/favicon.ico" alt="" width="12" height="12" /> I: <a style="color: blue; font-family: Tahoma; font-size: 7pt; font-weight: bold; text-decoration: underline;" title="Google index" href="javascript:{}">wait&#8230;</a></td>
<td style="border: 1px solid gray; padding: 2px; background: #f0f0f0 none repeat scroll 0% 0%; color: darkgreen; font-family: Tahoma; font-size: 7pt; font-weight: bold; white-space: nowrap;"><img style="vertical-align: middle;" src="http://www.google.com/favicon.ico" alt="" width="12" height="12" /> L: <a style="color: blue; font-family: Tahoma; font-size: 7pt; font-weight: bold; text-decoration: underline;" title="Google links" href="javascript:{}">wait&#8230;</a></td>
<td style="border: 1px solid gray; padding: 2px; background: #f0f0f0 none repeat scroll 0% 0%; color: darkgreen; font-family: Tahoma; font-size: 7pt; font-weight: bold; white-space: nowrap;"><img style="vertical-align: middle;" src="http://siteexplorer.search.yahoo.com/favicon.ico" alt="" width="12" height="12" /> LD: <a style="color: blue; font-family: Tahoma; font-size: 7pt; font-weight: bold; text-decoration: underline;" title="Yahoo linkdomain" href="javascript:{}">wait&#8230;</a></td>
<td style="border: 1px solid gray; padding: 2px; background: #f0f0f0 none repeat scroll 0% 0%; color: darkgreen; font-family: Tahoma; font-size: 7pt; font-weight: bold; white-space: nowrap;"><img style="vertical-align: middle;" src="http://search.msn.com/favicon.ico" alt="" width="12" height="12" /> I: <a style="color: blue; font-family: Tahoma; font-size: 7pt; font-weight: bold; text-decoration: underline;" title="MSN index" href="javascript:{}">wait&#8230;</a></td>
<td style="border: 1px solid gray; padding: 2px; background: #f0f0f0 none repeat scroll 0% 0%; color: darkgreen; font-family: Tahoma; font-size: 7pt; font-weight: bold; white-space: nowrap;"><a style="color: blue; font-family: Tahoma; font-size: 7pt; font-weight: bold; text-decoration: underline;" title="Sitemap.xml" href="javascript:{}">wait&#8230;</a></td>
<td style="border: 1px solid gray; padding: 2px; background: #f0f0f0 none repeat scroll 0% 0%; color: darkgreen; font-family: Tahoma; font-size: 7pt; font-weight: bold; white-space: nowrap;"><img style="vertical-align: middle;" src="http://www.semrush.com/favicon.ico" alt="" width="12" height="12" /> Rank: <a style="color: blue; font-family: Tahoma; font-size: 7pt; font-weight: bold; text-decoration: underline;" title="SEMRush Rank" href="javascript:{}">wait&#8230;</a></td>
<td style="border: 1px solid gray; padding: 2px; background: #f0f0f0 none repeat scroll 0% 0%; color: darkgreen; font-family: Tahoma; font-size: 7pt; font-weight: bold; white-space: nowrap;"><img style="vertical-align: middle;" src="http://www.semrush.com/favicon.ico" alt="" width="12" height="12" /> Traffic: <a style="color: blue; font-family: Tahoma; font-size: 7pt; font-weight: bold; text-decoration: underline;" title="SEMRush SE Traffic" href="javascript:{}">wait&#8230;</a></td>
<td style="border: 1px solid gray; padding: 2px; background: #f0f0f0 none repeat scroll 0% 0%; color: darkgreen; font-family: Tahoma; font-size: 7pt; font-weight: bold; white-space: nowrap;"><img style="vertical-align: middle;" src="http://www.semrush.com/favicon.ico" alt="" width="12" height="12" /> Price: <a style="color: blue; font-family: Tahoma; font-size: 7pt; font-weight: bold; text-decoration: underline;" title="SEMRush SE Traffic price" href="javascript:{}">wait&#8230;</a></td>
<td style="border: 1px solid gray; padding: 2px; background: #f0f0f0 none repeat scroll 0% 0%; color: darkgreen; font-family: Tahoma; font-size: 7pt; font-weight: bold; white-space: nowrap;"><img style="vertical-align: middle;" src="http://siteanalytics.compete.com/favicon.ico" alt="" width="12" height="12" /> C: <a style="color: blue; font-family: Tahoma; font-size: 7pt; font-weight: bold; text-decoration: underline;" title="Compete Rank" href="javascript:{}">wait&#8230;</a></td>
</tr>
</tbody>
</table>
</div>
</td>
<td id="seolinx-tooltip-close" style="border: 0pt none; margin: 0pt; padding: 1px; cursor: pointer; vertical-align: middle; width: auto;" title="close"><img src="chrome://seoquake/content/skin/close.gif" alt="" /></td>
</tr>
</tbody>
</table>
</div>
<div id="seolinx-tooltip" style="border: 1px solid #000000; margin: 0pt; padding: 0pt; display: none; opacity: 0.9; position: absolute; width: auto; z-index: 99999;">
<table style="border: 0pt none; margin: 0pt; padding: 0pt; border-collapse: separate; width: auto;" border="0">
<tbody>
<tr>
<td id="seolinx-table" style="border: 0pt none; margin: 1px; padding: 0pt; font-family: Tahoma; font-size: 11px; font-weight: bold;"></td>
<td id="seolinx-tooltip-close" style="border: 0pt none; margin: 0pt; padding: 1px; cursor: pointer; vertical-align: middle; width: auto;" title="close"><img src="chrome://seoquake/content/skin/close.gif" alt="" /></td>
</tr>
</tbody>
</table>
</div>
<div id="seolinx-tooltip" style="border: 1px solid #000000; margin: 0pt; padding: 0pt; display: none; opacity: 0.9; position: absolute; width: auto; z-index: 99999;">
<table style="border: 0pt none; margin: 0pt; padding: 0pt; border-collapse: separate; width: auto;" border="0">
<tbody>
<tr>
<td id="seolinx-table" style="border: 0pt none; margin: 1px; padding: 0pt; font-family: Tahoma; font-size: 11px; font-weight: bold;"></td>
<td id="seolinx-tooltip-close" style="border: 0pt none; margin: 0pt; padding: 1px; cursor: pointer; vertical-align: middle; width: auto;" title="close"><img src="chrome://seoquake/content/skin/close.gif" alt="" /></td>
</tr>
</tbody>
</table>
</div>
]]></content:encoded>
			<wfw:commentRss>http://www.andyfielder.com/2009/03/red-alert-3/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
	</channel>
</rss>
