Skip to main content
New book · out now

Understanding Drupal: A Complete Guide to Caching Layers

A deep, practical tour through every caching layer in Drupal — from the render cache to chained fast backends.

Get it on LeanPub
Understanding Drupal: A Complete Guide to Caching Layers — book cover
Recent writing RSS feed →
Jun 20, 2013

Setup Drupal cron through cPanel

Drupal uses a cron to take care of clean up tasks, as well as utilizing certain features. By default Drupal executes its cron run every three hours based on a user visit. This causes the cron to be executed over HTTP. Depending on the generally it can be more efficient to execute your Drupal cron directly through PHP command line on the server side versus HTTP.
#cpanel  #cron  #drupal
Jun 11, 2013

Custom WordPress Widget CSS Classes

One thing that I has always bothered about WordPress widgets is the lack of ability to define custom widget CSS classes for each widget - it is kind of ugly using the stock widget IDs when you have four text widgets.
#github  #plugin  #wordpress
Jun 04, 2013

Father's Day gifts for Web Developers.

Two years ago I became a dad; and, with that I actually started checking into what blogs and techy stores suggest for Father's Day.
#fathers-day
Apr 26, 2013

Flush WordPress rewrite rules through phpMyAdmin

I migrate a lot of WordPress installs from a localhost to the beta server and then to production. It's easy enough to update the URLs in _options and guids in _posts, but the one thing that irritated the hell out of me was the rewrite rules.
#wordpress
Apr 02, 2013

XAMPP MySQL Command Line

MySQL command line allows you to manage your database environment through your terminal, or command prompt for Windows. Typically when you set up a web server you would have installed MySQL as its own service and can easily access the MySQL command line via mysql (mysql.exe).

#mysql  #xampp
Mar 30, 2013

Matt Cutts from Google on WordPress and SEO

This video was recorded from WordCamp 2009 in San Francisco back in 2009. Four years may have passed, but the basics of search engine optimization are still there. I think one of the problems we all face when dealing with SEO is becoming too calculated and analytical instead of trying to be natural - which Google tries to do.
#seo  #wordpress
Mar 18, 2013

A better responsive sidebar

Sidebar content always gives me a little twinge when it comes to responsive design. Typically a left sidebar will end up stacking directly above the content and a right sidebar directly below. This can be fine, unless your left sidebar has 5 different content areas and now the user has to scroll two screen lengths just to read an article.
#css  #responsive-design
Feb 24, 2013

Speed Up WordPress Load Time

I like that WordPress has a built in permalink builder, however I wish it had a built in way of adding your own custom rules. You can, however, write a function to hook with the flush_rewrite_rules() built in WordPress.
#htaccess  #tips  #wordpress