Drupal 6 module’s page unresponsive
Discovered a very upsetting scenario today while building out a Drupal 6 site. If you have the Update module enabled and drupal.org goes down your module admin page at www.example.com/admin/build/modules stops responding. Why? I think it’s because somewhere in the Update module is a call to updates.drupal.org.
The quick and dirty solution is to temporarily disable the module via the system table in your database.
How do I do that?
- Using phpMyAdmin or some other GUI tool or via the command link
- View the
systemtable contents - Find the row where
filenameismodules/update/update.module - Edit the row and set it’s
statusfield to 0 - Refresh your modules page
- Via SQL Query/command line
UPDATE `system` SET `status` = 0 WHERE `filename` = 'modules/update/update.module'
I’m going to submit an issue about this and look into a possible solution. I was halted in my work for over an hour today because of this.
Disclaimer: I am not responsible for those of you who do not backup before making any changes to your database.
Tags: Drupal, modules, update status
April 20th, 2009 at 3:31 pm
Yes!!
I had the same problem and was nearly tearing my hair out. It first showed up when I enabled the Übercart module, but uninstalling and removing that module didn’t bring back the admin/build/modules page. Your solution, however did!
Thanks much!