Musings of a Manchester Drupal guy

Drupal, Open Source, Analytics, Social Media.

Thursday, March 30, 2006

Dreamweaver MX 2004 Crashes on adding sites

My version of Dreamweaver (updater 7.0.1) kept on crashing when I added sites. I found deleteing the contents of the following cured the problem.

C:\Documents and Settings\{username}\Application Data\Macromedia\Dreamweaver MX 2004\Configuration\SiteCache

(these folders are normally hidden - you may have to use Explorer > Tools >
Folder Options to unhide them)

Friday, March 24, 2006

Extracting EXIF information from JPEGs Using ColdFusion (wiggy.coldfusionjournal.com)

REally useful guide on extracting metadata from jpeg files using java and coldfusion.

Thursday, March 09, 2006

Programatically optimising tables in mysql with sql

LOCK TABLE ec_products READ;
OPTIMIZE TABLE ec_products;
UNLOCK TABLES;