Closed (fixed)
Project:
Thunder
Version:
8.x-2.39
Component:
Code
Priority:
Normal
Category:
Support request
Assigned:
Unassigned
Reporter:
Created:
15 May 2019 at 08:29 UTC
Updated:
29 May 2019 at 12:44 UTC
Jump to comment: Most recent
I tried to update my thunder installation yesterday - which failed. I installed thunder using compoers. Afterwards I installed some additional modules using drush (maybe wrong?). I tried to update the whole site by using drush up - which failed with a long php error message and a hint to DBLog.php
What is the right way to update thunder with additional community modules installed?
Comments
Comment #2
daniel.bosenIf you installed Thunder with composer, the right way to add additional modules is to call
composer require drupal/<module-name>in the project root folder. For example installing the webform module would be done by callingcomposer require drupal/webform.To update your project, just call
composer update. This will update Thunder, Drupal Core, and all installed modules. You still have to run the database updates after this.Comment #3
vistree commentedThanx daniel! Can I "migrate" the drush downloaded modules to "composer omce" by just do an additional call of composer require drupal/module-name??
Comment #4
daniel.bosenCould work, but I would manually delete the module before doing the composer require
Comment #5
vistree commentedThank you!
Comment #6
vistree commented