August 16th, 2008 — Wordpress
Anybody who uses or has looked in to using Wordpress as a CMS will no doubt have come across the excellent revolution themes by Brian Gardner but if you are prepared to search a bit further there is a multitude of excellent “premium” magazine type themes available, my favourites being
Options by Justin Tadlock

Mimbo by Darren Hoyt

Wordpress Magazine Theme by Gabfire

For an even more detailed list of free wordpress themes click on over to http://socialcmsbuzz.com/20-free-wordpress-magazine-style-themes-08072008/
If you haven’t come across these before I hope you find them useful.
August 15th, 2008 — Affiliate Marketing
It’s now been a couple of years since I stumbled upon affiliate marketing and put up my first banners and text links. In that time I haven’t made that much money from it but I have learnt a lot. The biggest lesson I have learnt is that little site traffic equals little affiliate commissions, simple really. You could also dumb that simple equation down even further, little effort equals little affiliate commissions but that got me thinking.
If I’ve managed to make pocket money from the very little traffic that I got from some of my early sites surely with more effort and hard work I could make more money? That’s obvious I know but the way I see it many “would be” affiliates would have dropped out by now, difference is I enjoy it as well.
That leads me on to my question, is seo enough to make decent money from affiliate marketing? I hope so is my answer. I’ve been putting in a lot of effort to the seo of my recent site and have seen traffic steadily increase, fall of the planet (thanks google) and then steadily increase again. This organic traffic is still very low but I have made some affiliate sales and being in the travel vertical a single commission of £25 for one sale seems like a big deal at the moment.
August 15th, 2008 — Wordpress
I’ve been developing a site using Wordpress as a CMS and up until now things had been going great. The wealth of plugins and support available on the Internet coupled with its “out of the box” SEO friendly reputation was enough to win me over.
I’ve noticed over the last couple of weeks that page load times seemed to have increased for both the front end (seen by visitors) but especially the backend admin pages. A few weeks back I updated to version 2.5 but I’m loathsome to upgrade to the latest 2.6.1 as I’m aware that some of the plugins have not yet been updated.
To address the front end page load times I installed the super-cache plugin. As my site doesn’t have any dynamic content that gets updated regularly such as “most popular post” etc this wouldn’t be a problem for me. In a nut shell what it does is serves up a local copy of the pages content instead of querying the MySQL database each time. I’m happy to say that this seems to have decreased the page load times on the front end of my site considerably with no ill effects or problems. I just need to play around with the plugins settings to get the expiry times etc working effectively.
Some plugins could also be the cause of slow page loads. You could disable them all and then re-enable them one by one checking each time if it has an effect on the page load time. For those of you who use Firefox there is a great plugin called firebug that you can use to diagnose how long each element of your page takes to load. For an excellent guide on doing this see http://www.paulspoerry.com/2007/08/04/diagnose-slow-wordpress-performance-using-firebug/
The admin pages were another matter. navigating between admin pages was taking over a minute in some instances, totally irritating and useless. First I disabled all plugins to check it wasn’t one of them effecting the admin pages but this had no effect whatsoever. Secondly I turned on MySQL query cache by adding the following lines to my my.cnf file
query-cache-type = 1
query-cache-size = 20M
I then restarted MySQL and for good measure I restarted my Apache server (I’m on a dedicated server) Fingers crossed this seems to have had a positive effect and the admin pages are now running much faster and more importantly are usable.
I just hope it stays this way. I have a number of sites in the pipeline that I was planning on using wordpress for as the CMS
July 29th, 2008 — seo
I offered a simple solution to redirecting affiliate links using .htaccess previously now heres one using good old faithful PHP.
Save the following code as a .php file, naming it is your choice. (For the example it is called link.php).
$path = array(
'link-1' => 'http://www.aterriblelongaffiliatelinkhere.co.uk',
'link-2'=> 'http://www.anotherterriblelongaffiliatelinkhere.co.uk';
if (array_key_exists($_GET['id'], $path)) header('Location: ' . $path[$_GET['id']]);
?>
replace the ‘link-1′ etc with a keyword describing where the link is going and also the corresponding URL of the affiliate link, when you add more than 2 links make sure the last link doesn’t have the comma after it.
Upload to the root of your website
Now if you go to www.yoursite.co.uk/link.php?id=link-1 it will redirect to ‘http://www.aterriblelongaffiliatelinkhere.co.uk
If you want to clear that up even more
Put the following lines in your .htaccess file
RewriteEngine On
RewriteRule ^go/([/_0-9a-zA-Z-]+)$ link.php?id=$1
Now if you go to www.yoursite.co.uk/go/link-1 it will have the same effect as above.
This works fine for any website using affiliate links, that includes Wordpress. I use this method to keep the number of plugins I install down to a minimum.
Hope it is of some use.
July 29th, 2008 — seo
So you’ve installed Wordpress, chosen or tweaked a template design, written that amazing original content that users will want to flock to your site to read, then your done, right? NO, you have only just started. Wordpress is pretty impressive “straight out of the box” for seo friendliness but still needs some tweaks to get the best out of it, especially with regards to that thawny issue of duplicate content. Lucky for you Joost de Valk (a favourite blogger of mine) has written a very comprehensive guide including which plugins may/will help you with your quest for SEO supremacy, find the definitive guide to Wordpress SEO here
Enjoy 
March 28th, 2008 — Uncategorized
While adding a few test categories and posts to the website so that we have something to work on when changing the css and layout files, we quickly noticed that as standard, wordpress shows all the sub-category posts when you have clicked on the parent category, something that we didn’t want. For example, clicking on the parent category “where to stay” showed the post under “where to stay” and all the posts from all the sub-categories, such as cottages, parks, hotelsetc all in one list.
Searching the web for a solution quickly came up trumps with a template trick, all thats needed is a couple of lines added to your archive.php or category.php pages. Instead of copying someone elses work visit http://lonewolf-online.net/computers/knowledgebase/wordpress-not-show-posts-of-subcategory for an excellent guide.
March 21st, 2008 — seo
There is quite a lot of talk around hiding, redirecting or cloaking affiliate links at the moment and if it is a good or bad idea from an SEO, will I get penalised by google perspective.
What we mean is turning a www.merchantwebsite.co.uk/en/category?aid=1234432234 link into www.yourwebsite.co.uk/product
Reasons for doing this are, visitors are more likely to click the link if it is pointing to your domain name instead of somebody elses, it looks more tidy and is easier to remember.
There are quite a few ways of doing this but my favourite is via htaccess
add the following line to your .htaccess file
Redirect 301 /productname http://www.affiliatewebsite.com/?aid=32134
in the above example www.yourwebsite.co.uk/productname will redirect to www.affiliatewebsite.com?aid=32134
How simple is that and all updateable from one file.
March 21st, 2008 — Site Case Study
So should we develop the site from scratch or use a CMS? Quite frankly it has been an easy question to answer this time round. The time it has taken to develop the backend of a new website and design the layout previously has been too time consuming. Although I can script ok in PHP and am familiar with Mysql I’m not the fastest nor am I any cop at design to be honest so it has been an easy option to decide to use a CMS (Content Management System), but which one? Open Source CMS is worth a look for ideas.
There are many CMS open source scripts available, Joomla and Drupal being quite popular but one that I have been paying some serious attention to is Modx which I think is brilliant, if you haven’t heard of this CMS before visit their website, it is well worth considering it for a future project. Although I think Modx is brilliant, I have actually chosen to use Wordpress. But thats a Blogging tool I hear you cry, yes that’s true but with the use of certain plugins and a good theme Wordpress works very well as a CMS and many affiliates have utilised it for this very purpose, ukoffer springing first to mind as an example.
One of the other reasons that I have chosen Wordpress is a theme (or selection of themes) that I stumbled upon by Brian Gardner at revolutiontheme The magazine theme was exactly the kind of layout I was looking for so what would be the point in spending valuable time designing and developing a theme from scratch when one is already available and easily customisable if you know a little about css, html and php?
So we now have a home for the new website and a place to host it. Bargain
March 11th, 2008 — Miscelaneous
2 months after ordering Tiscali Broadband we have finally got back on to the internet. Along the way we have experienced extremely poor communication and terrible customer service from their call centre which take well over 20 minutes to get through to an advisor.
They may well be able to offer Broadband at very reasonable costs but is it worth the hassle when you can’t get through to anybody when there is a problem? Maybe you do get what you pay for?
March 11th, 2008 — Site Case Study
A lot of people don’t pay as much attention to their domain name as they probably should. People will make a judgement regarding your website before they even visit it, the domain name or URL (Universal Resource Locator) can attract or deter visitors so it is well worth spending time choosing it, after all it is the first thing that the search engines come across when they crawl.
Often businesses will choose to include their name in the URL, such as www.confused.com but without the huge advertising budget would it be easy to work out what this site does without visiting it?
Some sites, especially those that specialise in a certain area will use those keywords in their chosen domain name, this is exactly what we will be doing with our guide to the Norfolk Broads website. Quite a while ago we secured www.norfolkbroadsguide.co.uk and this is the domain name that we will be developing the new site on. Yes it is slightly longer than we would have probably liked but it does contain important keywords and I like to think it is also easy to understand what the site will have to offer even before people visit it, It should also be easy to remember so branding should not be an issue.
I used www.123-reg.co.uk to search for and purchase the domain, another site that may be of interest when searching for a domain name is www.nameboy.com this allows you search for a domain using keywords that you would like to be included in the URL.
Now that we have chosen the domain name we need to decide if we are going to code the site from scratch or use a CMS (Content Management System). We’ll cover that in a future post.