I disabled one required module from the e-commerce package by accident and now the site doesn't work! Can I re-enable it through a field in the database?

-I answered my own question! Status field in system table set to '1' for active and '0' for inactive.

Here is the SQL for the product.module (edit for the module you are trying enable)
UPDATE `system` SET `status` = '1' WHERE CONVERT( `filename` USING utf8 ) = 'modules/ecommerce/product/product.module' LIMIT 1 ;

-Tom

Comments

heine’s picture

This SQL snippet :-)
--
Tips for posting to the forums.
When your problem is solved, please post a follow-up to the thread you started.