<?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>Blogercise.com</title>
	<atom:link href="http://www.blogercise.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.blogercise.com</link>
	<description>Hobby Blogger</description>
	<lastBuildDate>Wed, 15 May 2013 09:10:10 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.5.1</generator>
		<item>
		<title>Delete Spam Users from bbPress 2</title>
		<link>http://www.blogercise.com/delete-spam-users-from-bbpress-2/</link>
		<comments>http://www.blogercise.com/delete-spam-users-from-bbpress-2/#comments</comments>
		<pubDate>Wed, 15 May 2013 09:07:35 +0000</pubDate>
		<dc:creator>jezza101</dc:creator>
				<category><![CDATA[bbPress]]></category>
		<category><![CDATA[bbpress]]></category>
		<category><![CDATA[spam]]></category>

		<guid isPermaLink="false">http://www.blogercise.com/?p=1771</guid>
		<description><![CDATA[Unfortunately many forums suffer from spam problems, mine had a large number of dud users messing up the forum stats so I wanted to clean them out with minimal fuss.]]></description>
				<content:encoded><![CDATA[<p><span class='drop_cap'>A</span>s with all forum software, bbpress attracts its fair share of spam.  Unfortunately this is just something that forum owners have to deal with.  </p>
<p>In this post I take a look at how to remove redundant accounts set up by spammers.</p>
<p>If you are suffering from spam on your bbpress forum, I have posted up my own list of <a href="http://www.blogercise.com/bbpress-spam-protection-plugins/" title="bbPress Spam Protection Plugins">bbpress anti spam plugins here</a>.</p>
<p><strong>MySQL Access</strong></p>
<p>I assume that you have access to your site&#8217;s MySQL database and know how to execute queries.  If you are not familiar with this then I suggest using Google to learn more about running queries on your site&#8217;s database.  You may also need to contact your host to gain access to the database.</p>
<div class="content-box-red"><strong>Warning</strong>: Back up your database and ensure you know how to do a restore before running any SQL queries. If you are unsure how to do this then manually editing the database is not for you. Looking for a backup service? Try <a href="http://redirectingat.com?id=3559X1229571&xs=1&url=http%3A%2F%2Fvaultpress.com%2F&sref=rss">Vaultpress</a>.</div>
<h2>Identifying Spam Users</h2>
<p><strong>Step one</strong>, how can you quickly pull out a list of all the spam accounts on your bbpress install?  </p>
<p>Unfortunately there is no &#8220;one sized fits all&#8221; way to identify these users.  And to make the challenge harder, you&#8217;ll want to be really sure you aren&#8217;t deleting genuine user accounts.  </p>
<p>The first query here will select all users who have never posted, this is the brute force approach and will get rid of the most number of users.  However you may be deleting users who have registered but not posted yet.  </p>
<p><code>SELECT *<br />
FROM wp_users<br />
WHERE ID NOT IN<br />
(SELECT post_author FROM wp_posts<br />
UNION SELECT user_id FROM wp_comments)</code></p>
<p>I wanted to be quite cautious about who I deleted, so I looked at users who had registered at least three months ago but never posted.  I also looked for those with ridiculous user names (ie they were very long, or full of obscure letters such as q, x, z etc) and those that originated from outside the UK (my forum is UK focused).</p>
<p>Any one of these things on their own could be a genuine account, but once you start to combine these factors, the chances of them being a real user become very slim.</p>
<h2>How to batch Delete bbPress Users</h2>
<p>When you are happy to proceed, you need to run a query such as the one below.  Here I am deleting all users that have registered before April and who have not posted or commented on the site.  </p>
<p>I am also checking the user activation key field, if this is populated it means they have requested a password reset at some point, this seems like a good indicator of a real user.</p>
<p><code>DELETE<br />
FROM wp_users<br />
WHERE ID NOT IN<br />
(SELECT post_author FROM wp_posts<br />
UNION SELECT user_id FROM wp_comments)<br />
and user_registered < '2013-04-01 00:00:00'<br />
and user_activation_key =''</code></p>
<p><strong>Warning:</strong>  This will permanently delete users, make sure you backup your database and test carefully.  This method could still remove genuine user accounts so be prepared to deal with any complaints.  </p>
<h2>Cleaning Up the Meta Data</h2>
<p>Once you have removed the user you need to carry out one more step to tidy things up.  Each user will have several rows in the meta data table and these need to be removed before WordPress will correctly return a count of users.</p>
<p>You can see how WordPress derives user counts <a href="http://redirectingat.com?id=3559X1229571&xs=1&url=http%3A%2F%2Fcore.trac.wordpress.org%2Fbrowser%2Ftags%2F3.5.1%2Fwp-includes%2Fuser.php&sref=rss">here</a>.</p>
<p><strong>To remove the meta data, you can use the following SQL code snippets.</strong></p>
<p>First, check what will be deleted:</p>
<p><code>SELECT user_id,meta_key, umeta_id FROM wp_usermeta<br />
LEFT JOIN wp_users ON user_id=ID<br />
WHERE ID is NULL<br />
</code></p>
<p>Once you are happy with the clear out, commit with the following:</p>
<p><code>DELETE A FROM wp_usermeta A<br />
LEFT JOIN wp_users ON user_id=ID<br />
WHERE ID is NULL</code></p>
<p>And there we go, hopefully your user count will now better reflect the number of active users on your site.  It was getting a little crazy on mine where I had thousands of users but only hundreds of threads, it just didn't look credible.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.blogercise.com/delete-spam-users-from-bbpress-2/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Skimlinks Review 2013</title>
		<link>http://www.blogercise.com/skimlinks-review-2013/</link>
		<comments>http://www.blogercise.com/skimlinks-review-2013/#comments</comments>
		<pubDate>Tue, 30 Apr 2013 14:24:24 +0000</pubDate>
		<dc:creator>jezza101</dc:creator>
				<category><![CDATA[SkimLinks]]></category>

		<guid isPermaLink="false">http://www.blogercise.com/?p=1766</guid>
		<description><![CDATA[Skimlinks is a great affiliate network that automatically converts links into affiliate links.  In this post I give a review and update on what's new in 2013.  If you aren't a Skimlinks user then I would strongly recommend checking it out.]]></description>
				<content:encoded><![CDATA[<div class="wp-caption alignright" style="width: 250px"><img alt="" src="http://farm6.staticflickr.com/5166/5359581911_d07f15db17_m.jpg" width="240" height="160" /><p class="wp-caption-text">Links <a href="http://redirectingat.com?id=3559X1229571&xs=1&url=http%3A%2F%2Fwww.flickr.com%2Fphotos%2Fpratanti%2F5359581911%2F&sref=rss">Photo</a></p></div>
<p><span class="drop_cap">W</span>ell, it&#8217;s been about a year since I posted up my last <a href="http://redirectingat.com?id=3559X1229571&xs=1&url=http%3A%2F%2Fjez.re%2Fskimlinks&sref=rss">Skimlinks</a> review so I thought it was worth putting together a 2013 review to reflect my current thoughts.</p>
<p>In this post I&#8217;ll take a look at what&#8217;s new, and how I&#8217;ve been utilising SkimLinks to monetise my hobby blogs over the last year.</p>
<h2>What is Skimlinks?</h2>
<p>For those that aren&#8217;t familiar with the SkimLinks affiliate network, the company offers a way to seamlessly monetise your website with minimal effort.</p>
<p>With the addition of a simple script to your website pages, any links around the site will be redirected through the Skimlinks servers. They will ananlyse the link and see if there is a money making opportunity, if so they&#8217;ll take care of that and you&#8217;ll see the cash show up in your account later in the month.</p>
<p><strong>How easy is that?!</strong></p>
<p>If you haven&#8217;y already done so, I would recommend signing up to Skimlinks right away, it doesn&#8217;t cost anything to join and you are free to experiment with how and where to use it.</p>
<p>Sign up here: <a href="http://redirectingat.com?id=3559X1229571&xs=1&url=http%3A%2F%2Fjez.re%2Fskimlinks&sref=rss">SkimLinks</a></p>
<h2>What&#8217;s New at Skimlinks?</h2>
<p>So what&#8217;s new in the last year or so? Well the big update is the new publisher hub which provides a new and improved view over your account activity. The summary view gives all the key information you need to get going, and all the key performance indicators you need are only a few clicks away.</p>
<p>Here&#8217;s a look at the new overview page:</p>
<p style="text-align: center;"><a href="http://www.blogercise.com/files/2013/04/skim01.png"><img class="aligncenter  wp-image-1784" alt="skim01" src="http://www.blogercise.com/files/2013/04/skim01.png" width="539" height="415" /></a></p>
<p>&nbsp;</p>
<p>Navigating around the hub is just a case of clicking through the menu options on the left.  There are a few other KPIs on the right that I&#8217;ve cut out for privacy reasons.</p>
<p>The merchant view gives a very quick insight into which companies are making the sales for you.</p>
<p style="text-align: center;"><a href="http://www.blogercise.com/files/2013/04/skim02.png"><img class="aligncenter  wp-image-1785" alt="skim02" src="http://www.blogercise.com/files/2013/04/skim02.png" width="245" height="370" /></a></p>
<p style="text-align: left;">As before, you can also get a similar break down of site performance so that you can see which of your properties are driving the most revenue.</p>
<p>What I&#8217;ve been finding very useful however is the page view, this gives you a page level breakdown of where the sales are coming from.  This gives you the opportunity to improve those pages and maximise that income, and also, if you have a direct affiliated relationship with that company then you can swap in your direct links if required.</p>
<p><a href="http://www.blogercise.com/files/2013/04/skim03.png"><img class="aligncenter size-full wp-image-1786" alt="skim03" src="http://www.blogercise.com/files/2013/04/skim03.png" width="750" height="257" /></a></p>
<h2>Update to Tools</h2>
<p>As far as I can see the Skimlinks tool offering has moved disappointingly slowly.  There was a time when there seemed to be new features being released regularly but the Product API is still in Beta and SkimKit is now unavailable.</p>
<p>However there is one new widget which looks useful.  Skimlinks have provided a search widget for both ebay and Amazon that allows users to make searches directly on your site.  This in itself isn&#8217;t too revolutionary but it does promise geo locating so that your users get sent to their local site.</p>
<p>The labs area of the site seems unchanged, with only the WordPress plugin and RSS feeds features up there.</p>
<p>Hopefully we&#8217;ll see some movement on new features in 2013.</p>
<h2>What I Like to See Added to the Service?</h2>
<p>The one problem I have on my sites, which I think SkimLinks could solve, is geolocating affiliate links. By that I mean I get a mix of US and UK visitors to the site and it would be nice to ensure I maximise earning opportunities from both sides of the Atlantic.</p>
<p>This only really applies to Amazon, but I&#8217;d like them to redirect US people to Amazon.com when they click on an Amazon.co.uk link. This is made all the more easy as the two sites have common structures and products share a common unique identifier (the ASIN).</p>
<p>But, please don&#8217;t overwrite my Amazon tag unless the geo-location redirect is done!</p>
<h2>How has Skimlinks been Working for Me?</h2>
<p>To round up my Skimlinks review I would like to talk briefly about my own success with it as a part time hobby blogger.</p>
<p>My results from Skimlinks have been very up and down, some months have proved to be decent earners, and then following months have barely reached the minimum payment threshold.  But I think this is down to the nature of how I use the service.  It is really only there to sweep up missed monetisation opportunities.</p>
<p>For example it&#8217;s saved me a few quid of lost income where I&#8217;ve pasted a non-affiliate link into a post, it&#8217;s also great for capturing the odd forum post that attracts a high number of views.  But in general I prefer to automatically create my own direct affiliate links.</p>
<p>I would definitely recommend signing up to the service for the above reason, there seems to be no down side but the potential for additional income is there.  One of my favourite stats in the reporting hub is the <strong>lifetime earning amount</strong>, essentially it represents all the money I would not have if it weren&#8217;t for the Skimlinks service, and over time, it all adds up.</p>
<p>Haven&#8217;t signed up to SkimLinks yet? <a href="http://redirectingat.com?id=3559X1229571&xs=1&url=http%3A%2F%2Fjez.re%2Fskimlinks&sref=rss">Go and do so now!</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.blogercise.com/skimlinks-review-2013/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>bbPress Spam Protection Plugins</title>
		<link>http://www.blogercise.com/bbpress-spam-protection-plugins/</link>
		<comments>http://www.blogercise.com/bbpress-spam-protection-plugins/#comments</comments>
		<pubDate>Tue, 16 Apr 2013 12:48:11 +0000</pubDate>
		<dc:creator>jezza101</dc:creator>
				<category><![CDATA[bbPress]]></category>
		<category><![CDATA[bbpress]]></category>
		<category><![CDATA[spam]]></category>

		<guid isPermaLink="false">http://www.blogercise.com/?p=1759</guid>
		<description><![CDATA[Running a forum is great fun and good for your site, however keeping spam under control can be a real problem.  In this post we take a look at how to manage spam on a bbPress 2 forum.]]></description>
				<content:encoded><![CDATA[<div class="wp-caption alignright" style="width: 250px"><img alt="" src="http://farm9.staticflickr.com/8359/8270256961_03d5eaff85_m.jpg" width="240" height="160" /><p class="wp-caption-text">Spam and spam <a href="http://redirectingat.com?id=3559X1229571&xs=1&url=http%3A%2F%2Fwww.flickr.com%2Fphotos%2Fepsos%2F8270256961%2F&sref=rss">Photo</a></p></div>
<p>I&#8217;ve been running the WordPress forum plugin bbPress 2 since it was released and have really enjoyed the ease of integration into my WP based sites.  Like all forum software applications, bbPress unfortunately attracts a great deal of spam.  The more popular your site gets the bigger the problem becomes.</p>
<p>As I tend to run small forums it is important that posting is easy, I therefore like to have anonymous posting switched on where possible. This of course makes spam management that much harder!</p>
<p>Fortunately there are a few ways to keep the problem under control.  In this post I take a look at the plugins I use to keep spam out of my bbPress forums.</p>
<h2>Akismet</h2>
<p>This plugin comes with WordPress and is a great start when it comes to spam protection.  You are probably already using it to protect your posts from spam comments.</p>
<p>Akismet is easy to integrate with bbPress, there is a little tick box near the bottom of the Forum Settings page, make sure &#8220;Use Akismet&#8221; is checked.</p>
<p><a href="http://redirectingat.com?id=3559X1229571&xs=1&url=http%3A%2F%2Fakismet.com%2F&sref=rss">Homepage</a></p>
<h2>Stop Spammer Registrations</h2>
<p>This a great little plugin that hooks up with the <a href="http://redirectingat.com?id=3559X1229571&xs=1&url=http%3A%2F%2Fwww.stopforumspam.com%2F&sref=rss">Stop Forum Spam</a> site. New registration attempts are checked against their central spammer database and are very quickly rejected if there is any history of spam from that ip / email.</p>
<p>The plugin also has a range of other common sense checks, such as looking for sensible header information, checking the time it takes for a bot to navigate the site, etc. And a few sneaky tricks too, such as setting traps and fake forms to trip bots up.</p>
<p><a href="http://redirectingat.com?id=3559X1229571&xs=1&url=http%3A%2F%2Fwww.blogseye.com%2Fi-make-plugins%2Fstop-spammer-registrations-plugin%2F&sref=rss">Homepage</a> | <a href="http://redirectingat.com?id=3559X1229571&xs=1&url=http%3A%2F%2Fwordpress.org%2Fextend%2Fplugins%2Fstop-spammer-registrations-plugin%2F&sref=rss">Download</a></p>
<h2>bbPress Moderation</h2>
<p>Stop Spammer Registrations goes a long way to solving my spam problem, it brings it right down to a manageable level. However some rogue posts do get through and this requires my time to sweep them up &#8211; I hate having spam on the forum!</p>
<p>The moderation plugin allows me to leave my forum alone, I can do my periodic approval of the moderation queue but mostly my forums can live spam free.</p>
<p>It works by holding back any new posts in a queue, they won&#8217;t show on the forum until the post is approved and subsequent posts from that user will go through. This is a minor inconvenience to new users but one that most people understand and accept.</p>
<p>Regular users are unaffected and can go about their business.</p>
<p><a href="http://redirectingat.com?id=3559X1229571&xs=1&url=http%3A%2F%2Fwordpress.org%2Fextend%2Fplugins%2Fbbpressmoderation%2F&sref=rss">Download</a></p>
<h2>reCaptcha Plugin</h2>
<p>I add this one as bonus, it could be worth a look if other solutions aren&#8217;t working for you. reCaptcha requires your forum users to read one of those squiggly words and type in the answer before the post is accepted.</p>
<p>Unfortunately this type of anti spam device, whilst effective, provides a horrible user experience to your users. I would really consider this as a last ditch attempt. Or used in conjunction with anonymous posting.</p>
<p>It&#8217;s not a plugin I have activated at the moment, but it&#8217;s there if I need it.</p>
<p><a href="http://redirectingat.com?id=3559X1229571&xs=1&url=http%3A%2F%2Fwordpress.org%2Fextend%2Fplugins%2Fbbpress-recaptcha%2F&sref=rss">Download</a></p>
<h2>Other Plugins?</h2>
<p>I would love to hear from other bbPress users, how have you got your forum&#8217;s spam problem under control?</p>
]]></content:encoded>
			<wfw:commentRss>http://www.blogercise.com/bbpress-spam-protection-plugins/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Review: Vidahost Cloud Hosting Solution</title>
		<link>http://www.blogercise.com/review-vidahost-cloud-hosting-solution/</link>
		<comments>http://www.blogercise.com/review-vidahost-cloud-hosting-solution/#comments</comments>
		<pubDate>Wed, 10 Apr 2013 14:52:54 +0000</pubDate>
		<dc:creator>jezza101</dc:creator>
				<category><![CDATA[Tech]]></category>
		<category><![CDATA[cloud]]></category>
		<category><![CDATA[vidahost]]></category>
		<category><![CDATA[webhost]]></category>

		<guid isPermaLink="false">http://www.blogercise.com/?p=1733</guid>
		<description><![CDATA[I recently migrated my web sites to the Vidahost cloud, if you are not happy with your current host and fancy an upgrade then read on to find out why I chose these guys and why I would recommend them to other hobby bloggers.]]></description>
				<content:encoded><![CDATA[<div class="wp-caption alignright" style="width: 250px"><img alt="" src="http://farm2.staticflickr.com/1165/644335254_4b8a712be5_m.jpg" width="240" height="180" /><p class="wp-caption-text">The Cloud <a href="http://redirectingat.com?id=3559X1229571&xs=1&url=http%3A%2F%2Fwww.flickr.com%2Fphotos%2Fnirak%2F644335254%2F&sref=rss">Photo</a></p></div>
<p><span class="drop_cap">I</span> recently migrated all of my sites to a new host and thought now was a good time to write a review of the new company, <a href="http://redirectingat.com?id=3559X1229571&xs=1&url=http%3A%2F%2Fjez.re%2Fvidahost&sref=rss">Vidahost</a>.</p>
<p>If you are looking for a new host yourself, or if you are looking for some feedback on <a style='color:blue'  href="http://redirectingat.com?id=3559X1229571&xs=1&url=http%3A%2F%2Fjez.re%2Fvidahost&sref=rss">Vidahost</a> then read on. I&#8217;ll talk about why I moved from my old providers, why I picked Vidahost and what I think about their service having used them for a few months.</p>
<h2>Why I Moved Host</h2>
<p>Most hobby bloggers will want to start out with a cheap shared hosting option, there&#8217;s nothing wrong with that. One of the attractions of setting up a website is the option to get started with minimal investment.</p>
<p>However as time went on my needs changed and I outgrew the shared site.</p>
<p><strong>I wanted:</strong></p>
<ul>
<li>Consolidation of my sites on one platform</li>
<li>Reliable performance</li>
<li>Greater bandwidth allowance</li>
<li>More control over configurability</li>
</ul>
<h2>Why I Chose Vidahost</h2>
<p>My previous hosts, UK2.net and eukhost.com served me well, I didn&#8217;t have any particular grievance, I had just reached the limitations of shared hosting and needed to move to the next level.  Both of these hosts offer more comprehensive hosting options, but there was a big jump between the shared hosting price and their virtual or dedicated hosting options.  The hosting solutions just didn&#8217;t seem cost effective for a hobby blogger.</p>
<p>I went on to review cloud hosting options but struggled to find something that offered the right amount of resources for a decent price. I was also put off by hosting options with a variable cost, I didn&#8217;t want to be worrying about processor cycles etc &#8211; these are hobby sites after all.</p>
<p>However the <a href="http://redirectingat.com?id=3559X1229571&xs=1&url=http%3A%2F%2Fjez.re%2Fvidahost&sref=rss">Vidahost cloud</a> offering seemed to match my needs perfectly. The starting price of £11.99 (with VAT included) comes with decent usage allowances:</p>
<ul>
<li><strong>20gb Disk Space</strong>. My usage was way under this, generally if you aren&#8217;t hosting music or video and ensure you images are sized appropriately for the web you&#8217;ll struggle to come anywhere near this.  More space can be purchased when needed.</li>
<li><strong>200gb Bandwidth</strong>. The combined bandwidth usage of SammyNetbook and NXTab does use a good chunk of this allowance but it is still well within the limit. It is easy to add bandwidth and fortunately as traffic increases so does revenue so the sites should be self-sufficient.</li>
<li><strong>25 Site limit</strong>. I&#8217;ve probably attempted that many sites over the years, but most of them are retired projects so this was no problem. Again, if you need more than 25 then this can be accommodated for an additional fee but I would encourage hobby developers to concentrate on a small number of good sites. I&#8217;m not convinced one person can run more that 25 sites effectively in their spare time!</li>
</ul>
<p>Your sites are effectively load balanced so you don&#8217;t need to worry about CPU or RAM resources, even if you are fortunate enough to receive a temporary traffic spike.</p>
<h2>Vidahost Review</h2>
<p>My experience of Vidahost has been very positive to date. The cloud hosting solution comes with a bespoke admin panel that is intuitive and easy to use. It is also very comprehensive allowing you to setup sub domains, redirects, cron jobs and even access to a secure shell. You can switch between Linux and Windows hosting at no additional cost and MySql dbs are easy to create and administer. SQL Server dbs are available at additional cost.</p>
<p>Performance has been routinely stable and I have not noticed any down time to date. The web server configuration seems to be setup well and it is a relief not to have to worry about many of the configuration problems I had when running on a shared host, everything just seems to work.</p>
<p>When I have required some additional help the guys on the end of the support line have been very helpful and have always managed to resolve any issues quickly and satisfactorily.</p>
<p>Now I appreciate that I am supplying an <a href="http://redirectingat.com?id=3559X1229571&xs=1&url=http%3A%2F%2Fjez.re%2Fvidahost&sref=rss">affiliate link</a> in this review and it is in my interest to promote Vidahost, however I want to stress that these guys have been great and I am very happy with the decision to consolidate onto the Vidahost cloud.  It definitely feels like an upgrade.</p>
<p>If you are interested and do want to click through, you can use a Vidahost discount code to get 10% off an initial order. Just enter &#8220;blogercise&#8221; when prompted at the checkout. Using this coupon code will bung a couple of quid my way and will save you some money too. Win win!</p>
<p><a href="http://redirectingat.com?id=3559X1229571&xs=1&url=http%3A%2F%2Fjez.re%2Fvidahost&sref=rss">Click through to Vidahost</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.blogercise.com/review-vidahost-cloud-hosting-solution/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to Remove &#8220;Topic:&#8221; from bbPress Title Tags</title>
		<link>http://www.blogercise.com/how-to-remove-topic-from-bbpress-title-tags/</link>
		<comments>http://www.blogercise.com/how-to-remove-topic-from-bbpress-title-tags/#comments</comments>
		<pubDate>Thu, 11 Oct 2012 21:00:47 +0000</pubDate>
		<dc:creator>jezza101</dc:creator>
				<category><![CDATA[bbPress]]></category>
		<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[title tags]]></category>
		<category><![CDATA[topic]]></category>

		<guid isPermaLink="false">http://www.jezza101.co.uk/?p=1623</guid>
		<description><![CDATA[The "Topic:" suffix appended to bbpress thread titles doesn't look very appealing in Google search results (in my opinion at least).  This quick hack tells you how to remove this from your title tags.]]></description>
				<content:encoded><![CDATA[<p><span class="drop_cap"><img class="alignright" alt="" src="http://farm9.staticflickr.com/8440/7890680986_5aa02892db_m.jpg" width="240" height="240" />U</span>nfortunately, at the time of writing, there is no way to control what appears on bbPress title tags &#8220;out of the box&#8221;. I believe that some &#8220;SEO Plugins&#8221; are capable of doing so, you&#8217;ll need to look for one that handles custom wordpress post types.</p>
<p>But I didn&#8217;t have time to mess about and wanted a quick hack. If you want to change WordPress title tags you need to add a filter to wp_title. By doing this you can do a quick replace on the &#8220;Topic:&#8221; part of the title.</p>
<p>I also decided to change how the site name was appended to the title at the end.  My quick hack is as follows:</p>
<blockquote><p>add_filter( &#8216;wp_title&#8217;, &#8216;bbpress_title_jez&#8217;, 20, 3 );</p>
<p>function bbpress_title_jez($title, $sep, $seplocation){<br />
if (is_bbpress()){<br />
$title = str_replace(&#8220;Topic: &#8220;, &#8220;&#8221;, $title);<br />
$title = str_replace(&#8220;NXTab.co.uk&#8221;, &#8220;NXTab Forum&#8221;, $title);<br />
}<br />
return $title;<br />
}</p></blockquote>
<p>I then placed this code into my theme&#8217;s fuction.php script.</p>
<p>Like I said, this is a bit hacky and will potentially cause some odd titles to come through if I&#8217;m not careful &#8211; the function will replace indiscriminately. It might also potentially interfere with other plugins that filter wp_title, so use at own risk.</p>
<p>I hope that this ability is added to bbPress in a future release, WordPress is normally very good at allowing you to configure these things. Let me know if you give this a go or come across a better way to do it.</p>
<p style="text-align: right;"><em><a href="http://redirectingat.com?id=3559X1229571&xs=1&url=http%3A%2F%2Fwww.flickr.com%2Fphotos%2Fswanksalot%2F7890680986%2F&sref=rss">Photo</a></em></p>
]]></content:encoded>
			<wfw:commentRss>http://www.blogercise.com/how-to-remove-topic-from-bbpress-title-tags/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>bbPress 2 Adsense Plugin</title>
		<link>http://www.blogercise.com/bbpress-2-adsense-plugin/</link>
		<comments>http://www.blogercise.com/bbpress-2-adsense-plugin/#comments</comments>
		<pubDate>Sat, 06 Oct 2012 15:34:21 +0000</pubDate>
		<dc:creator>jezza101</dc:creator>
				<category><![CDATA[bbPress]]></category>
		<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[adsense]]></category>

		<guid isPermaLink="false">http://www.jezza101.co.uk/?p=1601</guid>
		<description><![CDATA[Quickly and easily inject adsense (and other ad blocks) into your bbpress 2 forum.  Optionally chose to hide the ads from your regular users.  Simple.]]></description>
				<content:encoded><![CDATA[<p><span class="drop_cap">S</span>o you want to add Adsense units to your bbpress forum? Well my first plugin for bbpress allows you to do that!  Just pop in your adsense code and away you go, simple!</p>
<p>You can see it running on my <a href="http://redirectingat.com?id=3559X1229571&xs=1&url=http%3A%2F%2Fwww.nxtab.co.uk%2Fdiscussion%2Ftopic%2Forange-lumia-920-windows-8%2F&sref=rss">Nexus 7 Tablet forum here</a>.</p>
<p><strong>bbPress 2 Adsense Plugin</strong></p>
<p>Here is a screenshot of the bbpress plugin running live on my own website, once installed your forum will look a bit like this:</p>
<p><a href="http://redirectingat.com?id=3559X1229571&xs=1&url=http%3A%2F%2Fwww.jezza101.co.uk%2Fwp-content%2Fuploads%2F2012%2F10%2Fforum-ads.png&sref=rss"><img class="aligncenter size-medium wp-image-1602" title="forum ads" src="http://www.jezza101.co.uk/wp-content/uploads/2012/10/forum-ads-214x300.png" alt="" width="214" height="300" /></a></p>
<h3>Adding Adsense to bbPress</h3>
<p>The first draft of the plugin is very straight forward, it allows you to enter an advert, for example an Amazon banner, or and Adsense block, and it will display between the first post of a thread and the second.</p>
<p>You then have the option to hide the ads from your regular users (you don&#8217;t want to annoy them, or encourage them to click off the site!). If you chose to hide ads, a message will be displayed to encourage visitors to join the site.</p>
<p>The admin screen looks a bit like this:</p>
<p><a href="http://redirectingat.com?id=3559X1229571&xs=1&url=http%3A%2F%2Fwww.jezza101.co.uk%2Fwp-content%2Fuploads%2F2012%2F10%2Fforum-ads2.png&sref=rss"><img class="aligncenter size-medium wp-image-1603" title="forum ads2" src="http://www.jezza101.co.uk/wp-content/uploads/2012/10/forum-ads2-300x275.png" alt="" width="300" height="275" /></a></p>
<p>The plugin is published to the WordPress plugin repository and can be downloaded directly from there.  Note that this plugin makes use of various filters and may interfere with other plugins.  Remember to check carefully before using this on a live site. If you do have problems, it is likely to be an issue with the order in which the plugins are applied.</p>
<h3>Future Plans</h3>
<p>This is just a first draft and proof of concept, I plan to add more feature in due course:</p>
<ul>
<li>Fully configurable text, makes translation easy</li>
<li>Add ad units to various locations, in the forum, at the end of threads, etc</li>
<li>Any other ideas, let me know&#8230;</li>
</ul>
<p>First revision <a href="http://redirectingat.com?id=3559X1229571&xs=1&url=http%3A%2F%2Fwordpress.org%2Fextend%2Fplugins%2Fbbpress-simple-advert-units%2F&sref=rss">now available</a>.</p>
<p style="text-align: center"><a class="bevel red" href="http://redirectingat.com?id=3559X1229571&xs=1&url=http%3A%2F%2Fwordpress.org%2Fextend%2Fplugins%2Fbbpress-simple-advert-units%2F&sref=rss">Download it Now!</a></p>
<p style="text-align: right"><em><a href="http://redirectingat.com?id=3559X1229571&xs=1&url=http%3A%2F%2Fwww.flickr.com%2Fphotos%2Fseanfx%2F5092674798%2F&sref=rss">Photo</a></em></p>
]]></content:encoded>
			<wfw:commentRss>http://www.blogercise.com/bbpress-2-adsense-plugin/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Case Study: Amazon Units</title>
		<link>http://www.blogercise.com/case-study-amazon-units/</link>
		<comments>http://www.blogercise.com/case-study-amazon-units/#comments</comments>
		<pubDate>Wed, 18 Jul 2012 14:21:07 +0000</pubDate>
		<dc:creator>jezza101</dc:creator>
				<category><![CDATA[Simple Amazon Units]]></category>
		<category><![CDATA[Wordpress]]></category>

		<guid isPermaLink="false">http://www.jezza101.co.uk/?p=1586</guid>
		<description><![CDATA[An example of how to quickly build money making pages using the Simple Amazon Units plugin.]]></description>
				<content:encoded><![CDATA[<p>I&#8217;ve just finished putting together a bunch of accessories pages on my new Nexus 7 site and was pleased by how my Simple Amazon Units plugin allowed me to rapidly build products directly into the content.</p>
<p>You can see an example here: <a href="http://redirectingat.com?id=3559X1229571&xs=1&url=http%3A%2F%2Fwww.nxtab.co.uk%2Fnexus-7-cases%2F&sref=rss">Nexus 7  Cases</a>.</p>
<p>The plugin allowed me to place different product types right in amongst the content and I can now leave these pages rest assured that they will continue to update and display the most popular Amazon products based on the keywords I&#8217;ve entered along with up to date prices.</p>
<p><strong>Rapid Deployment</strong></p>
<p>I remember producing similar pages for SammyNetbook before I was using this plugin or even WordPress and each page was built manually using Amazon widgets and hard coded friendly URLs mapped through the .htaccess file.  That took a couple of weeks to set up and was a nightmare to maintain.</p>
<p>This time it&#8217;s taken a couple of hours and will be self-maintaining!  If I want to change the layout of the Amazon units its a single update to a template held in the WP admin area, and changing the contents of the unit is a quick tweak to the shortcode.</p>
<p>Easy!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.blogercise.com/case-study-amazon-units/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>bbpress Genesis Extend:  Shortcode Styling Problem</title>
		<link>http://www.blogercise.com/bbpress-genesis-extend-shortcode-styling-problem/</link>
		<comments>http://www.blogercise.com/bbpress-genesis-extend-shortcode-styling-problem/#comments</comments>
		<pubDate>Mon, 16 Jul 2012 09:08:16 +0000</pubDate>
		<dc:creator>jezza101</dc:creator>
				<category><![CDATA[Genesis]]></category>
		<category><![CDATA[Wordpress]]></category>

		<guid isPermaLink="false">http://www.jezza101.co.uk/?p=1576</guid>
		<description><![CDATA[A quick fix to help anyone using shortcodes to power their bbpress pages in combination with Genesis.]]></description>
				<content:encoded><![CDATA[<p><span class="drop_cap">I</span> noted a problem on my StudioPress Genesis powered site recently and have found a quick fix that might be useful to others.</p>
<p>I am using the bbpress 2.1 forum with the Genesis theme framework in conjunction with the bbpress Genesis Extend plugin that helps sort out a few niggles and gets the two products to play nice with each other.</p>
<p>However I noted a small &#8220;bug&#8221; that prevents it working correctly when placing bbpress shortcodes onto pages.</p>
<p>Specifically in my case I wanted to place <strong>[</strong>bbp-topic-index<strong>]</strong> on to its own page, but the formatting of the table was kinda messed up. It turns out that the plugin does not load the associated CSS stylesheet when shortcodes and pages are used together like this. Hopefully not a problem for the devs to fix, there&#8217;s a note about it <a href="http://redirectingat.com?id=3559X1229571&xs=1&url=http%3A%2F%2Fwordpress.org%2Fsupport%2Ftopic%2Fplugin-bbpress-genesis-extend-stylesheet-not-included-when-using-bbpress-shortcodes&sref=rss">here</a>.</p>
<p class="alert">I am using WP 3.4, Genesis 1.8, bbpress 2.1 and Genesis Extend 0.8.1</p>
<p>The promised quick fix is to manually load the CSS file yourself, I did this by switching to HTML view in my WP page and pasting in the following code, there may be better ways of doing this:</p>
<p><em>&lt;link rel=&#8217;stylesheet&#8217; id=&#8217;bbpress-genesis-extend-css&#8217; href=&#8217;http://dev.rightquestion.org/wp-content/plugins/bbpress-genesis-extend/style.css?ver=3.3.2&#8242; type=&#8217;text/css&#8217; media=&#8217;all&#8217; /&gt;</em></p>
<p>Hope that helps, you can see an example on my <a href="http://redirectingat.com?id=3559X1229571&xs=1&url=http%3A%2F%2Fwww.nxtab.co.uk%2Fnew-posts%2F&sref=rss">Nexus 7 New Posts</a> page.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.blogercise.com/bbpress-genesis-extend-shortcode-styling-problem/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Pre Order Galaxy Nexus 7</title>
		<link>http://www.blogercise.com/pre-order-galaxy-nexus-7/</link>
		<comments>http://www.blogercise.com/pre-order-galaxy-nexus-7/#comments</comments>
		<pubDate>Fri, 06 Jul 2012 13:29:34 +0000</pubDate>
		<dc:creator>jezza101</dc:creator>
				<category><![CDATA[Tech]]></category>

		<guid isPermaLink="false">http://www.jezza101.co.uk/?p=1559</guid>
		<description><![CDATA[Introducing the new tablet from Google, the Nexus 7 tablet.  I've pre-ordered mine and set up a fan site.  Find out more about the UK Nexus Tablet community...]]></description>
				<content:encoded><![CDATA[<p><span class="drop_cap">I</span> have finally taken the plunge and pre-ordered a Nexus 7 tablet! I bought mine from the Google Play store, but you can also purchase them from ebuyer.com</p>
<p><strong>Nexus 7 Blog UK</strong></p>
<p>In honour of my new purchase, I have set up a little blog to share my initial thoughts and gather any tips that I come across whilst learning how to get the most from my Nexus 7.</p>
<p>Check it out&#8230;</p>
<p style="text-align: center">[button type="icon" icon="j" color="orange" link="http://www.nxtab.co.uk"]Nexus 7 Blog[/button]</p>
<p>The site will be useful for any other owners and also anyone considering whether to buy one of these tablets for themselves.</p>
<p>I&#8217;ve been wanting to buy a tablet for a while, but didn&#8217;t really want to spend a lot of money on one, as to be frank, it&#8217;s just going to be a handy gadget for the living room, I can&#8217;t see it getting  displacing my other gadgets (but won&#8217;t mind if I&#8217;m wrong on that).</p>
<p>So now that the Nexus 7 has come to market at a decent price I think it&#8217;s time to take the plunge.</p>
<p>Own one, looking to buy one?   Pop over to my <a href="http://redirectingat.com?id=3559X1229571&xs=1&url=http%3A%2F%2Fwww.nxtab.co.uk&sref=rss">new Nexus 7 blog</a> and let me know your thoughts on the Nexus.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.blogercise.com/pre-order-galaxy-nexus-7/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>SubmitEdge Review: Social Bookmarking</title>
		<link>http://www.blogercise.com/submitedge-review-social-bookmarking/</link>
		<comments>http://www.blogercise.com/submitedge-review-social-bookmarking/#comments</comments>
		<pubDate>Wed, 29 Feb 2012 21:18:01 +0000</pubDate>
		<dc:creator>jezza101</dc:creator>
				<category><![CDATA[Affiliate Marketing]]></category>
		<category><![CDATA[SubmitEdge]]></category>
		<category><![CDATA[link building]]></category>
		<category><![CDATA[Social Bookmarking]]></category>

		<guid isPermaLink="false">http://www.jezza101.co.uk/?p=1442</guid>
		<description><![CDATA[I take a look at the SubmitEdge Social Bookmarking service.  See how I get on when I purchase the entry level package for one of my relatively new sites.]]></description>
				<content:encoded><![CDATA[<p><span class="drop_cap">A</span>s part of my continued SubmitEdge review I take a look at the SEO service provider&#8217;s Social Bookmarking Service.</p>
<p>The idea behind this is that once you have bought the product the staff will submit 250 (or more depending on your package) &#8220;social bookmarks&#8221; to a whole range of sites.  These submissions will then form back-links to your own site that will then get picked up by search engines and will hopefully improve your ranking.</p>
<p>I&#8217;ve decided to purchase the $65<strong> slow building Social Bookmarking service</strong> that operates over a period of 30 days.</p>
<p style="text-align: right"><em><a href="http://redirectingat.com?id=3559X1229571&xs=1&url=http%3A%2F%2Fwww.flickr.com%2Fphotos%2Fhavovubu%2F3728604649%2F&sref=rss">Photo</a></em></p>
<h3>What Kind of Links Can I Expect?</h3>
<p>SubitEdge give a sample of the sites that they will submit to, they clearly have a large database of sites that they can use to build links.  As usual this catalog of sites varies widely in quality with a few at the high PR end but most with a low rank.</p>
<p>By the very nature of this service these links are going to be &#8220;user created&#8221; which are typically less well respected by the search engines, after all it is always going to be possible for anyone with the right resources to create a load of these links themselves, they aren&#8217;t therefore necessarily an indication of quality.  Which leads me on to my next question&#8230;</p>
<h3>How Valuable are the Links?</h3>
<p>This is a question I hope to answer through my experiments with these services.  In my last test, I looked at <a title="SubmitEdge Review: Article Submission" href="http://redirectingat.com?id=3559X1229571&xs=1&url=http%3A%2F%2Fwww.jezza101.co.uk%2Faffiliate-marketing%2Fsubmitedge-review-article-submission&sref=rss">article submission</a> and I noticed a small but distinct uplift in my search engine traffic.  So what kind of effect will the Social Bookmarking Service have on my numbers?</p>
<p>My gut feel is that these kind of links can&#8217;t be overly valuable.  For instance, one of the Page Rank 9 sites that they submit to is Twitter.   But I think it&#8217;s a bit cheeky to suggest that this equates to a high quality back link from a PR9 site.  In fact in this case the Page Rank is totally meaningless as a link on twitter is quickly going to be lost against the backdrop of millions of tweets that are posted every day.</p>
<p>In fact it isn&#8217;t quite clear how effectively Google crawls twitter at all since they were disconnected from the &#8220;<a href="http://redirectingat.com?id=3559X1229571&xs=1&url=http%3A%2F%2Fsearchengineland.com%2Fas-deal-with-twitter-expires-google-realtime-search-goes-offline-84175&sref=rss">fire hose</a>&#8221; data steam.</p>
<p>But Twitter isn&#8217;t the only site they will submit to, and I&#8217;ve read positive feedback from others who have tried this service, so I still think it is worth trying for myself.  And of course I&#8217;ll publish the results below.</p>
<p class="note"><strong>A brief aside</strong>, I was recently looking at the SubmitEdge forums and found it a strange place, it looks rather artificial to me. The majority of user names are in the same pattern firstname lastname, and many of the threads seem to be nonsense. Check out <a href="http://redirectingat.com?id=3559X1229571&xs=1&url=http%3A%2F%2Fforum.submitedge.com%2Fwebsite-content-online-copywriting-issues%2F6185-what-about-content-management-system.html&sref=rss">this discussion</a> on CMS software. I guess it is a &#8220;made for SEO&#8221; forum?</p>
<h3>Setting up the Order</h3>
<p>Once ordered, the next step is to let SubmitEdge know which URLs you wish to promote.  My package allows two to be submitted, and for each of those I can specify three descriptions and keywords to be used alongside the submission.  So before booking this service you do need to have an idea about what you want to target.</p>
<p>In my case I chose to use my site&#8217;s homepage, and I selected a category page that I believed would be a popular destination for visitors.   The process is fairly quick and easy to do, there is a video to help you if you get stuck and you can even pay a further fee to get them to fill the form in for you &#8211; but this shouldn&#8217;t be necessary.</p>
<p><strong>Here is a quick run down of how I approached it</strong>:</p>
<ul>
<li><strong>Title</strong>: You are advised to pick a title which contains your keyword. There are lots of resources on the net discussing <a href="http://redirectingat.com?id=3559X1229571&xs=1&url=http%3A%2F%2Fwww.copyblogger.com%2Fmagnetic-headlines%2F&sref=rss">how to write good titles</a> but remember your goal is to get people&#8217;s attention, inspire curiosity, encourage that click.</li>
<li><strong>Keyword</strong>: With the basic package you get to promote six keywords. I went for a combination of my main target generic term and a series of increasingly niche keywords.</li>
<li><strong>Description</strong>: You have to write at least 100 characters for each description, the advice is to make it sound like someone else who is using your site.</li>
</ul>
<h3>So How Effective Was the Social Bookmarking Service?</h3>
<p>SubmitEdge will supply you with a report that details all of the sites that your links are submitted to so you&#8217;ll get to see exactly where you are getting links from.  This is actually useful as a reference as there is nothing to stop you using these sites yourself in the future.  You might also want to go &#8220;vote up&#8221; your links on sites such as Digg!</p>
<p>At this point you will be wondering what kind of sites do they use?  Unfortunately the list seemed very random to me:</p>
<ul>
<li><strong>The Good</strong>:  You&#8217;ll find the normal high profile bookmarking sites such as Twitter, Digg, Multiply, etc.  Although as mention before, one tweet is hardly useful, and in my case I gained no referrals.</li>
<li><strong>The Average</strong>:  The bulk of the sites look like they are set up to run the well known bookmarking script <a href="http://redirectingat.com?id=3559X1229571&xs=1&url=http%3A%2F%2Fpligg.com%2F&sref=rss">Pligg</a>.  It isn&#8217;t too hard to use the search engines to seek out these sites, and it&#8217;s possible that SubmitEdge might even own some of them.</li>
<li><strong>The Awful</strong>: Some of the links are just awful and, given the promise of expert run campaigns, it is hard to see how SubmitEdge can justify this.  A link from medical-articles.net does not seem to fit the profile of my site!</li>
</ul>
<p>I guess we should expect varying quality as not every site is going to be high Page Rank traffic driver, so perhaps this doesn&#8217;t matter just as long as we see some improvement in search traffic.</p>
<h3><strong>Impact on Referral Traffic</strong></h3>
<p>The first point to make is that, to date,  I have just got <strong>one solitary referral</strong> from these 250 or so new links!  The referral was from tagza.com and even that person bounced straight off!  Given that social bookmarking should be a great source of referrals this is a little dissapointing.</p>
<p><strong>There are two possible reasons for this</strong>:</p>
<ul>
<li>People saw the links but chose not to click on them.  Perhaps the text that I created failed to engage those that read it which is quite possible as I am not a professional writer.  However I am familiar with the basic concepts of headline writing so I find it hard to believe this is the complete story.</li>
<li>No one actually saw the links.  This is possible if no one is actually paying any attention to the sites that were used, or the accounts that they were posted with.  For example, it is hard to believe that anyone is paying a whole lot of attention to the Twitter account used!</li>
</ul>
<p>But perhaps this doesn&#8217;t matter if I still see the boost in search engine traffic that I am looking for?</p>
<h3><strong>Impact on Search Engine Traffic</strong></h3>
<p>Here&#8217;s a quick view of search engine traffic over the last two months, so the first month is a baseline, and the second gives us an idea of the impact this service has had:<br />
<a href="http://redirectingat.com?id=3559X1229571&xs=1&url=http%3A%2F%2Fwww.jezza101.co.uk%2Fwp-content%2Fuploads%2F2012%2F02%2Fsocialstats.jpg&sref=rss"><img class="aligncenter size-full wp-image-1477" title="socialstats" src="http://www.jezza101.co.uk/wp-content/uploads/2012/02/socialstats.jpg" alt="" width="260" height="124" /></a><br />
As you can see, traffic has fluctuated a fair amount over the last month, so I believe that these new links have had some kind of an impact.  However there is no obvious uplift in this case, not like the one observed with the initial <a title="SubmitEdge Review: Article Submission" href="http://redirectingat.com?id=3559X1229571&xs=1&url=http%3A%2F%2Fwww.jezza101.co.uk%2Faffiliate-marketing%2Fsubmitedge-review-article-submission&sref=rss">article marketing service</a>.   I also suspect that the long term impact will not be as effective as these new links will quickly slip away and be replaced by newer ones. However more time is needed to get a good feel for this, be sure to sign up to our RSS Feed to see what the long term results are.</p>
<p>It&#8217;s also good to see that page views increased and bounce rate stayed at around 50%, which means that the search engines were driving some decent traffic and my site is managing to hold attention, this is some good news for me.</p>
<p class="alert"><strong>Note</strong>: In an attempt to make the test fairer, I have not engaged in any other link building activity nor have I posted any new articles to the site.  In theory, and we have to remember this is not hugely scientific, fluctuations in traffic should be down to the SubmitEdge social bookmarking service.</p>
<h3>Would I recommend SubmitEdge Social Bookmarking?</h3>
<p>If I am honest, I am not sure it is a service that I would use again, at least not in isolation.  I think this could be a good thing to do as part of a wider link building program, but if you are like me, and trying to chose the most effective link building program at a reasonable cost then I think I would chose other services ahead of this one.</p>
<p>If you really want to get the most out of social bookmarking I think you need to go and build your accounts and attract genuine users who will be engaged in your posts.  My netbook twitter account only has a few hundred followers but when I make a tweet I know that it will drive more visits than all these purchased links put together.</p>
<p>I don&#8217;t think social bookmarking is something you can fake, it takes time to <strong>build up trusted relationships</strong> with people &#8211; it&#8217;s not something you can buy.  However, at the end of the day my hit count did go up, and perhaps that&#8217;s all that matters!</p>
<p>To find out what happens next, sign up to our feed: [button type="icon" icon="B" color="orange" link="http://www.jezza101.co.uk/go/RSSFeed"]RSS Feed[/button]</p>
Check out these books:<table style=width:100% class='amazontable'><tr><tr><tr><td  style='width:100%'>
<table style='width:100%'>
  <tr>
  <td style='width:40%'>
  <img style='float:left;' src='http://www.jezreid.com/blogercise/wp-content/plugins/wp-simple-amazon-units/images/spacer.gif'>
                                                          </img>
   </td>
  <td style='width:60%;vertical-align:top;'>
   <a rel='nofollow' href="http://redirectingat.com?id=3559X1229571&xs=1&url=http%3A%2F%2Fwww.jezreid.com%2Fblogercise%2Fwp-content%2Fplugins%2Fwp-simple-amazon-units%2Fredirect.php%3Fid%3D%26ref%3D1442%26location%3DUK&sref=rss"></a>
   <p>by 
   <p><strong></strong>
  </td>
 </tr>
 <tr >
   <td colspan=2> </td>
 </tr>
</table></td></tr><tr><td  style='width:100%'>
<table style='width:100%'>
  <tr>
  <td style='width:40%'>
  <img style='float:left;' src='http://www.jezreid.com/blogercise/wp-content/plugins/wp-simple-amazon-units/images/spacer.gif'>
                                                          </img>
   </td>
  <td style='width:60%;vertical-align:top;'>
   <a rel='nofollow' href="http://redirectingat.com?id=3559X1229571&xs=1&url=http%3A%2F%2Fwww.jezreid.com%2Fblogercise%2Fwp-content%2Fplugins%2Fwp-simple-amazon-units%2Fredirect.php%3Fid%3D%26ref%3D1442%26location%3DUK&sref=rss"></a>
   <p>by 
   <p><strong></strong>
  </td>
 </tr>
 <tr >
   <td colspan=2> </td>
 </tr>
</table></td></tr><tr><td  style='width:100%'>
<table style='width:100%'>
  <tr>
  <td style='width:40%'>
  <img style='float:left;' src='http://www.jezreid.com/blogercise/wp-content/plugins/wp-simple-amazon-units/images/spacer.gif'>
                                                          </img>
   </td>
  <td style='width:60%;vertical-align:top;'>
   <a rel='nofollow' href="http://redirectingat.com?id=3559X1229571&xs=1&url=http%3A%2F%2Fwww.jezreid.com%2Fblogercise%2Fwp-content%2Fplugins%2Fwp-simple-amazon-units%2Fredirect.php%3Fid%3D%26ref%3D1442%26location%3DUK&sref=rss"></a>
   <p>by 
   <p><strong></strong>
  </td>
 </tr>
 <tr >
   <td colspan=2> </td>
 </tr>
</table></td></tr></table>
                     <div style='text-align:center'>
                      <br>
                        <img src='http://www.jezreid.com/blogercise/wp-content/plugins/wp-simple-amazon-units/images/amazon-logo.jpg'></img>
                     </div>
                        
                     <br>
                   ]]></content:encoded>
			<wfw:commentRss>http://www.blogercise.com/submitedge-review-social-bookmarking/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
	</channel>
</rss>
