Matthew Woodard's blog
23 June 2010
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!
23 June 2010
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!
23 June 2010
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.
20 June 2010