We have taken action on the warning that appeared when we fixed the problem with the automatic_updates module that occurred during the last Drupal-CMS update.
I solved this by removing package_manager and automatic_updates and then reinstalling, but when I tried to remove them, the dependency with drupal_cms_starter prevented me from doing so, so I removed drupal_cms_starter, removed package_manager and automatic_updates, and then reinstalled.
By deleting drupal_cms_starter, I also deleted the modules and themes that are installed with Drupal-CMS from the start, and because the dependency relationships were broken, it is taking quite a while to fix.
Nortice.
This is a case that occurred in my environment, where I was using DDEV on a local Mac environment and updating from a pre-release version, so it may not be reproducible in other people's environments. Also, because I am taking a special approach that breaks the dependencies that Drupal has by default, there is a possibility that the environment may not be able to be repaired if the same approach is taken, so if you are going to perform the work using the article as a reference, please make sure you fully understand the situation and investigate it yourself before doing so at your own risk.
Warning displayed
Warning message displayed in the terminal when installing the automatic_updates module
[warning] foreach() argument must be of type array|object, null given Mapping.php:31
[warning] foreach() argument must be of type array|object, null given Mapping.php:230
Warning from package_manager in the admin screen log
The following paths in /var/www/html aren't recognized as part of your Drupal site, so to be safe, Package Manager is excluding them from all stage operations. If these files are not needed for Composer to work properly in your site, no action is needed. Otherwise, you can disable this behavior by setting the package_manager.settings:include_unknown_files_in_project_root config setting to TRUE. .ddev README.md launch-drupal-cms.sh recipes
The following warning will always be displayed in the admin screen.
//
The latest version of one or more of the modules or themes you are using is available. You should update it as soon as possible to keep your site functioning properly. This message is displayed in the admin area all the time. It is displayed even if the core program, modules and themes are all up to date and there is no need to update them.
//
This will fix the problem of the above warnings and update notifications being displayed at all times.
Summary of this work
- In order to fix a bug in the automatic_updates module, I deleted the package_manager and automatic_updates, but I couldn't delete automatic_updates because it was linked to drupal_cms_starter as a dependency.
- To delete automatic_updates, also delete drupal_cms_starter and delete automatic_updates
- The themes (gin, easy_email_theme, drupal_cms_olivero) and modules that are linked to the dependency (drupal_cms_starter) will be deleted at the same time.
- I also deleted the theme gin from the admin screen, so I couldn't log in due to an error.
- The error displayed was that the easy_breadcrumb did not exist. This was fixed by reinstalling.
- The deletion of themes and modules causes a conflict with core.extension, and it becomes impossible to recover.
- Fixed a bug in PHP (PathLocator class).
- Reinstall the required themes and modules (gin, package_manager, etc.).
- The module is reinstalled successfully, but there is a problem with the theme installation
- Repairing Gin to fix errors in the admin screen
- The management screen is restored by repairing the incompatibility with Gin's toolbar and reinstalling Gin, but an error is displayed and there are still problems with the package manager and the installation of the remaining themes.
- Reinstall the package manager and theme. At this point, dependency errors will still remain.
- Fixed a bug in YML (services.yml)
- Repair dependencies with composer install, and update the database with drush updb.
- The cache was cleared using drush cr, and the error was finally resolved.
- An error caused by KeyValueStore/DatabaseStorage is displayed. This is caused by old data remaining in the DB, so it can be dealt with by deleting it.
We are working on a fix for the problem where the warning message [ An updated version of one or more of the modules or themes you are using is available. You should update it as soon as possible to keep your site functioning properly. ] is displayed at all times.
This is an article that I have written as a reminder for myself, as it is a unique problem that occurred in my environment and the response is not a correct response and cannot be used as a reference. If it is not a unique problem that occurred in my environment, but a bug that occurs in Drupal core or modules that can be reproduced in other environments, it is thought that it will be handled with a bug fix. As the warning itself does not have a direct impact on the operation of Drupal-CMS, it is also wise to wait for a bug fix, so I cannot recommend that you take the same action as me after reading the article.
In this article, I dealt with the problem using my own poor knowledge, which made the situation worse, and although I was eventually able to fix it, it was hardly an appropriate way to deal with the error. There are probably other, more appropriate ways to deal with the problem, so if you encounter a similar problem, I recommend that you consult someone with specialist knowledge.
To fix a bug in the automatic_updates module, package_manager and automatic_updates were removed.
Remove package_manager and automatic_updates
We will change the settings so that the error log warnings are resolved and the package_manager works correctly.
Resolve the error log warning
// We will change the settings so that the error log warnings are resolved and the package_manager works correctly.
$ drush config:set package_manager.settings include_unknown_files_in_project_root TRUE -y
$ drush cr
// automatic_updates update
$ composer require drupal/automatic_updates
./composer.json has been updated
Running composer update drupal/automatic_updates
Loading composer repositories with package information
Updating dependencies
Nothing to modify in lock file
Writing lock file
Installing dependencies from lock file (including require-dev)
Nothing to install, update or remove
Generating optimized autoload files
59 packages you are using are looking for funding.
Use the composer fund command to find out more!
Found 2 security vulnerability advisories affecting 1 package.
Run "composer audit" for a full list of advisories.
Using version ^3.1 for drupal/automatic_updates
Result
- I ran composer require drupal/automatic_updates, but it displayed ‘Nothing to install, update or remove’, so it's already installed.
- It is recommended that you run composer audit (possible security vulnerability)
- The version ^3.1 of automatic_updates is used.
Running composer audit
//Running composer audit
$ composer audit
Found 2 security vulnerability advisories affecting 1 package:
+-------------------+----------------------------------------------------------------------------------+
| Package | drupal/ai |
| Severity | |
| CVE | NO CVE |
| Title | AI (Artificial Intelligence) - Critical - Remote Code Execution - |
| | SA-CONTRIB-2025-021 |
| URL | https://www.drupal.org/sa-contrib-2025-021 |
| Affected versions | <1.0.5 |
| Reported at | 2025-03-05T17:18:25+00:00 |
| Advisory ID | SA-CONTRIB-2025-021 |
+-------------------+----------------------------------------------------------------------------------+
+-------------------+----------------------------------------------------------------------------------+
| Package | drupal/ai |
| Severity | |
| CVE | NO CVE |
| Title | AI (Artificial Intelligence) - Moderately critical - Gadget Chain - |
| | SA-CONTRIB-2025-022 |
| URL | https://www.drupal.org/sa-contrib-2025-022 |
| Affected versions | <1.0.5 |
| Reported at | 2025-03-05T17:27:19+00:00 |
| Advisory ID | SA-CONTRIB-2025-022 |
+-------------------+----------------------------------------------------------------------------------+
Result
The composer audit detected two security vulnerabilities (SA-CONTRIB-2025-021 and SA-CONTRIB-2025-022) in the drupal/ai module.
- The affected versions are those prior to 1.0.5.
- The module in question (drupal/ai) is highly unlikely to be directly related to the automatic_updates error, but it needs to be fixed for safety's sake.
Handling security vulnerabilities
// Update the drupal/ai module to the latest version.
$ composer update drupal/ai --with-dependencies
$ drush cr
The update of the drupal/ai module has been completed.
Uninstall and delete automatic_updates.
Uninstall and delete automatic_updates.
$ drush pmu automatic_updates -y
$ composer remove drupal/automatic_updates
Removal failed, drupal/automatic_updates is still present, it may be required by another package. See composer why drupal/automatic_updates.
Result
- I ran composer remove drupal/automatic_updates, but it couldn't be deleted due to dependencies.
- The automatic_updates module may be dependent on other modules or packages.
Check the effect of the dependency using composer why.
$ composer why drupal/automatic_updates
drupal/drupal_cms_starter 1.0.2 requires drupal/automatic_updates (^3.1.7)
drupal/project_browser 2.0.0-alpha9 conflicts drupal/automatic_updates (<3.0)
Result
- drupal/drupal_cms_starter 1.0.2 requires drupal/automatic_updates (^3.1.7).
- drupal/project_browser 2.0.0-alpha9 conflicts with versions of drupal/automatic_updates less than 3.0 (however, the current automatic_updates is ^3.1, so it seems to be fine).
In other words, drupal/drupal_cms_starter depends on automatic_updates, so it cannot be simply deleted.
This module (drupal/drupal_cms_starter) is a starter package for setting up a Drupal site. It is likely that it is not essential for the actual operation of the project, so we will delete it.
Since drupal_cms_starter does not seem to be necessary, we will delete it. We will also delete automatic_updates.
Delete drupal_cms_starter and automatic_updates
$ composer remove drupal/drupal_cms_starter drupal/automatic_updates
// After deleting, the following error appears and you can no longer log in to the admin screen.
The website encountered an unexpected error. Try again later.
AssertionError: The file specified by the given app root, relative path and file name (/var/www/html/web/modules/contrib/easy_breadcrumb/easy_breadcrumb.info.yml) do not exist. in assert() (line 73 of core/lib/Drupal/Core/Extension/Extension.php).
Result
- 「The website encountered an unexpected error. Try again later.」
- AssertionError: The file specified by the given app root, relative path and file name (/var/www/html/web/modules/contrib/easy_breadcrumb/easy_breadcrumb.info.yml) do not exist. core/lib/Drupal/Core/Extension/Extension.php:73
At this point, both the admin screen and the page will display an error.
Countermeasures for the errors that have occurred
The message is saying that the easy_breadcrumb module does not exist or has been deleted, but it is still in the settings, so we will install easy_breadcrumb.
Installing easy_breadcrumb
$ composer require drupal/easy_breadcrumb
$ drush en easy_breadcrumb -y
$ drush updb -y
$ drush cr
[warning] Drush command terminated abnormally.
Result
The error [warning] Drush command terminated abnormally. indicates that the drush command terminated abnormally.
DB update error
$ drush updb -y
[error] Package Manager is available for early testing. To install the module set the
value of 'testing_package_manager' to TRUE in your settings.php file.
[error] (Currently using Missing or invalid modules The following modules are marked as installed in the core.extension
configuration, but they are missing:
* login_emailusername
* mailsystem
* project_browser
* redirect
* redirect_404
* sam
* symfony_mailer_lite
Review the suggestions for resolving this incompatibility [1] to repair your
installation, and then re-run update.php.
[1] https://www.drupal.org/docs/updating-drupal/troubleshooting-database-updates
)
[error] (Currently using Missing or invalid themes The following themes are marked as installed in the core.extension
configuration, but they are missing:
* gin
* easy_email_theme
* drupal_cms_olivero
Review the suggestions for resolving this incompatibility [1] to repair your
installation, and then re-run update.php.
[1] https://www.drupal.org/docs/updating-drupal/troubleshooting-database-updates
)
Result
The error log shows that there is a problem with the consistency of Drupal modules and themes.
Main errors
1. Package Manager's test mode is not enabled.
• The ‘testing_package_manager’ setting is not set to TRUE in settings.php.
2. Some modules are registered in core.extension, but they are not actually found.
• login_emailusername
• mailsystem
• project_browser
• redirect
• redirect_404
• sam
• symfony_mailer_lite
3. Some themes are registered in core.extension, but they cannot actually be found.
• gin
• easy_email_theme
• drupal_cms_olivero
- Enable testing_package_manager in settings.php
- Add missing modules
- Add missing themes
Take the above measures.
Add the testing_package_manager settings to settings.php.
Add the testing_package_manager settings to settings.php.
Add the following code to web/sites/default/settings.php.
$ settings['testing_package_manager'] = TRUE;
Open settings.php using vi, enter the above code in input mode [i], exit input mode with [esc], save and exit with [wq].
Add the missing modules with composer requir.
Installing the module
Reinstall the missing module
$ composer require drupal/login_emailusername drupal/mailsystem drupal/project_browser drupal/redirect drupal/redirect_404 drupal/sam drupal/symfony_mailer_lite
./composer.json has been updated
Running composer update drupal/login_emailusername drupal/mailsystem drupal/project_browser drupal/redirect drupal/redirect_404 drupal/sam drupal/symfony_mailer_lite
Loading composer repositories with package information
Updating dependencies
Lock file operations: 10 installs, 0 updates, 0 removals
- Locking drupal/login_emailusername (3.0.1)
- Locking drupal/mailsystem (4.5.0)
- Locking drupal/project_browser (2.0.0-alpha10)
- Locking drupal/redirect (1.11.0)
- Locking drupal/redirect_404 (1.11.0)
- Locking drupal/sam (1.3.2)
- Locking drupal/symfony_mailer_lite (2.0.2)
- Locking html2text/html2text (4.3.2)
- Locking symfony/css-selector (v7.2.0)
- Locking tijsverkoyen/css-to-inline-styles (v2.3.0)
Writing lock file
Installing dependencies from lock file (including require-dev)
Package operations: 10 installs, 0 updates, 0 removals
- Downloading drupal/project_browser (2.0.0-alpha10)
- Installing drupal/login_emailusername (3.0.1): Extracting archive
- Installing drupal/project_browser (2.0.0-alpha10): Extracting archive
- Installing drupal/redirect (1.11.0): Extracting archive
- Installing drupal/redirect_404 (1.11.0)
- Installing drupal/sam (1.3.2): Extracting archive
- Installing symfony/css-selector (v7.2.0): Extracting archive
- Installing tijsverkoyen/css-to-inline-styles (v2.3.0): Extracting archive
- Installing html2text/html2text (4.3.2): Extracting archive
- Installing drupal/mailsystem (4.5.0): Extracting archive
- Installing drupal/symfony_mailer_lite (2.0.2): Extracting archive
Generating optimized autoload files
58 packages you are using are looking for funding.
Use the `composer fund` command to find out more!
No security vulnerability advisories found.
Using version ^3.0 for drupal/login_emailusername
Using version ^4.5 for drupal/mailsystem
Using version ^2.0@alpha for drupal/project_browser
Using version ^1.11 for drupal/redirect
Using version ^1.11 for drupal/redirect_404
Using version ^1.3 for drupal/sam
Using version ^2.0 for drupal/symfony_mailer_lite
$ drush cr
[success] Cache rebuild complete.
Result
The module is installed successfully.
Install the theme using composer require, as with modules.
Installing the theme
$ composer require drupal/gin drupal/easy_email_theme drupal/drupal_cms_olivero
./composer.json has been updated
Running composer update drupal/gin drupal/easy_email_theme drupal/drupal_cms_olivero
Loading composer repositories with package information
Updating dependencies
Your requirements could not be resolved to an installable set of packages.
Problem 1
- Root composer.json requires drupal/gin * -> satisfiable by drupal/gin[1.0.0-alpha1, ..., 1.0.0-alpha14, 2.0.0-alpha1, ..., 2.0.0-alpha13, 3.0.0-alpha1, ..., 3.0.0, 4.0.0, ..., 4.0.6].
- drupal/project_browser is locked to version 2.0.0-alpha10 and an update of this package was not requested.
- drupal/gin[1.0.0-alpha4, ..., 1.0.0-alpha14] require drupal/core <8.8 -> found drupal/core[8.0.0-beta6, ..., 8.7.14] but the package is fixed to 11.1.4 (lock file version) by a partial update and that version does not match. Make sure you list it as an argument for the update command.
- drupal/gin[1.0.0-alpha1, ..., 1.0.0-alpha2] require drupal/core ~8.0 -> found drupal/core[8.0.0-beta6, ..., 8.9.20] but the package is fixed to 11.1.4 (lock file version) by a partial update and that version does not match. Make sure you list it as an argument for the update command.
- drupal/gin 1.0.0-alpha3 requires drupal/core ^8 || ^9 -> found drupal/core[8.0.0-beta6, ..., 8.9.20, 9.0.0-alpha1, ..., 9.5.11] but the package is fixed to 11.1.4 (lock file version) by a partial update and that version does not match. Make sure you list it as an argument for the update command.
- drupal/gin[2.0.0-alpha1, ..., 2.0.0-alpha3] require drupal/core ^8.8 -> found drupal/core[8.8.0-alpha1, ..., 8.9.20] but the package is fixed to 11.1.4 (lock file version) by a partial update and that version does not match. Make sure you list it as an argument for the update command.
- drupal/gin[2.0.0-alpha4, ..., 2.0.0-alpha13, 3.0.0-alpha1, ..., 3.0.0-alpha36] require drupal/core ^8.8 || ^9 -> found drupal/core[8.8.0-alpha1, ..., 8.9.20, 9.0.0-alpha1, ..., 9.5.11] but the package is fixed to 11.1.4 (lock file version) by a partial update and that version does not match. Make sure you list it as an argument for the update command.
- drupal/gin[3.0.0-beta1, ..., 3.0.0-rc1] require drupal/core ^8.9 || ^9 || ^10 -> found drupal/core[8.9.0-beta1, ..., 8.9.20, 9.0.0-alpha1, ..., 9.5.11, 10.0.0-alpha1, ..., 10.4.4] but the package is fixed to 11.1.4 (lock file version) by a partial update and that version does not match. Make sure you list it as an argument for the update command.
- drupal/gin[3.0.0-rc2, ..., 3.0.0-rc10] require drupal/core ^9 || ^10 -> found drupal/core[9.0.0-alpha1, ..., 9.5.11, 10.0.0-alpha1, ..., 10.4.4] but the package is fixed to 11.1.4 (lock file version) by a partial update and that version does not match. Make sure you list it as an argument for the update command.
- drupal/gin 3.0.0-alpha37 requires drupal/core ^8.8 || ^9 || ^10 -> found drupal/core[8.8.0-alpha1, ..., 8.9.20, 9.0.0-alpha1, ..., 9.5.11, 10.0.0-alpha1, ..., 10.4.4] but the package is fixed to 11.1.4 (lock file version) by a partial update and that version does not match. Make sure you list it as an argument for the update command.
- drupal/gin[4.0.1, ..., 4.0.6] require drupal/gin_toolbar ^2.0 -> found drupal/gin_toolbar[2.0.0] but it conflicts with your root composer.json require (1.0.0).
- drupal/project_browser 2.0.0-alpha10 conflicts with drupal/gin 4.0.0.
- drupal/project_browser 2.0.0-alpha10 conflicts with drupal/gin 3.0.0.
Use the option --with-all-dependencies (-W) to allow upgrades, downgrades and removals for packages currently locked to specific versions.
You can also try re-running composer require with an explicit version constraint, e.g. "composer require drupal/gin:*" to figure out if any version is installable, or "composer require drupal/gin:^2.1" if you know which you need.
Installation failed, reverting ./composer.json and ./composer.lock to their original content.
$ drush cr
[success] Cache rebuild complete.
Result
I'm getting an error and can't install it. I'll try updating the DB.
$ drush updb -y
[error] (Currently using Missing or invalid themes The following themes are marked as installed in the core.extension
configuration, but they are missing:
* gin
* easy_email_theme
* drupal_cms_olivero
Review the suggestions for resolving this incompatibility [1] to repair your
installation, and then re-run update.php.
[1] https://www.drupal.org/docs/updating-drupal/troubleshooting-database-updates
)
// Requirements check reports errors. Do you wish to continue?: yes.
[success] No pending updates.
Result
The themes gin, easy_email_theme and drupal_cms_olivero registered in core.extension are not actually found.
Check the themes that have already been installed.
Checking installed themes
$ ls -l /var/www/html/web/themes/contrib/
total 0
drwxr-xr-x 1 shinichirotakeda dialout 698 Aug 8 2024 bootstrap5
Result
gin, easy_email_theme and drupal_cms_olivero are not installed.
Installation failed, reverting ./composer.json and ./composer.lock to their original content.からcomposer require drupal/gin drupal/easy_email_theme drupal/drupal_cms_olivero
You can see that the installation failed and that composer.json and composer.lock were restored to their original state.
Check that there are no errors in composer.json. Use composer validate to check.
Check with composer validate
$ composer validate
./composer.json is valid, but with a few warnings
See https://getcomposer.org/doc/04-schema.md for details on the schema
# General warnings
- require.drupal/autosave_form : exact version constraints (1.10.0) should be avoided if the package follows semantic versioning
- require.drupal/better_exposed_filters : exact version constraints (7.0.5) should be avoided if the package follows semantic versioning
- require.drupal/bpmn_io : exact version constraints (2.0.7) should be avoided if the package follows semantic versioning
- require.drupal/coffee : exact version constraints (2.0.1) should be avoided if the package follows semantic versioning
- require.drupal/core-composer-scaffold : exact version constraints (11.1.4) should be avoided if the package follows semantic versioning
- require.drupal/core-project-message : exact version constraints (11.1.4) should be avoided if the package follows semantic versioning
- require.drupal/core-recommended : exact version constraints (11.1.4) should be avoided if the package follows semantic versioning
- require.drupal/dashboard : exact version constraints (2.0.0) should be avoided if the package follows semantic versioning
- require.drupal/easy_email : exact version constraints (3.0.4) should be avoided if the package follows semantic versioning
- require.drupal/gin_toolbar : exact version constraints (1.0.0) should be avoided if the package follows semantic versioning
- require.drupal/honeypot : exact version constraints (2.2.2) should be avoided if the package follows semantic versioning
- require.drupal/klaro : exact version constraints (3.0.0) should be avoided if the package follows semantic versioning
Result
As a result of composer validate, composer.json is valid, but there are some warnings. However, these warnings are not direct errors, so they are a separate issue from the reason why themes such as gin cannot be installed at present.
Recheck the error details.
- I tried to install drupal/gin, but the Drupal core version (11.1.4) and the dependencies did not match.
- There is a conflict between drupal/project_browser 2.0.0-alpha10 and drupal/gin.
- drupal/gin 4.0.x requires drupal/gin_toolbar ^2.0, but composer.json specifies gin_toolbar 1.0.0, causing a version conflict.
Checking Gin
$ composer show drupal/gin --all | grep versions
versions : 4.0.x-dev, 4.0.6, 4.0.5, 4.0.4, 4.0.3, 4.0.2, 4.0.1, 4.0.0, 3.x-dev, 3.0.0, 3.0.0-rc16, 3.0.0-rc15, 3.0.0-rc14, 3.0.0-rc13, 3.0.0-rc12, 3.0.0-rc11, 3.0.0-rc10, 3.0.0-rc9, 3.0.0-rc8, 3.0.0-rc7, 3.0.0-rc6, 3.0.0-rc5, 3.0.0-rc4, 3.0.0-rc3, 3.0.0-rc2, 3.0.0-rc1, 3.0.0-beta5, 3.0.0-beta4, 3.0.0-beta3, 3.0.0-beta2, 3.0.0-beta1, 3.0.0-alpha37, 3.0.0-alpha36, 3.0.0-alpha35, 3.0.0-alpha34, 3.0.0-alpha33, 3.0.0-alpha32, 3.0.0-alpha31, 3.0.0-alpha30, 3.0.0-alpha29, 3.0.0-alpha28, 3.0.0-alpha27, 3.0.0-alpha26, 3.0.0-alpha25, 3.0.0-alpha24, 3.0.0-alpha23, 3.0.0-alpha22, 3.0.0-alpha21, 3.0.0-alpha20, 3.0.0-alpha19, 3.0.0-alpha18, 3.0.0-alpha17, 3.0.0-alpha16, 3.0.0-alpha15, 3.0.0-alpha14, 3.0.0-alpha13, 3.0.0-alpha12, 3.0.0-alpha11, 3.0.0-alpha10, 3.0.0-alpha9, 3.0.0-alpha8, 3.0.0-alpha7, 3.0.0-alpha6, 3.0.0-alpha5, 3.0.0-alpha4, 3.0.0-alpha3, 3.0.0-alpha2, 3.0.0-alpha1, 2.x-dev, 2.0.0-alpha13, 2.0.0-alpha12, 2.0.0-alpha11, 2.0.0-alpha10, 2.0.0-alpha9, 2.0.0-alpha8, 2.0.0-alpha7, 2.0.0-alpha6, 2.0.0-alpha5, 2.0.0-alpha4, 2.0.0-alpha3, 2.0.0-alpha2, 2.0.0-alpha1, 1.x-dev, 1.0.0-alpha14, 1.0.0-alpha13, 1.0.0-alpha12, 1.0.0-alpha11, 1.0.0-alpha10, 1.0.0-alpha9, 1.0.0-alpha8, 1.0.0-alpha7, 1.0.0-alpha6, 1.0.0-alpha5, 1.0.0-alpha4, 1.0.0-alpha3, 1.0.0-alpha2, 1.0.0-alpha1, dev-3.x, dev-4.0.x, dev-2.x, dev-1.x
To install gin 4.0.x, you need gin_toolbar ^2.0, so upgrade gin_toolbar.
Update the Gin toolbar
$ composer require drupal/gin_toolbar:^2.0 --with-dependencies
./composer.json has been updated
Running composer update drupal/gin_toolbar --with-dependencies
Loading composer repositories with package information
Updating dependencies
Lock file operations: 0 installs, 1 update, 0 removals
- Upgrading drupal/gin_toolbar (1.0.0 => 2.0.0)
Writing lock file
Installing dependencies from lock file (including require-dev)
Package operations: 0 installs, 1 update, 0 removals
- Downloading drupal/gin_toolbar (2.0.0)
- Upgrading drupal/gin_toolbar (1.0.0 => 2.0.0): Extracting archive
Generating optimized autoload files
58 packages you are using are looking for funding.
Use the `composer fund` command to find out more!
No security vulnerability advisories found.
$ drush cr
[success] Cache rebuild complete.
install Gin.
install Gin.
$ composer require drupal/gin
./composer.json has been updated
Running composer update drupal/gin
Loading composer repositories with package information
Updating dependencies
Lock file operations: 1 install, 0 updates, 0 removals
- Locking drupal/gin (4.0.6)
Writing lock file
Installing dependencies from lock file (including require-dev)
Package operations: 1 install, 0 updates, 0 removals
- Downloading drupal/gin (4.0.6)
- Installing drupal/gin (4.0.6): Extracting archive
Generating optimized autoload files
59 packages you are using are looking for funding.
Use the `composer fund` command to find out more!
No security vulnerability advisories found.
Using version ^4.0 for drupal/gin
$ drush cr
[success] Cache rebuild complete.
Gin has been installed. This installation will restore the administration screen and allow you to log in.
Gin has been restored, so log in to the admin screen. There is an error in the admin/reports/site status. When you check the error log, the following error is displayed.
Displayed error
The website encountered an unexpected error. Try again later.
Error: Class "Drupal\package_manager\PathLocator" not found in Drupal\Component\DependencyInjection\Container->createService() (line 259 of core/lib/Drupal/Component/DependencyInjection/Container.php).
Drupal\Component\DependencyInjection\Container->get() (Line: 430)
Drupal\Component\DependencyInjection\Container->resolveServicesAndParameters() (Line: 237)
Drupal\Component\DependencyInjection\Container->createService() (Line: 177)
Drupal\Component\DependencyInjection\Container->get() (Line: 197)
Drupal::service() (Line: 38)
package_manager_requirements()
call_user_func_array() (Line: 355)
Drupal\Core\Extension\ModuleHandler->Drupal\Core\Extension\{closure}() (Line: 307)
Drupal\Core\Extension\ModuleHandler->invokeAllWith() (Line: 354)
Drupal\Core\Extension\ModuleHandler->invokeAll() (Line: 109)
Drupal\system\SystemManager->listRequirements() (Line: 53)
Drupal\system\Controller\SystemInfoController->status()
call_user_func_array() (Line: 123)
Drupal\Core\EventSubscriber\EarlyRenderingControllerWrapperSubscriber->Drupal\Core\EventSubscriber\{closure}() (Line: 593)
Drupal\Core\Render\Renderer->executeInRenderContext() (Line: 121)
Drupal\Core\EventSubscriber\EarlyRenderingControllerWrapperSubscriber->wrapControllerExecutionInRenderContext() (Line: 97)
Drupal\Core\EventSubscriber\EarlyRenderingControllerWrapperSubscriber->Drupal\Core\EventSubscriber\{closure}() (Line: 183)
Symfony\Component\HttpKernel\HttpKernel->handleRaw() (Line: 76)
Symfony\Component\HttpKernel\HttpKernel->handle() (Line: 53)
Drupal\Core\StackMiddleware\Session->handle() (Line: 48)
Drupal\Core\StackMiddleware\KernelPreHandle->handle() (Line: 28)
Drupal\Core\StackMiddleware\ContentLength->handle() (Line: 32)
Drupal\big_pipe\StackMiddleware\ContentLength->handle() (Line: 116)
Drupal\page_cache\StackMiddleware\PageCache->pass() (Line: 90)
Drupal\page_cache\StackMiddleware\PageCache->handle() (Line: 48)
Drupal\Core\StackMiddleware\ReverseProxyMiddleware->handle() (Line: 51)
Drupal\Core\StackMiddleware\NegotiationMiddleware->handle() (Line: 36)
Drupal\Core\StackMiddleware\AjaxPageState->handle() (Line: 51)
Drupal\Core\StackMiddleware\StackedHttpKernel->handle() (Line: 709)
Drupal\Core\DrupalKernel->handle() (Line: 19)
- The website is down with the message ‘The website encountered an unexpected error. Try again later.’.
- An error occurred: The Drupal\package_manager\PathLocator class was not found.
- Error location: createService() method in core/lib/Drupal/Component/DependencyInjection/Container.php.
- The package_manager module is broken > The module is in an incomplete state due to the effects of composer updates or deletions.
- Drupal cache is still old > information on deleted modules and old versions is still there.
- Dependency relationships are corrupted > An error occurred during composer update, and it is possible that the related packages of package_manager have disappeared.
- Reinstall package_manager
- If composer update is interrupted, it will repair all dependencies.
install the package manager.
install the package manager.
$ composer require drupal/package_manager --with-all-dependencies
./composer.json has been updated
Running composer update drupal/package_manager --with-all-dependencies
Loading composer repositories with package information
Updating dependencies
Lock file operations: 2 installs, 0 updates, 0 removals
- Locking drupal/automatic_updates (3.1.7)
- Locking drupal/package_manager (3.1.7)
Writing lock file
Installing dependencies from lock file (including require-dev)
Package operations: 2 installs, 0 updates, 0 removals
- Downloading drupal/automatic_updates (3.1.7)
- Installing drupal/automatic_updates (3.1.7): Extracting archive
- Installing drupal/package_manager (3.1.7)
Generating optimized autoload files
59 packages you are using are looking for funding.
Use the `composer fund` command to find out more!
No security vulnerability advisories found.
Using version ^3.1 for drupal/package_manager
However, you may be able to use a command like:
$ drush cr
In DefinitionErrorExceptionPass.php line 48:
Cannot autowire service "Drupal\package_manager\Validator\LockFileValidator
": argument "$keyValueFactory" of method "__construct()" references interfa
ce "Drupal\Core\KeyValueStore\KeyValueFactoryInterface" but no such service
exists. You should maybe alias this interface to one of these existing ser
vices: "keyvalue", "keyvalue.database", "keyvalue.expirable".
Repairing the dependency relationship
$ composer install
Installing dependencies from lock file (including require-dev)
Verifying lock file contents can be installed on current platform.
Nothing to install, update or remove
Generating optimized autoload files
59 packages you are using are looking for funding.
Use the `composer fund` command to find out more!
* Homepage: https://www.drupal.org/project/drupal
* Support:
* docs: https://drupal.org/docs/user_guide/en/index.html
* chat: https://drupal.org/node/314178
$ composer update --lock
Loading composer repositories with package information
Updating dependencies
Nothing to modify in lock file
Writing lock file
Installing dependencies from lock file (including require-dev)
Nothing to install, update or remove
Generating optimized autoload files
59 packages you are using are looking for funding.
Use the `composer fund` command to find out more!
No security vulnerability advisories found.
$ drush cr
In DefinitionErrorExceptionPass.php line 48:
Cannot autowire service "Drupal\package_manager\Validator\LockFileValidator
": argument "$keyValueFactory" of method "__construct()" references interfa
ce "Drupal\Core\KeyValueStore\KeyValueFactoryInterface" but no such service
exists. You should maybe alias this interface to one of these existing ser
vices: "keyvalue", "keyvalue.database", "keyvalue.expirable".
Result
- The dependency of the service related to Drupal's package_manager is broken.
- An error that the LockFileValidator constructor requires KeyValueFactoryInterface, but this service cannot be found.
- The keyvalue service (keyvalue.database, keyvalue.expirable) exists, but there may not be an appropriate alias (alias).
- I tried deleting and reinstalling the package manager, but the situation did not change. *I will omit the information from the terminal.
- Check the aliases for the keyvalue service > Check that KeyValueFactoryInterface is mapped correctly in services.yml.
- Check the errors with Watchdog.
Check for errors using WatchDog
WatchDog
$ drush watchdog:show --severity=error --count=10
In WatchdogCommands.php line 330:
Unknown severity level: error
Valid severity levels are: Emergency (0), Warning (1), Critical (2), Error (3), Warning (4),
Attention (5), Info (6), Debug (7).
Either use the default language levels, or use a number.
Enter the number that corresponds to the severity. In this case, we are looking at errors, so enter ‘3’.
$ drush watchdog:show --severity=3 --count=10
----- -------------- ------ ---------- --------------------------------------
ID Date Type Severity Message
----- -------------- ------ ---------- --------------------------------------
625 09/Mar 18:31 php Error Error: Class
"Drupal\package_manager\PathLocator"
not found in
Drupal\Component\DependencyInjection
\Container->createService() (line
259 of
/var/www/html/web/core/lib/Drupal/Co
mponent/Depe
622 09/Mar 18:29 php Error Drupal\Core\Extension\Exception\Unkn
ownExtensionException: The theme gin
does not exist. in
Drupal\Core\Extension\ExtensionList-
>getPathname() (line 519 of
/var/www/html/web/core/lib/Drupa
621 09/Mar 18:24 php Error InvalidArgumentException: Class
"Drupal\gin\GinSettings" does not
exist. in
Drupal\Core\DependencyInjection\Clas
sResolver->getInstanceFromDefinition
() (line 32 of
/var/www/html/web/core/li
616 09/Mar 18:16 php Error Error: Class
"Drupal\package_manager\PathLocator"
not found in
Drupal\Component\DependencyInjection
\Container->createService() (line
259 of
/var/www/html/web/core/lib/Drupal/Co
mponent/Depe
613 09/Mar 18:16 php Error Drupal\Core\Extension\Exception\Unkn
ownExtensionException: The theme gin
does not exist. in
Drupal\Core\Extension\ExtensionList-
>getPathname() (line 519 of
/var/www/html/web/core/lib/Drupa
612 09/Mar 18:14 php Error InvalidArgumentException: Class
"Drupal\gin\GinSettings" does not
exist. in
Drupal\Core\DependencyInjection\Clas
sResolver->getInstanceFromDefinition
() (line 32 of
/var/www/html/web/core/li
424 02/Mar 03:26 php Error LogicException: Stored hash key
deleted. in
Drupal\package_manager\Validator\Loc
kFileValidator->validate() (line 122
of
/var/www/html/web/modules/contrib/au
tomatic_updates/package_manager/
421 02/Mar 02:36 php Error LogicException: Stored hash key
deleted. in
Drupal\package_manager\Validator\Loc
kFileValidator->validate() (line 122
of
/var/www/html/web/modules/contrib/au
tomatic_updates/package_manager/
420 02/Mar 02:24 php Error LogicException: Stored hash key
deleted. in
Drupal\package_manager\Validator\Loc
kFileValidator->validate() (line 122
of
/var/www/html/web/modules/contrib/au
tomatic_updates/package_manager/
419 02/Mar 02:19 php Error LogicException: Stored hash key
deleted. in
Drupal\package_manager\Validator\Loc
kFileValidator->validate() (line 122
of
/var/www/html/web/modules/contrib/au
tomatic_updates/package_manager/
[1] https://www.drupal.org/docs/updating-drupal/troubleshooting-database-updates
)
Result
- Error: Class "Drupal\package_manager\PathLocator" not found
- The theme gin does not exist.
- InvalidArgumentException: Class "Drupal\gin\GinSettings" does not exist.
- LogicException: Stored hash key deleted.
- The package_manager module is either broken or not installed correctly.
- gin The theme has been deleted or not installed correctly.
- gin The theme configuration file may be damaged.
- There is a possibility that the data in package_manager is corrupted.
Check the installation status of the theme.
Check the theme
$ ls -l /var/www/html/web/themes/contrib/
total 0
drwxr-xr-x 1 shinichirotakeda dialout 698 Aug 8 2024 bootstrap5
drwxr-xr-x 1 shinichirotakeda dialout 776 Feb 28 19:36 gin
Gin has been installed. An error has occurred, so it will be installed again.
Installing the theme
Installing the theme
Installing easy_email_theme and drupal_cms_olivero
$ composer require drupal/easy_email_theme drupal/drupal_cms_olivero --with-all-dependencies
./composer.json has been updated
Running composer update drupal/easy_email_theme drupal/drupal_cms_olivero --with-all-dependencies
Loading composer repositories with package information
Updating dependencies
Lock file operations: 2 installs, 0 updates, 0 removals
- Locking drupal/drupal_cms_olivero (1.0.1)
- Locking drupal/easy_email_theme (1.0.0)
Writing lock file
Installing dependencies from lock file (including require-dev)
Package operations: 2 installs, 0 updates, 0 removals
- Downloading drupal/drupal_cms_olivero (1.0.1)
- Downloading drupal/easy_email_theme (1.0.0)
- Installing drupal/drupal_cms_olivero (1.0.1): Extracting archive
- Installing drupal/easy_email_theme (1.0.0): Extracting archive
Generating optimized autoload files
59 packages you are using are looking for funding.
Use the `composer fund` command to find out more!
No security vulnerability advisories found.
Using version ^1.0 for drupal/easy_email_theme
Using version ^1.0 for drupal/drupal_cms_olivero
$ drush cr
In DefinitionErrorExceptionPass.php line 48:
Cannot autowire service "Drupal\package_manager\Validator\LockFileValidator
": argument "$keyValueFactory" of method "__construct()" references interfa
ce "Drupal\Core\KeyValueStore\KeyValueFactoryInterface" but no such service
exists. You should maybe alias this interface to one of these existing ser
vices: "keyvalue", "keyvalue.database", "keyvalue.expirable".
Installing Gin
$ composer require drupal/gin --with-all-dependencies
./composer.json has been updated
Running composer update drupal/gin --with-all-dependencies
Loading composer repositories with package information
Updating dependencies
Nothing to modify in lock file
Writing lock file
Installing dependencies from lock file (including require-dev)
Nothing to install, update or remove
Generating optimized autoload files
59 packages you are using are looking for funding.
Use the `composer fund` command to find out more!
No security vulnerability advisories found.
Using version ^4.0 for drupal/gin
$ drush cr
In DefinitionErrorExceptionPass.php line 48:
Cannot autowire service "Drupal\package_manager\Validator\LockFileValidator
": argument "$keyValueFactory" of method "__construct()" references interfa
ce "Drupal\Core\KeyValueStore\KeyValueFactoryInterface" but no such service
exists. You should maybe alias this interface to one of these existing ser
vices: "keyvalue", "keyvalue.database", "keyvalue.expirable".
An error will appear, but the theme will be installed.
Remove the package manager and reinstall it.
Reinstalling the package manager
Removing the package manager
$ composer remove drupal/package_manager
./composer.json has been updated
Running composer update drupal/package_manager
Loading composer repositories with package information
Updating dependencies
Lock file operations: 0 installs, 0 updates, 2 removals
- Removing drupal/automatic_updates (3.1.7)
- Removing drupal/package_manager (3.1.7)
Writing lock file
Installing dependencies from lock file (including require-dev)
Package operations: 0 installs, 0 updates, 2 removals
- Removing drupal/package_manager (3.1.7)
- Removing drupal/automatic_updates (3.1.7)
0/1 [>---------------------------] 0%Deleting /var/www/html/web/modules/contrib/automatic_updates - deleted
Generating optimized autoload files
59 packages you are using are looking for funding.
Use the `composer fund` command to find out more!
Scaffolding files for drupal/core:
- Copy [web-root]/sites/default/default.services.yml from assets/scaffold/files/default.services.yml
No security vulnerability advisories found.
Installing the package manager
$ composer require drupal/package_manager --with-all-dependencies
./composer.json has been updated
Running composer update drupal/package_manager --with-all-dependencies
Loading composer repositories with package information
Updating dependencies
Lock file operations: 2 installs, 0 updates, 0 removals
- Locking drupal/automatic_updates (3.1.7)
- Locking drupal/package_manager (3.1.7)
Writing lock file
Installing dependencies from lock file (including require-dev)
Package operations: 2 installs, 0 updates, 0 removals
- Installing drupal/automatic_updates (3.1.7): Extracting archive
- Installing drupal/package_manager (3.1.7)
Generating optimized autoload files
59 packages you are using are looking for funding.
Use the `composer fund` command to find out more!
No security vulnerability advisories found.
Using version ^3.1 for drupal/package_manager
$ drush cr
In DefinitionErrorExceptionPass.php line 48:
Cannot autowire service "Drupal\package_manager\Validator\LockFileValidator
": argument "$keyValueFactory" of method "__construct()" references interfa
ce "Drupal\Core\KeyValueStore\KeyValueFactoryInterface" but no such service
exists. You should maybe alias this interface to one of these existing ser
vices: "keyvalue", "keyvalue.database", "keyvalue.expirable".
There are still errors.
Check that KeyValueFactoryInterface is mapped correctly in services.yml.
Check the aliases for the keyvalue service > Check that KeyValueFactoryInterface is mapped correctly in services.yml.
Addition of KeyValueFactoryInterface
Add the following to web/sites/default/services.yml
services:
Drupal\Core\KeyValueStore\KeyValueFactoryInterface:
alias: keyvalue
Describe the above in services.yml and clear the cache.
$ drush cr
Cannot autowire service "Drupal\package_manager\Validator\LockFileValidator
": argument "$keyValueFactory" of method "__construct()" references interfa
ce "Drupal\Core\KeyValueStore\KeyValueFactoryInterface" but no such service
exists. You should maybe alias this interface to one of these existing ser
vices: "keyvalue", "keyvalue.database", "keyvalue.expirable".
Dependency relationship is repaired.
Dependency relationship is repaired.
$ composer install
Installing dependencies from lock file (including require-dev)
Verifying lock file contents can be installed on current platform.
Nothing to install, update or remove
Generating optimized autoload files
59 packages you are using are looking for funding.
Use the `composer fund` command to find out more!
* Homepage: https://www.drupal.org/project/drupal
* Support:
* docs: https://drupal.org/docs/user_guide/en/index.html
* chat: https://drupal.org/node/314178
$ composer update --lock
Loading composer repositories with package information
Updating dependencies
Nothing to modify in lock file
Writing lock file
Installing dependencies from lock file (including require-dev)
Nothing to install, update or remove
Generating optimized autoload files
59 packages you are using are looking for funding.
Use the `composer fund` command to find out more!
No security vulnerability advisories found.
$ drush cr
In DefinitionErrorExceptionPass.php line 48:
Cannot autowire service "Drupal\package_manager\Validator\LockFileValidator
": argument "$keyValueFactory" of method "__construct()" references interfa
ce "Drupal\Core\KeyValueStore\KeyValueFactoryInterface" but no such service
exists. You should maybe alias this interface to one of these existing ser
vices: "keyvalue", "keyvalue.database", "keyvalue.expirable".
There are still errors, but we will clear the database and cache.
The database is updated and the cache is cleared.
$ drush updb -y
[success] No pending updates.
$ drush cr
[success] Cache rebuild complete.
The errors that were previously appearing in drush cr will disappear. This completes the error repair.
The database will be updated and the error will be repaired.
- In order to fix a bug in the automatic_updates module, I deleted the package_manager and automatic_updates, but I couldn't delete automatic_updates because it was linked to drupal_cms_starter as a dependency.
- To delete automatic_updates, also delete drupal_cms_starter and delete automatic_updates
- The themes (gin, easy_email_theme, drupal_cms_olivero) and modules that are linked to the dependency (drupal_cms_starter) will be deleted at the same time.
- I also deleted the theme gin from the admin screen, so I couldn't log in due to an error.
- The error displayed was that the easy_breadcrumb did not exist. This was fixed by reinstalling.
- The deletion of themes and modules causes a conflict with core.extension, and it becomes impossible to recover.
- Fixed a bug in PHP (PathLocator class).
- Reinstall the required themes and modules (gin, package_manager, etc.).
- The module is reinstalled successfully, but there is a problem with the theme installation
- Repairing Gin to fix errors in the admin screen
- The management screen is restored by repairing the incompatibility with Gin's toolbar and reinstalling Gin, but an error is displayed and there are still problems with the package manager and the installation of the remaining themes.
- Reinstall the package manager and theme. At this point, dependency errors will still remain.
- Fixed a bug in YML (services.yml)
- Repair dependencies with composer install, and update the database with drush updb.
- The cache was cleared using drush cr, and the error was finally resolved.
This has become a very long article, but we have been able to completely fix the errors that occurred with this bug fix.
I thought the error had been fixed, but when I looked at the admin screen, the error was still there.
Error log displayed on the administration screen
Deprecated function: Creation of dynamic property Drupal\project_browser\ProjectBrowser\Project::$commands is deprecated in Drupal\Component\Serialization\PhpSerialize::decode() (line 21 of core/lib/Drupal/Component/Serialization/PhpSerialize.php).
Drupal\Component\Serialization\PhpSerialize::decode() (Line: 86)
Drupal\Core\KeyValueStore\DatabaseStorage->getMultiple() (Line: 121)
Drupal\project_browser\EnabledSourceHandler->getProjects() (Line: 62)
Drupal\project_browser\Controller\ProjectBrowserEndpointController->getAllProjects()
call_user_func_array() (Line: 123)
Drupal\Core\EventSubscriber\EarlyRenderingControllerWrapperSubscriber->Drupal\Core\EventSubscriber\{closure}() (Line: 593)
Drupal\Core\Render\Renderer->executeInRenderContext() (Line: 121)
Drupal\Core\EventSubscriber\EarlyRenderingControllerWrapperSubscriber->wrapControllerExecutionInRenderContext() (Line: 97)
Drupal\Core\EventSubscriber\EarlyRenderingControllerWrapperSubscriber->Drupal\Core\EventSubscriber\{closure}() (Line: 183)
Symfony\Component\HttpKernel\HttpKernel->handleRaw() (Line: 76)
Symfony\Component\HttpKernel\HttpKernel->handle() (Line: 53)
Drupal\Core\StackMiddleware\Session->handle() (Line: 48)
Drupal\Core\StackMiddleware\KernelPreHandle->handle() (Line: 28)
Drupal\Core\StackMiddleware\ContentLength->handle() (Line: 32)
Drupal\big_pipe\StackMiddleware\ContentLength->handle() (Line: 116)
Drupal\page_cache\StackMiddleware\PageCache->pass() (Line: 90)
Drupal\page_cache\StackMiddleware\PageCache->handle() (Line: 48)
Drupal\Core\StackMiddleware\ReverseProxyMiddleware->handle() (Line: 51)
Drupal\Core\StackMiddleware\NegotiationMiddleware->handle() (Line: 36)
Drupal\Core\StackMiddleware\AjaxPageState->handle() (Line: 51)
Drupal\Core\StackMiddleware\StackedHttpKernel->handle() (Line: 709)
Drupal\Core\DrupalKernel->handle() (Line: 19)
- In the Drupal project_browser ProjectBrowser Project class, a dynamic property $commands is created, but in new versions of Drupal, the creation of dynamic properties is deprecated.
- A problem occurs when deserialising data retrieved from the KeyValueStore via PhpSerialize::decode().
This error may be resolved by deleting the old data that may be remaining in KeyValueStore/DatabaseStorage. The following will delete the old data.
Deleting old data left in KeyValueStore
$ drush updb -y
$ drush cr
$ drush sqlq "DELETE FROM key_value WHERE collection='project_browser'"
$ drush cr
The dependency repair is now complete and all errors have been resolved.
This time, two warnings
Warning displayed
Warning message displayed in the terminal when installing the automatic_updates module
[warning] foreach() argument must be of type array|object, null given Mapping.php:31
[warning] foreach() argument must be of type array|object, null given Mapping.php:230
Warning from package_manager in the admin screen log
The following paths in /var/www/html aren't recognized as part of your Drupal site, so to be safe, Package Manager is excluding them from all stage operations. If these files are not needed for Composer to work properly in your site, no action is needed. Otherwise, you can disable this behavior by setting the package_manager.settings:include_unknown_files_in_project_root config setting to TRUE. .ddev README.md launch-drupal-cms.sh recipes
The following warning will always be displayed in the admin screen.
//
The latest version of one or more of the modules or themes you are using is available. You should update it as soon as possible to keep your site functioning properly. This message is displayed in the admin area all the time. It is displayed even if the core program, modules and themes are all up to date and there is no need to update them.
//
In order to deal with the above, I deleted automatic_updates and package_manager and reinstalled them, but drupal_cms_starter had dependencies, so I deleted drupal_cms_starter, but the dependencies and configuration files that Drupal had by default were damaged, and it took quite a lot of effort to repair them.
Because of this, the article became very long due to the many processes involved in the repair. As I mentioned at the beginning of the article, it is possible that the warnings and errors this time were caused by my own environment, and that the repair process I used may not have been the correct process. If you encounter a similar problem, the measures I took this time may make the situation worse, so if you get a similar error or warning, I recommend that you assess your own environment and situation and consult with someone with specialist knowledge.