Ситуация такова: навешал много друпаловских модулей на свой сайт, теперь не могу зайти в админку, похоже нехватка памяти РНР. Хостер добавить памяти отказывается.
Как можно отключить некоторые модули из БД? К примеру статистику и проверку на обновления.
Спасибо!
Комментарии
Сорри, вопрос решился сам собой. Через таблицу system
Искал похожую информацию, процитирую найденное на оф. сайте здесь:
http://drupal.org/node/51216
Enable or disable a module
The following snippets enable or disable a module. If installing a module causes a problem which prevents your ability to administer modules to disable it, you can disable the module in your database.
Enable the module with the name example:
UPDATE `system` SET status=1 WHERE name='example';
Disable the module example:
UPDATE `system` SET status=0 WHERE name='example';
http://drupal.org/node/574880
Disable all contrib modules
This searches for any modules that are installed to the drupal/sites directory, the place where contrib modules are stored, and disables them. Great for disabling all contrib modules before updating a site from one major version of Drupal to another.
UPDATE system SET status = 0 WHERE filename LIKE "sites%"
Спасибо!
У меня похожая проблема. Установил модуль reCaptcha, ключ сразу не указал (поторопился), а вывод капчи был на всех страницах (по крайней мере на кглавной точно). Статус обнулил, а на сайт не заходит, пишет
To use reCAPTCHA you must get an API key from https://www.google.com/recaptcha/admin/create
Что я делаю не так?
Спасибо.