<?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>iamseo.org</title>
	<atom:link href="http://www.iamseo.org/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.iamseo.org</link>
	<description>Just another (SEO) Wordpress weblog</description>
	<lastBuildDate>Sat, 20 Feb 2010 01:59:52 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.5</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Capture user IP, location and referring URL</title>
		<link>http://www.iamseo.org/how-to/capture-user-ip-location-and-referring-url/</link>
		<comments>http://www.iamseo.org/how-to/capture-user-ip-location-and-referring-url/#comments</comments>
		<pubDate>Sun, 31 Jan 2010 10:40:47 +0000</pubDate>
		<dc:creator>Morris</dc:creator>
				<category><![CDATA[How To]]></category>
		<category><![CDATA[Capture IP]]></category>
		<category><![CDATA[Capture Location]]></category>
		<category><![CDATA[Capture Referrer]]></category>
		<category><![CDATA[Capture Referring URL]]></category>
		<category><![CDATA[Newsletter Signup Form]]></category>
		<category><![CDATA[Subscriber Field]]></category>
		<category><![CDATA[Subscriber Form]]></category>
		<category><![CDATA[User Country]]></category>
		<category><![CDATA[User Location]]></category>

		<guid isPermaLink="false">http://www.iamseo.org/?p=105</guid>
		<description><![CDATA[Are you getting the most out of your subscriber signup forms?
I&#8217;m starting some new campaigns and wanted to get as much info as possible on my subscribers.
Here&#8217;s what I was after:
Record the referring URL
By recording the referring URL and monitoring user&#8217;s interaction with my newsletters, I can find out which pages or search phrases send [...]]]></description>
			<content:encoded><![CDATA[<p>Are you getting the most out of your subscriber signup forms?</p>
<p>I&#8217;m starting some new campaigns and wanted to get as much info as possible on my subscribers.</p>
<p>Here&#8217;s what I was after:</p>
<h2>Record the referring URL</h2>
<p>By recording the referring URL and monitoring user&#8217;s interaction with my newsletters, I can find out which pages or search phrases send the highest-converting traffic.</p>
<p><span id="more-105"></span></p>
<pre class="brush: php;">
&lt;?php $referer = $_SERVER['HTTP_REFERER']; echo $referer; ?&gt;
</pre>
<p>I believe there are more advanced ways of doing this, including using cookies to record the original referrer (this code will only show the last page accessed, unfortunately), but this is plenty in my case. </p>
<h2>Capture IPs</h2>
<p>Freelancers will be pushing traffic to one of my signup forms on a CPA agreement. Monitoring IPs won&#8217;t be the greatest way to stop scammers, but it&#8217;s a quick and free solution without having to install any software.</p>
<p>This one&#8217;s fairly simple and will also help us capture the location in the next step. </p>
<!-- AdSense Now! V1.83 -->
<!-- Post[count: 2] -->
<div class="adsense adsense-midtext" style="text-align:center;margin: 12px;"><script type="text/javascript"><!--
google_ad_client = "pub-0624897805543464";
/* iamseo */
google_ad_slot = "2825543680";
google_ad_width = 468;
google_ad_height = 60;
//-->
</script>
<script type="text/javascript"
src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script></div><pre class="brush: php;">
&lt;?php $IP = $_SERVER['REMOTE_ADDR']; echo $IP; ?&gt;
</pre>
<h2>Capture location</h2>
<p>I&#8217;m promoting UK-only sites and this will help me segment the database to serve unique newsletter content accordingly. </p>
<p>There&#8217;s plenty of half-arsed tutorials on how to do this &#8211; including a solution where you upload an array of countries and their codes / IP ranges to a MySQL database and query them from there. This seemed like a fair bit of overkill to me and the vague instructions were beyond a coder at my level.</p>
<p>I was content with this solution found on the <a href="http://www.tek-tips.com/viewthread.cfm?qid=1467015&#038;page=1">Tek-Tips forum</a>. </p>
<pre class="brush: php;">
 // Create the country code key

&lt;?php
	$IP = $_SERVER['REMOTE_ADDR'];
	$SSID = htmlentities(SID);
	// If IP address exists
	// Get country (and City) via  api.hostip.info
	if (!empty($IP)) {
	$country=file_get_contents('http://api.hostip.info/get_html.php?ip='.$IP);

	// Reformat the data returned (Keep only country and country abbr.
	list ($_country) = explode (&quot;\n&quot;, $country);
	$_country = str_replace(&quot;Country: &quot;, &quot;&quot;, $_country);
	} ?&gt;

// Call your city and country info

&lt;?php echo($country); ?&gt; // Call City, Country

&lt;?php echo($_country); ?&gt;&quot; // Call Country only
</pre>
<p>The ease of calling the API from hostip.info also means that you&#8217;re reliant on these guys keeping their database online, but I&#8217;m willing to bank on it for now. </p>
<h2>Full signup form with IP, location, country</h2>
<p>So here&#8217;s all our code in one place. Basically, this uses all of the above functions and inputs them into fields that users won&#8217;t see because of the display:none style. </p>
<p>To capture these in your subscriber database (I use and recommend Campaign Monitor), simply create a custom field where you can point the data. </p>
<pre class="brush: php;">
&lt;form id=&quot;sub&quot; action=&quot;http://site.com/&quot; method=&quot;post&quot;&gt;
	&lt;input type=&quot;text&quot; name=&quot;name-field&quot; id=&quot;name&quot; value=&quot;Name...&quot; onfocus=&quot;value=''&quot;/&gt;
	&lt;br /&gt;
	&lt;input type=&quot;text&quot; name=&quot;email-field&quot; id=&quot;email&quot; value=&quot;Email...&quot; onfocus=&quot;value=''&quot;/&gt;

	&lt;input type=&quot;text&quot; name=&quot;referrer-field&quot; id=&quot;Referrer&quot; value=&quot;&lt;?php $referer = $_SERVER[&quot;HTTP_REFERER&quot;]; echo $referer; ?&gt;&quot; style=&quot;display:none&quot; /&gt;

		&lt;?php
		$IP = $_SERVER['REMOTE_ADDR'];
		$SSID = htmlentities(SID);
		// If IP address exists
		// Get country (and City) via  api.hostip.info
		if (!empty($IP)) {
		$country=file_get_contents('http://api.hostip.info/get_html.php?ip='.$IP);
		// Reformat the data returned (Keep only country and country abbr.
		list ($_country) = explode (&quot;\n&quot;, $country);
		$_country = str_replace(&quot;Country: &quot;, &quot;&quot;, $_country);
		}
		?&gt;

	&lt;input type=&quot;text&quot; name=&quot;IP-field&quot; id=&quot;IP&quot; value=&quot;&lt;?php echo($IP); ?&gt;&quot; style=&quot;display:none&quot; /&gt; // this was created in the country code above, so we can call it here also

	&lt;input type=&quot;text&quot; name=&quot;country-field&quot; id=&quot;Location&quot; value=&quot;&lt;?php echo($country); ?&gt;&quot; style=&quot;display:none&quot; /&gt;

	&lt;input type=&quot;submit&quot; value=&quot;Join&quot; id=&quot;button&quot; /&gt;&lt;/p&gt;
	&lt;/form&gt;
</pre>
<p>Enjoy! Let me know if you have any questions of troubles. </p>
]]></content:encoded>
			<wfw:commentRss>http://www.iamseo.org/how-to/capture-user-ip-location-and-referring-url/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Hack Firefox&#8217;s search to use another country&#8217;s server</title>
		<link>http://www.iamseo.org/how-to/firefox-search-to-use-another-country-server/</link>
		<comments>http://www.iamseo.org/how-to/firefox-search-to-use-another-country-server/#comments</comments>
		<pubDate>Wed, 18 Nov 2009 04:40:00 +0000</pubDate>
		<dc:creator>Morris</dc:creator>
				<category><![CDATA[How To]]></category>
		<category><![CDATA[Change Search Servers on Firefox]]></category>
		<category><![CDATA[Firefox]]></category>
		<category><![CDATA[Firefox Search Bar]]></category>
		<category><![CDATA[Google]]></category>

		<guid isPermaLink="false">http://www.iamseo.org/?p=91</guid>
		<description><![CDATA[If, like me, you&#8217;re optimising sites for a particular country and you&#8217;re not there, Firefox&#8217;s standard geo-locating search bar isn&#8217;t much help.
Sure: you can change .com (or whatever), to .co.uk in the URL everytime &#8211; but, come on, why?
Add extra search engine servers to the Firefox Search Bar
For this example I&#8217;m going to add a [...]]]></description>
			<content:encoded><![CDATA[<p>If, like me, you&#8217;re optimising sites for a particular country and you&#8217;re not there, <strong>Firefox&#8217;s</strong> standard <em>geo-locating search bar</em> isn&#8217;t much help.</p>
<p><em>Sure:</em> you can change .com (or whatever), to .co.uk in the URL <em>everytime</em> &#8211; but, come on, <strong>why?</strong></p>
<h2>Add extra search engine servers to the Firefox Search Bar</h2>
<p>For this example I&#8217;m going to <strong>add a search server for google.co.uk</strong>. Assume I&#8217;m in Australia.</p>
<p><strong>1.</strong> Right Click on Firefox in your Applications folder and choose <em>Show Package Contents</em>.</p>
<p><strong>2.</strong> Navigate to <em>Contents &gt; MacOS &gt; searchplugins</em></p>
<p><strong>3.</strong> Duplicate the relevant file (ie: <em>google.xml</em> or <em>yahoo</em>.xml).</p>
<p><strong>4.</strong> Open the file with a text editor like <strong>TextMate</strong> and change all instances of <em>google.com.au</em> (it will most likely be the server relevant to where you currently are) to <em>google.co.uk</em> (or whatever you require)</p>
<p><strong>5.</strong> Rename the file something relevant to the server: <em>google-uk.xml</em>.</p>
<p><strong>6.</strong> Done! You can now use the dropdown menu on the Firefox search bar to change your servers easily. Select <em>Manage Search Engines</em> to set your default.</p>
<p>I imagine you could use a similar process for PC &#8211; you&#8217;d just have to find the right files.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.iamseo.org/how-to/firefox-search-to-use-another-country-server/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Pick up some free Geocities links!</title>
		<link>http://www.iamseo.org/link-building/pick-up-free-geocities-links/</link>
		<comments>http://www.iamseo.org/link-building/pick-up-free-geocities-links/#comments</comments>
		<pubDate>Thu, 29 Oct 2009 01:03:16 +0000</pubDate>
		<dc:creator>Morris</dc:creator>
				<category><![CDATA[Link Building]]></category>
		<category><![CDATA[Free Links]]></category>
		<category><![CDATA[Geocities]]></category>
		<category><![CDATA[Geocities Links]]></category>

		<guid isPermaLink="false">http://www.iamseo.org/?p=72</guid>
		<description><![CDATA[Ten years since they paid far too much for it, Yahoo! has pulled Geocities this week.
What does that mean for SEOs? Mostly, it means there are TONNES of links waiting to be picked up. 850 million, in fact, says a group called Majestic SEO.
Here&#8217;s the concept: thousands of these Geocities pages have been taken down. [...]]]></description>
			<content:encoded><![CDATA[<p>Ten years since they paid <em>far too much</em> for it, Yahoo! has pulled <strong>Geocities</strong> this week.</p>
<p><strong>What does that mean for SEOs?</strong> Mostly, it means there are <strong>TONNES</strong> of links waiting to be picked up. <strong>850 million</strong>, in fact, says a group called <em>Majestic SEO</em>.</p>
<p>Here&#8217;s the concept: thousands of these Geocities pages have been taken down. The site you made at 12 with Michael Jackson midi files and Simpsons gifs: <strong>gone! </strong></p>
<p>That leaves a whole lot of webmasters with links <strong>pointing to dead Geocities pages.</strong> <span style="text-decoration: underline;">Get those links.</span></p>
<p><span id="more-72"></span></p>
<h2>Find those Geocities links!</h2>
<p>Other sites have recommended searching like this to find links to these Geocities sites:</p>
<p><strong>&#8220;<em>linkdomain:geocities.com your-keyword</em>&#8220;</strong></p>
<p>I&#8217;ve found that this pulls up a lot of crap, plus a lot of discussion about the technique itself.</p>
<p>Far more rewarding, in my opinion, is to search like this:</p>
<p><strong>&#8220;<em>site:geocities.com inurl: your-keyword</em>&#8220;</strong></p>
<p>You&#8217;ll then find the Geocities pages themselves (get used to seeing Yahoo&#8217;s holding page!), from where you can use Yahoo! Site Explorer to find links pointing to these pages.</p>
<p>Yes, it&#8217;s a longer process, but you&#8217;ll find <strong>old Geocities pages with your keyword in their URL</strong>, and then quality links pointing to the pages.</p>
<h2>Pick up those Geocities links!</h2>
<p>When you&#8217;ve found these external links, contact the webmaster with a request such as this:</p>
<p><em>&#8220;Hey there, I noticed you&#8217;re linking to [old geocities site], perhaps you might like to update your link to this site.</em></p>
<p><em>As you can see, there&#8217;s relevant content to your niche &#8230; &#8220;</em></p>
<p>Simple as that!</p>
<p>The best part is, while you&#8217;re trawling all these old sites you&#8217;ll often come across some <strong>juicy guestbooks</strong> and opportunities to add your URL to small directories. Both aren&#8217;t the best practices, but remember: these are most likely old domains and very relevant to your niche.</p>
<p>Good luck! I&#8217;m off to pick up some myself&#8230;</p>
]]></content:encoded>
			<wfw:commentRss>http://www.iamseo.org/link-building/pick-up-free-geocities-links/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Remove &#8220;Category&#8221; from Wordpress URLS, maintain pagination</title>
		<link>http://www.iamseo.org/wordpress/remove-category-from-wordpress-urls-maintain-pagination/</link>
		<comments>http://www.iamseo.org/wordpress/remove-category-from-wordpress-urls-maintain-pagination/#comments</comments>
		<pubDate>Fri, 23 Oct 2009 03:12:52 +0000</pubDate>
		<dc:creator>Morris</dc:creator>
				<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[Remove Category from URL]]></category>
		<category><![CDATA[Wordpress Hack]]></category>

		<guid isPermaLink="false">http://www.iamseo.org/?p=69</guid>
		<description><![CDATA[
There&#8217;s now a great plugin for this!
See WP No Category Base to download and install the plugin. It does all that the hack below does, but better, and instantly. 
In fact, I did have some issues with the hack after upgrading Wordpress, so found this plugin instead.

So this one&#8217;s been a killer for a long [...]]]></description>
			<content:encoded><![CDATA[<blockquote>
<h2>There&#8217;s now a <em>great</em> plugin for this!</h2>
<p><em>See <a href="http://wordpress.org/extend/plugins/wp-no-category-base/"><strong>WP No Category Base</strong></a></em> to download and install the plugin. It does all that the hack below does, but better, and instantly. </p>
<p>In fact, I did have some issues with the hack after upgrading Wordpress, so found this plugin instead.</p>
</blockquote>
<p>So this one&#8217;s been a killer for a long time: you can hack Wordpress in several ways to<strong> remove /category/ from the URL</strong>, though <em>pagination</em> and all sorts of other nasty side-effects arise.</p>
<p>Anyway, it&#8217;s finally been done &#8211; you can now remove /category/ from Wordpress URLS, <strong>maintain pagination</strong> and everything else!</p>
<p>In fact, the fix even writes out /category/ when generating category links through <strong><em>get_the_category</em></strong> or <em><strong>single_cat_title</strong></em>: instead of just redirecting it afterwards as other hacks have done.</p>
<p><span id="more-69"></span></p>
<p><strong>So here it is:</strong></p>
<h2><a href="http://www.themadhat.com/blogging/remove-category-base-wordpress/">Remove the Category Base from Wordpress</a></h2>
<p>If only I&#8217;d found this when he first posted it 12 months ago &#8230;!!</p>
<p>Enjoy!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.iamseo.org/wordpress/remove-category-from-wordpress-urls-maintain-pagination/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Fantastic online internship for students</title>
		<link>http://www.iamseo.org/work/fantastic-online-internship-for-students/</link>
		<comments>http://www.iamseo.org/work/fantastic-online-internship-for-students/#comments</comments>
		<pubDate>Tue, 20 Oct 2009 23:59:33 +0000</pubDate>
		<dc:creator>Morris</dc:creator>
				<category><![CDATA[Work]]></category>
		<category><![CDATA[Digital Internship]]></category>
		<category><![CDATA[Intern]]></category>
		<category><![CDATA[Internship]]></category>

		<guid isPermaLink="false">http://www.iamseo.org/?p=65</guid>
		<description><![CDATA[A colleague recently forwarded this online intern opportunity for a student in media / communications or business / marketing studies.
As the document mentions, part of the role is utilising social media such as Facebook and Twitter, so I imagine most college students would have half the experience already &#8211; regardless of their discipline!
Having worked with [...]]]></description>
			<content:encoded><![CDATA[<p>A colleague recently forwarded this <a href="http://www.iamseo.org/SweepstakesHub_Intern.pdf"><strong>online intern opportunity</strong></a> for a student in <strong>media / communications</strong> or <strong>business / marketing</strong> studies.</p>
<p>As the document mentions, part of the role is utilising social media such as <strong>Facebook</strong> and <strong>Twitter</strong>, so I imagine most college students would have half the experience already &#8211; regardless of their discipline!</p>
<p>Having worked with <strong>online bingo sites</strong> for many years, I would highly recommend working with a company in the <strong>sweepstakes</strong> field &#8211; especially as an entry point to the digital industry.</p>
<p><span id="more-65"></span></p>
<p>Seems a strange statement? Here&#8217;s why: online gaming sites and portals &#8211; including competition and giveaway sites such as <a href="http://www.sweepstakeshub.com"><strong>Sweepstakes Hub</strong></a> &#8211; are at the <span style="text-decoration: underline;">absolute forefront</span> of SEO, SEM and SMO.</p>
<p>Now that I&#8217;ve, almost by mistake, become a UK Bingo specialist, I&#8217;m finding<strong> endless opportunities</strong> all around the world in the same industry. The same would happen in Sweepstakes, I imagine.</p>
<p>The <strong>Sweepstakes Hub</strong> group are also entering the market at a very exciting time, as Sweepstakes and giveaways blossom in the current US economy.</p>
<p>I&#8217;ve had some experience working with some members of the team, and their collective business background is quite amazing. Highly recommend this one!</p>
<p>The contact for the position is on the <a href="http://www.iamseo.org/SweepstakesHub_Intern.pdf"><strong>Position Summary</strong></a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.iamseo.org/work/fantastic-online-internship-for-students/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Easy SEO Strategy: capitalise on your old content</title>
		<link>http://www.iamseo.org/seo-news/easy-seo-strategy-capitalise-on-your-old-content/</link>
		<comments>http://www.iamseo.org/seo-news/easy-seo-strategy-capitalise-on-your-old-content/#comments</comments>
		<pubDate>Thu, 01 Oct 2009 06:44:32 +0000</pubDate>
		<dc:creator>Morris</dc:creator>
				<category><![CDATA[SEO News]]></category>
		<category><![CDATA[Easy SEO Strategy]]></category>
		<category><![CDATA[seo]]></category>

		<guid isPermaLink="false">http://www.iamseo.org/?p=55</guid>
		<description><![CDATA[If you&#8217;ve found this, you&#8217;re no doubt up on SEO. Which means you&#8217;ve also probably got a tonne of old blog posts packed with juicy keywords?
Perhaps you&#8217;ve also found that your crawl rate is lower than it has been, and only a small portion of your site is indexed?
This was the case with Super Free [...]]]></description>
			<content:encoded><![CDATA[<p>If you&#8217;ve found this, you&#8217;re no doubt up on <strong>SEO</strong>. Which means you&#8217;ve also probably got a tonne of old blog posts <u>packed</u> with <strong><em>juicy keywords</em></strong>?</p>
<p>Perhaps you&#8217;ve also found that your <strong>crawl rate</strong> is lower than it has been, and only a small portion of your site is indexed?</p>
<p>This was the case with <strong>Super Free Bingo</strong> &#8211; a site that I manage <strong>SEO strategies</strong> for. While our team spends a lot of time off-site generating new links, and creating new content on-site, all those great bingo stories that were written two years ago <s>are</s> were sitting unused and not indexed!</p>
<p><span id="more-55"></span></p>
<h2>Time to up the crawl rate!</h2>
<p>How to get the bots back to your old content? Change it. Make it <em>new</em> old content.</p>
<p>(<em>Note: I am <span style="text-decoration: underline;">not</span> suggesting you change the date &#8211; just update the content</em>)</p>
<p>The idea is simple: if the bots are revisiting your old content, they&#8217;re going to discover all those keywords and interlinks. They&#8217;re also going to visit you more often to keep up with your changes. The more you update, the more they index. The more they index, the more chance you have of ranking for major keywords and longtail keyphrases.</p>
<h2>Add new content</h2>
<p>Add new content to your old blog posts: an <em>&#8220;Update: &#8230;&#8221;</em> line fits in well, or perhaps something like &#8220;<em>Read about the <span style="text-decoration: underline;">developments</span> here &#8230;&#8221;</em> and link to a new post.</p>
<h2>Change the location</h2>
<p>Wordpress is gold: it will automatically redirect a post from the old URL to the new URL. This means that if you change the URL, any links to your old posts <em>should</em> redirect. You probably also know more about how to optimise your URLs with keywords now than you did two years ago!</p>
<p>I wouldn&#8217;t go over the top with this practice, but it does help. As well as refreshing the page to the bots, it also refreshes the archive pages (category and link pages) that link to it &#8211; bringing these to attention, and all the pages linked from them.</p>
<p>In the same way, you can also change the blog category. Great for spring-cleaning also!</p>
<h2>Link to old content</h2>
<p>Point the bots to all your new changes and wait for a spike in your crawl rate and, hopefully, your rankings!</p>
<h2>In practice</h2>
<p>How do I know this works? About a month ago I tested two different bingo operators on <strong>Super Free Bingo</strong>.</p>
<p>For one operator, <strong>Littlewoods Bingo</strong>, I did nothing but edit old stories related to the Littlewoods page. I probably edited / updated 50 posts or so over a period of one to two weeks. At the same time I pinged Technorati and other services, and, briefly, manually-increased the site&#8217;s crawl rate in <strong>Google Webmasters</strong> so that the bots would find these changes.</p>
<p>For another operator, <strong>Posh Bingo</strong>, I focused on generating new links to the page itself, and to the old stories. The idea was that the bots would revisit the old pages after finding the new links to them. All of these links were from other bingo blogs.</p>
<h2>Results</h2>
<p>At the beginning of the test, both operators were at the top of the third page for their respective terms on Google.co.uk.</p>
<p>The <strong>Littlewoods Bingo</strong> page then slowly climbed its way to the first page and is now quite steady at 6th or 7th result.</p>
<p><strong>Posh Bingo</strong> actually fell away, and the site&#8217;s Posh Bingo page is now ranked on the fourth page &#8211; losing a whole page!</p>
<h2>SEO isn&#8217;t just about LINKS</h2>
<p>As you can see! Re-use your old content and reap the benefits! By keeping your site fresh and active, you&#8217;ll keep the bots there discovering your keywords, content and interlinks. Hopefully you&#8217;ll then see results like I did!</p>
<p>Enjoy!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.iamseo.org/seo-news/easy-seo-strategy-capitalise-on-your-old-content/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Automatic backlinks, while you sleep!</title>
		<link>http://www.iamseo.org/seo-news/automatic-backlinks-while-you-sleep/</link>
		<comments>http://www.iamseo.org/seo-news/automatic-backlinks-while-you-sleep/#comments</comments>
		<pubDate>Tue, 29 Sep 2009 21:06:26 +0000</pubDate>
		<dc:creator>Morris</dc:creator>
				<category><![CDATA[Link Building]]></category>
		<category><![CDATA[SEO News]]></category>
		<category><![CDATA[Automatic Backlinks]]></category>
		<category><![CDATA[Free Backlinks]]></category>
		<category><![CDATA[seo]]></category>

		<guid isPermaLink="false">http://www.iamseo.org/?p=53</guid>
		<description><![CDATA[If you haven&#8217;t heard of Automatic Backlinks yet, you&#8217;re missing out on one of the great new ways of gathering backlinks. Like many link-building platforms that have risen up of late, it&#8217;s about empowering webmasters to generate their own links in the simplest way. Read on for more!

What is it?
Automatic Backlinks is what it says: [...]]]></description>
			<content:encoded><![CDATA[<p>If you haven&#8217;t heard of <a href="http://www.automaticbacklinks.com"><strong>Automatic Backlinks</strong></a> yet, you&#8217;re missing out on one of the great new ways of gathering backlinks. Like many <strong>link-building platforms</strong> that have risen up of late, it&#8217;s about empowering webmasters to generate their own links in the simplest way. Read on for more!</p>
<p><span id="more-53"></span></p>
<h2>What is it?</h2>
<p><strong>Automatic Backlinks</strong> is what it says: a platform to generate backlinks automatically. By placing a code on your site (it&#8217;s available for html, php, asp, and some CMS) you automatically post links on your site from other bloggers. This earns you <em>link credit</em>, which you can spend by placing links on other websites.</p>
<h2>How much?</h2>
<p>Free. However, if you don&#8217;t want to place links to <em>Cottages in Italy</em> on your website about <strong><a href="http://www.tranquilwater.com.au"><em>Bottled Water</em></a></strong>, you can purchase a link credit subscription. See the site for info on how much you get per link credit / US dollar. It starts at $1USD = 1PR link, but gets cheaper as it goes higher.</p>
<h2>How&#8217;s the quality?</h2>
<p>If you really don&#8217;t care for quality (ie, you&#8217;re working on getting mass links &#8211; like 20k+), or you just don&#8217;t know any better, <strong>Automatic Backlinks</strong> really is <em>automatic</em>. However &#8211; if you don&#8217;t want your link to an English site on a page in Swedish with 50 outgoing links and no content &#8211; then it&#8217;s going to require some attention.</p>
<p>Personally I use <strong>Automatic Backlinks</strong> for one client requiring a <em>tonne</em> of quality links. As long as I check each new link generated, it&#8217;s perfect. It does mean removing about 10-20% of the links generated, but the platform responds well: you can opt to not receive links from that site again, etc.</p>
<p><strong>Note:</strong> this type of link-building is always being penalised by Google so only, <em>only</em>, partake in link buying alongside other more organic SEO initiatives.</p>
<p>The platform allows you to filter by page rank, language, site category, and number of outgoing links (only those managed through <strong>Automatic Backlinks</strong>), though as always: there are plenty of scammers that fake page rank or categorise incorrectly.</p>
<p>All the same, this is a great option for small- to mid-sized bloggers that want to begin exchanging links through an easy-to-use platform.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.iamseo.org/seo-news/automatic-backlinks-while-you-sleep/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Wordpress login page keeps reloading</title>
		<link>http://www.iamseo.org/wordpress/wordpress-login-page-keeps-reloading/</link>
		<comments>http://www.iamseo.org/wordpress/wordpress-login-page-keeps-reloading/#comments</comments>
		<pubDate>Sun, 14 Jun 2009 03:56:33 +0000</pubDate>
		<dc:creator>Morris</dc:creator>
				<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[wordpress fix]]></category>
		<category><![CDATA[wp-admin reloads]]></category>

		<guid isPermaLink="false">http://www.iamseo.org/?p=49</guid>
		<description><![CDATA[It seems I&#8217;m not the only one that has had issues with the Wordpress login page (wp-admin) reloading itself without logging in.
I made a post on the Wordpress support thread with my fix, though thought I should expand here. This may not fix the issue for all users, as the reloading might be the result [...]]]></description>
			<content:encoded><![CDATA[<p>It seems <a href="http://wordpress.org/support/topic/229521" target="_blank">I&#8217;m not the only one</a> that has had issues with the Wordpress login page (wp-admin) reloading itself without logging in.</p>
<p>I made a post on the Wordpress support thread with my fix, though thought I should expand here. This may not fix the issue for all users, as the reloading might be the result of other problems or faulty plugins. </p>
<p><span id="more-49"></span></p>
<p>1. Remove any additional rewrite rules from your .htaccess, besides the Wordpress-generated code. Remember to <strong>back it up!</strong></p>
<p>(If your Wordpress settings state that your install is on http://mysite.com, but you are running a .htaccess rule to rewrite http://mysite.com to http://www.mysite.com, you&#8217;re running the wp-admin page in a loop of redirects).</p>
<p>2. If you can now log in, go to Settings and change the location of WP and your blog to http://www.mysite.com (assuming this is where you wanted Wordpress installed). If your blog or Wordpress installation is located in another dirctory or subdomain, don&#8217;t change these just add the <em>www</em>.</p>
<p>3. Re-add the .htaccess rewrites. </p>
<p>They might like look this &#8211; </p>
<pre><code>
Options +FollowSymLinks
RewriteEngine on
RewriteCond %{HTTP_HOST} ^mysite.com
RewriteRule (.*) http://www.mysite.com/$1 [R=301,L]
RewriteCond %{THE_REQUEST} ^[A-Z]{3,9}\ /index\.html\ HTTP/
RewriteRule ^index\.html$ http://www.mysite.com/ [R=301,L]
</code></pre>
<p>(This rewrites http:// to http://www as well as removing index.html or index.php from your URLs)</p>
<p>If the above fix doesn&#8217;t work, try removing plugins from your server one by one and then try to log in. An outdated plugin that doesn&#8217;t work with your current version of Wordpress has also been known to cause this problem.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.iamseo.org/wordpress/wordpress-login-page-keeps-reloading/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Adding Bing.com as a User Agent to Robots.txt</title>
		<link>http://www.iamseo.org/seo-news/adding-bing-robots-txt/</link>
		<comments>http://www.iamseo.org/seo-news/adding-bing-robots-txt/#comments</comments>
		<pubDate>Wed, 03 Jun 2009 03:59:51 +0000</pubDate>
		<dc:creator>Morris</dc:creator>
				<category><![CDATA[SEO News]]></category>
		<category><![CDATA[bing bot]]></category>
		<category><![CDATA[bing user agent]]></category>
		<category><![CDATA[bing.com]]></category>
		<category><![CDATA[msn bot]]></category>
		<category><![CDATA[msnbot]]></category>
		<category><![CDATA[robots.txt]]></category>

		<guid isPermaLink="false">http://iamseo.org/?p=45</guid>
		<description><![CDATA[Sometimes it&#8217;s the absolute simplest questions that you have to dig around for online!
This had me stumped for five or ten minutes, until I saw a comment on the Bing Twitter.
Which user agent / bot does Bing.com use to crawl your site?
The answer is msnbot.
To add msnbot to your robots.txt file, add the following:
User-agent: msnbot

You [...]]]></description>
			<content:encoded><![CDATA[<p>Sometimes it&#8217;s the <strong>absolute simplest questions</strong> that you have to dig around for online!</p>
<p>This had me stumped for five or ten minutes, until I saw a comment on the <a rel="nofollow" href="http://twitter.com/bing"><strong>Bing Twitter</strong></a>.</p>
<h2>Which user agent / bot does Bing.com use to crawl your site?</h2>
<p>The answer is <strong>msnbot</strong>.</p>
<p>To add msnbot to your robots.txt file, add the following:</p>
<p><strong>User-agent: msnbot</strong></p>
<p><span id="more-45"></span></p>
<p>You can then make any <em>Allow</em> or <em>Disallow</em> rules that you like.</p>
<p>Bing.com are also running a <a href="http://www.bing.com/webmaster/WebmasterManageSitesPage.aspx"><strong>Webmaster Central</strong></a>, much like Google but seemingly cleaner and not as tool-packed.</p>
<p><a rel="nofollow" href="http://www.saschakimmel.com/2009/06/how-to-use-the-bing-webmaster-tools-to-get-info-on-your-site/"><strong>Sascha Kimmel</strong></a> has some good info on navigating through this.</p>
<p>It should be interesting to see whether Bing.com can make a dent in Google&#8217;s 80% share, but it isn&#8217;t looking likely. Most say no, and if they are still using the msnbot technology, then I have to agree.</p>
<h2>Update:</h2>
<p>The official Bing page outlining more on their bots is <a href="http://answers.yahoo.com/question/index?qid=20080125141439AAehhnC" rel="nofollow" /><strong>here</strong></a>. Thanks to Benjamin for the link.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.iamseo.org/seo-news/adding-bing-robots-txt/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>I want to work for you!</title>
		<link>http://www.iamseo.org/work/i-want-to-work-for-you/</link>
		<comments>http://www.iamseo.org/work/i-want-to-work-for-you/#comments</comments>
		<pubDate>Wed, 27 May 2009 05:11:41 +0000</pubDate>
		<dc:creator>Morris</dc:creator>
				<category><![CDATA[Work]]></category>
		<category><![CDATA[hire me]]></category>
		<category><![CDATA[hire seo employees]]></category>

		<guid isPermaLink="false">http://iamseo.org/?p=31</guid>
		<description><![CDATA[After the trip to the UK with my current employer, I am back in Sydney, Australia and looking for the next challenge!
I&#8217;ve made an enjoyable progression over the last few years through Journalism, some authoring in Publishing, a few nights out Sydney-Socialising, playing Bingo Mogul at the top of Google with some SEO and, most [...]]]></description>
			<content:encoded><![CDATA[<p>After the trip to the UK with my current employer, I am back in Sydney, Australia and looking for the next challenge!</p>
<p>I&#8217;ve made an enjoyable progression over the last few years through <a rel="nofollow" href="http://bluemountains.yourguide.com.au/"><strong>Journalism</strong></a>, some authoring in <a rel="nofollow" href="http://www.careerfaqs.com.au/bookshop/products/Property/48"><strong>Publishing</strong></a>, a few nights out <a rel="nofollow" href="http://www.thesydneysocial.com.au"><strong>Sydney-Socialising</strong></a>, playing Bingo Mogul at the top of Google with some <a rel="nofollow" href="http://www.superfreebingo.com/"><strong>SEO</strong></a> and, most recently, making sure you click on my <a rel="nofollow" href="http://www.tranquilwater.com.au/spring-water/"><strong>PPC</strong></a> ads. Water anyone?</p>
<p>There was also some time left to make <a rel="nofollow" href="http://www.myspace.com/the117project"><strong>some</strong></a> <a rel="nofollow" href="http://www.myspace.com/siltmcgoy"><strong>music</strong></a>, design a simple <a rel="nofollow" href="http://www.africanfeeling.com.au"><strong>site</strong></a> or <a href="http://www.peergroupmedia.com/news"><strong>two</strong></a>, take a <a href="http://www.thesydneysocial.com/Photo_Galleries/MTV_Awards/"><strong>tonne</strong></a> of <a rel="nofollow" href="http://www.thesydneysocial.com/Photo_Galleries/Dralion_Party/"><strong>photos</strong></a>, model for a <a href="http://www.careerfaqs.com.au/bookshop/products/Journalism/52"><strong>bookcover</strong></a> and get my snaps on <a href="http://www.youtube.com/watch?v=sgQS9EY4OSo"><strong>National TV</strong></a>.</p>
<p><span id="more-31"></span></p>
<p>But the time has come to move on to something new and now I want to further my <strong>online skill set</strong>. I want to work with more clients and on larger projects. Plus, I&#8217;m hoping to retire the word <em>bingo</em> from my vocabulary!</p>
<p>After achieving amazing SEO results for gaming sites, I now want to experiment further with clients more suited to <strong>link baiting and SMO</strong>. Not that I&#8217;d knock back any more affiliate gambling &#8211; I love a challenge!</p>
<p>There&#8217;s a lot more I want to learn and experience; and it would be great to be able to continue using my writing, design, SEO and SEM skills all in the same position.</p>
<p>If you have a suitable position, please get in touch! I love to chat <img src='http://www.iamseo.org/wp/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<h2><a href="http://www.iamseo.org/Morris-Bryant-CV.pdf">Download my resume</a></h2>
<h2><a href="skype:morris.bryant?add">Have a chat</a></h2>
<h2><a href="mailto:morris@thesydneysocial.com.au?subject=Hey Morris, Ready to work?">Email me</a></h2>
]]></content:encoded>
			<wfw:commentRss>http://www.iamseo.org/work/i-want-to-work-for-you/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
