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';