Matthew Woodard's blog

This is a flyer I designed for a youth football camp in Austin, TX. Colt McCoy and Ricky Williams will be featured in the camp. Camp starts July 8 so be ready!

Mobile Blogging from here.

Drupal and MySQL

If you have ever been stuck (like myslef) ... trying to disable a Drupal Module using the interface, but for some reason or another you CANT. Here are some tricks to allow you to do so through the Database, (not recommended, but when all else fails).

This will give you a list of all modules and their status

1
 SELECT name,status FROM system WHERE type='module';

This will set a module to disabled (be sure and replace "module_name" with your actual module.

1
UPDATE system SET status='0' WHERE name='module_name';

Hope this helps.

Did this video from YouTube work? It is hilarious if it does work ... you will see

jQuery Cheat Sheet

A very well detailed jQuery Cheat Sheet.