edit this page - page history - about editing

Drupal

Drupal is a PHP-based web application framework, similar to Symfony (but also wildly different).

Disabling Broken Drupal Modules

Enabled modules are stored within the database (such as MySQL), so you will need to edit the database manually. To list all the currently enabled modules:
select name,status from system where type='module';
To disable a specific module:
update system set status=0 where name='alfresco_browser' and type='module';


Categories: Drupal | PHP

edit this page - what links to here? - page history - top
Last edited by jevon jevon 4 months ago