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 ;
I'd actually like to write up some useful user documentation, and it makes sense to place it under the existing admin/help area, and cross-reference to it from my actual interfaces.
Looking at help_page() I see I can't really extend much deeper with my hook_help() function. I wanted to create a page /admin/help/relationship/predicates as a subsection of my user help, but that's not going to work.