Is it safe to move my modules

  • From sites/all/modules/
  • To sites/all/modules/contrib and sites/all/modules/custom

on a production site?

That is, does Drupal automatically detect that the module is still there, but in a new path?

link|improve this question

feedback

5 Answers

up vote 3 down vote accepted

If you move a module Drupal will see that the old one is broken, and a new one exists. It will not assume the two are the same thing - simply moved.

link|improve this answer
thanks, will close if one more person can confirm this – davidosomething Apr 16 '10 at 16:59
1  
If you disable the module, move it, then re-enable it at the new location you should be fine. It'll probably keep its settings. If you simply yank it out from underneath Drupal it won't like that. – McAden Apr 16 '10 at 17:04
1  
Step 1: Move the module. Step 2: Clear the cache. If a module stays broken at this point, there is a bug. – Grayside Apr 17 '10 at 7:08
feedback

Drupal stores the file location in the system table, the info will be rebuilt when you clear the module cache, so if you move the stuff and clear the cache afterwards you should be fine.

link|improve this answer
good call, thanks! – davidosomething Apr 16 '10 at 21:00
feedback

Drupal versions up to D6 kept module location in the system table, but starting from D7 there're multiple places where path is recorded (e.g. registry and registry_file tables) so just moving the folder and clearing cache will not do it, most probably will lead to significant problems.

A sequence of steps you can try:

  1. Backup your database
  2. Check-in your code into version control
  3. Run following queries:

    UPDATE system SET filename = REPLACE(filename, 'sites/all/modules', 'sites/all/modules/contrib');

    UPDATE registry SET filename = REPLACE(filename, 'sites/all/modules', 'sites/all/modules/contrib');

    UPDATE registry_file SET filename = REPLACE(filename, 'sites/all/modules', 'sites/all/modules/contrib')

  4. Move folders

  5. Run: drush cc all
link|improve this answer
when (5) gives errors (context gives errors), try to truncate all your cache% tables – filsterjisah May 3 at 12:44
feedback

It's good to have /contrib and /custom subfolder for the modules. For D7, specially if you use entity, you should disable the modules, move them and then re-enable. It works.

The alternative, move the modules to the subfolders and clear cache, sometimes doesn't work and may generate WSOD.

link|improve this answer
feedback

You can move most of the modules safely, if you clear the cache afterwards (drush cc all).

However, some modules, especially ctools, store file path information in places other than the system table or caches. You may have to leave those modules in their original location, but you can still move everything else.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.