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?
|
feedback
|
|
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. | |||||||||||
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. | |||
|
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:
| ||||
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. | |||
|
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. | |||
|
feedback
|