Solving WordPress’s White Screen of Death

WordPress has an issue that can be dumbfounding to say the least. An occurrence called the “White Screen of Death” can happen for really any issue; incompatible plugin, theme bug, an update to a file, etc. But it’s the blank screen with no information that is the difficult part of solving the blank screens cause.… Continue reading Solving WordPress’s White Screen of Death

How to Get The Domain and TLD from a URL using PHP and Regular Expression

How to get a domain and it’s TLD from a URL string using PHP and Regular Expression: preg_match(“/[a-z0-9\-]{1,63}\.[a-z\.]{2,6}$/”, parse_url($_url_string, PHP_URL_HOST), $_domain_tld); echo $_domain_tld[0]; This is particularly useful for dealing with country TLD’s, like co.uk, on.gc along with the general .com, .net, etc. It is also capable of ruling-out multiple subdomains like: http://i83tr.cdn-2.delivery.net/homepage/sprite.png so you end… Continue reading How to Get The Domain and TLD from a URL using PHP and Regular Expression

Can’t Find Documentation on a WordPress Function?

QueryPosts.com is a great site for documentation and source details on WordPress functions. WordPress.org’s Codex is an essential site for referencing the inner workings of WordPress and does have a long list of documentation covering most of the WordPress functions, but does not cover all the functions available in WordPress and doesn’t show the functions’… Continue reading Can’t Find Documentation on a WordPress Function?

IMEI checker

To quickly check your IMEI number on your Mobile device, dial *#06# on the phone number pad.

Top 5 Twitter Tweet Post Tips; Twitter Tweeting Optimization

I don’t really use Twitter for much, but I know several clients over the last couple of years who do. And over that time I’ve learned a lot about what makes an effective Tweet. To help those who want to really see growth in their Twitter accounts here are 5 tips to help you Tweet… Continue reading Top 5 Twitter Tweet Post Tips; Twitter Tweeting Optimization

Checking Your Crawlability; Helping The GoogleBot Crawl Your Site

Spiders and Bots are always scanning through your site and indexing the information as best they can. But how do you test your crawlability, to make sure the information you’re providing is indexed properly? Enter SpiderTest and SEOBook.com’s Spider Test Tool. Both crawl your site, but each reports back a separate set of info to… Continue reading Checking Your Crawlability; Helping The GoogleBot Crawl Your Site