May 7th, 2008 by Kieran

I’m trekking into the unknown - CentOS, but thats off topic. For some reason, even the latest version stuck in 1982 - vi as the default editor for cron etc. Argh! I hate vi!
Read the rest of this entry »
Posted in Linux | No Comments »
May 1st, 2008 by Kieran

WP-o-Matic makes autoblogging a easy by automatically creating posts from the RSS/Atom feeds you give it. Unfortunately, the latest release doesn’t work very well, by itself or on Wordpress 2.5. Watch out for my post on fixing Wordpress 2.5 issues.
Read the rest of this entry »
Posted in General, PHP, Wordpress | No Comments »
May 1st, 2008 by Kieran

Stuck trying to find text within files on Linux?
cd /directory_tree_you_want_to_search
find . -type f -exec grep -l "string to find" {} \; -print
Easy!
Posted in Geekery, Linux | 2 Comments »
April 30th, 2008 by Kieran

Composers.net - an i9000 Networks project that hosts a fantastic selection of community submitted content on musical composers has risen from Page Rank 4 to Page Rank 5. Also, Google is returning it as the 5th result when searching for composers. Nice!
Posted in General, Search Engines | No Comments »
April 30th, 2008 by Kieran

I’m now Page Rank 4 
Posted in General, Search Engines | No Comments »
April 28th, 2008 by Kieran

Imagine you have a selection of domain names that point to the same site, are some of those domains specific to certain areas of your site?
Here’s how I redirect a domain name to a specific area on a site
RewriteEngine On
RewriteCond %{HTTP_HOST} ^(www\.)?cubecartexperts\.co.uk
Rewriterule ^(.*)$ http://www.i9000networks.com/landing-page/cubecart-experts/ [L]
You’ll also need the domain set in your virtualhost config like this
ServerName www.i9000networks.com
ServerAlias www.cubecartexperts.co.uk
ServerAlias cubecartexperts.co.uk
It is a much more helpful way of helping your users navigate your site.
Posted in Apache, Domains, Geekery, Linux | No Comments »
April 25th, 2008 by Kieran

Wordpress Suicide is a fun, yet really useful plugin. I had a requirement to clean out a WP 2.5 blog because a client had really screwed up with the taxonomy directly in the database. I didn’t want to erase the entire blog because that’d be too easy. I stumbled over Wordpress Suicide and had great fun using it. It makes clearing a blog of all it’s life quite enjoyable!
Posted in Wordpress | No Comments »
April 24th, 2008 by Kieran

There is a little known feature in Wordpress 2.5 called “Secret Key“. If you’re upgrading from a previous version you probably won’t even know this feature exists as it only appears in clean installs where you have a brand new wp-config.php.
Read the rest of this entry »
Posted in Geekery, Wordpress | No Comments »
April 22nd, 2008 by Kieran

A quick update on people that need the Crawl Rate Tracker to work with Wordpress 2.5 - just create the table manually.
Read the rest of this entry »
Posted in General, PHP, Wordpress | 3 Comments »
April 22nd, 2008 by Kieran

Following on from my previous article, regarding Setting up and using NFS on Ubuntu, here’s how I keep backups for quite a few clients.
On a particular site I maintain a single backup server that several clients backup to on a nightly basis.
Read the rest of this entry »
Posted in Linux | No Comments »