Skip to main content
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
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
Feb 10, 2013

relogo: rel="logo"

There is a new proposed "standard" rumbling around the 'nets on how to provide an up-to-date logo for a brand using the <link> tag.  The goal is to provide outside websites, applications, readers, and whatever else the Internet may bring with an always up to date logo. Think of it as your favicon for browsers, our the apple-touch-icon.
#rel  #relogo
Dec 28, 2012

Git RPC Failed; result = 22; HTTP 411

Apparently by default git has a limit for max upload files. We build our test sites locally, push to git and then deploy to a beta site. That means there can be a bit of data being transferred, especially in a site with PDFs.
#git