'Fore!' – Four Iron Golf Shop launched
I’m excited to share with you a new venture – Four Iron Golf Shop – that has just gone live. fouriron.co.uk “Four Iron is a shift away from traditional golf shops, clothing and websites. It Read more…
Oompa oompa stick 'em up for Zimbra
I’ve finally got round to installing a decent email server to manage my ever expanding archive of mail. I came across Zimbra a fair few months ago, but haven’t had the time/hardware to have a Read more…
Rkhunter not finding the OS
I’ve a couple of fedora boxes that were coming up with this error when rkhunter was run. Rootkit Hunter 1.2.8 is running Determining OS… Unknown Warning: This operating system is not fully supported! Seems you Read more…
FTP in a Plesk stylee
I found myself wanting to create an extra FTP user for one of my Plesk machines that would only have access to a subdirectory of one of the machine’s domains. It turns out this isn’t Read more…
Feeling Bashful
Counting files in a folder ls -1 | wc -l Deleting a lot of files when plain ol rm won’t work find . -name ‘prefix*’ -print0 | xargs -0 rm Find files containing a text Read more…
An IV for VI
It seems with VI you are always learning a new trick to it every other day, so I thought I’d start adding the tools I use regularly here. The search and replace in VI is Read more…
Playing with Fireworks
I created this image by following a tutorial linked to from a Sitepoint newsletter which was nice. You’ll need a modern browser to see the image as intended.. (Firefox, IE7) Stretch your browser window down Read more…
osCommerce redirect error when SSL enabled and shop directory is different to NONSSL directory
I found the solution to this issue from a thread on the forums. It means making a correction to the tep_redirect function in functions/general.php. You need to add the DIR_WS_HTTPS_CATALOG constant into the url transformation Read more…
Force a specific domain
To force a specific domain to be used when your site can be accessed by several, a tidy way is to use mod_rewrite. This lends itself very well to password protected directories that have images Read more…