Micheal Jackson’s death impact on web

June 26th, 2009

The unfortunate early loss of one of the greatest pop stars of our times has caused havoc on the web. TMZ and Perez Hilton´s websites have suffered downtimes, and twitter has been struggling. The web is becoming a storm of MJ.

The calm after the storm will present an interesting study on the effect of news over a social media medium.

Making a Dynamic Wordpress Menu Outside Wordpress

June 1st, 2009

Imagine you have a blog which is a supplement to your site, such as a platform for company news.

Now imagine you want to add your blog to your main site’s navigation menu. Easy enough, just add a static link.

Now imagine you want to create an unordered list of the categories in your blog, so that each category can be easily accessed from any page on your website…. oops, it just got tricky. Read the rest of this entry »

Remove BuddyPress AdminBar Plugin

May 18th, 2009

This plugin removes the admin bar completely from the public and admin areas of the website. Can be used either as a normal or MU plugin.

Download

Last Updated : 2009-05-20
Current Version : v1.1
Tested on WP MU  2.7+

Remove BuddyPress AdminBar Plugin Read the rest of this entry »

Google Friend Connect - The next “big thing”?

April 28th, 2009

In a nutshell…

Google recently launched it’s version of social networking… by tying the sites you visit together via one universal, open platform.

The advantages of adding this feature to your site means that people can join your site by simply clicking one button and signing in using their Google or any OpenID account. This then allows the user’s friends on Google to see they joined your site, making a potential viral marketing oportunity. Not only that, Google Friend Connect supplies you with various gadgets that you can place around your site (e.g. the toolbar you see at the bottom of this blog). Read the rest of this entry »

Restoring your Qmail mailbox settings on PLESK

April 23rd, 2009

Screw up your email settings? :) it happens to the best of us.

PLESK has a handy little app that reverts your mailbox settings back to the settings in the PLESK database, and makes sure permissions, etc. are correct. Read the rest of this entry »

Twitter - tools to tweet with

April 15th, 2009

It’s hard to argue with the awesomeness of the twitter phenomena. Their flexible API is a testament to how a great tool can used in so many ways.

The downside is that with such a widely adopted API there are about as many tools as there are tweet. Read the rest of this entry »

LibClamAV Warning: Cannot dlopen: file not found - unrar support unavailable

April 7th, 2009

We encountered this error recently when upgrading our ClamAV to 0.95 and ran into a problem where we got the error :

LibClamAV Warning: Cannot dlopen: file not found - unrar support unavailable

The solution to this is quite simple:

Read the rest of this entry »

iPhone Emulation - Testing your sites without an iPhone

April 7th, 2009

With apple’s iphone becoming an increasingly popular tool for browsing the internet, web designers and developers should really be testing their sites with the iPhone to ensure compatability. Most people won’t want to buy an iPhone exclusively for this purpose, so you’re only option is to emulate it on a PC! Read the rest of this entry »

Meta Tag Manager Wordpress Plugin

March 31st, 2009

Here’s a little plugin that’ll make meta tag management easy, and not something you need to edit on your theme.

Although there are some similar plugins out there, I couldn’t find one that let’s you add any kind of meta tag across the whole site. This was mainly aimed to help manage verification tags for not just google and yahoo, but others too like blogcatalog.com .

Download

Last Updated : 2009-04-01
Current Version : v0.2
Tested on WP 2.7+ , not sure how low you can go.

Dowload the Meta Tag Manager Wordpress Plugin

Read the rest of this entry »

PHP __autoload() “not found” thowing exceptions

March 31st, 2009

There is much debate about the __autoload function introduced in PHP5. I personally love it as all those requires, includes etc. made programs quite messy, and frankly annoy me if you create loads of pages that keep on requiring the same classes.

The one fault __autoload has though is that Exceptions cannot be thrown, and that to me would give potential for some great degradeablity.

Thankfully, there are a few ways of hacking the autoload function so that it does throw an Exception. The most common way is to create a class with the class name the autoload function is looking for using the eval() function, and then throw an exception once autoload is happy. Read the rest of this entry »