Drupal: how to disable broken module manually
Wednesday, November 14th, 2007I did something wrong applying a patch to a module. This resulted in a broken site — I wasn’t able to see the Administration page anymore to disable the module (or any page for that matter).
Log on to your server via SSH.
mysql -p
Gets you into mysql.
To see your databases:
show databases;
To pick the drupal database:
use drupal;
Then, […]