I have prepared my Drupal 10 website (with upgrade_status) for the upgrade to Drupal 11.
Is this a good solution?:
composer show | grep drupal
drush pm:uninstall upgrade_status -y
composer remove drupal/upgrade_status --no-update
chmod u+w web/sites/default
chmod u+w web/sites/default/*settings.php
chmod u+w web/sites/default/*services.yml
composer require 'drupal/core-recommended:^11' 'drupal/core-composer-scaffold:^11' 'drupal/core-project-message:^11' --no-update
composer remove drupal/core --no-update
composer require 'drupal/core-dev:^11' --dev --no-update
composer require 'drush/drush:^13' --no-update
composer update --dry-run
composer update
composer install
drush updatedb:status
drush updatedb
composer update --dry-run
drush updatedb:status
drush updb:status
drush updatedb
drush st
drush updb
chmod 755 web/sites/default
chmod 644 web/sites/default/*settings.php
chmod 644 web/sites/default/*services.yml
drush cex
drush watchdog:tail
drush ws
Solution?
Neuen Kommentar schreiben