I'm having the same issue while installing D10:
Environment:
Local installation: MacOS Monterey (v. 12.6.3)
PHP 8.1.17
mysql Ver 8.0.30 for macos12 on arm64 (MySQL Community Server - GPL)Multiple attempts - all getting the same result.
I've tried installing Drupal using Chrome as well as FirefoxAny guidance on how to solve this would be appreciated.
An AJAX HTTP request terminated abnormally. Debugging information follows. Path: /core/install.php?rewrite=ok&langcode=en&profile=standard&continue=1&id=1&op=do_nojs&op=do StatusText: error ReadyState: 0
Error Page:
Drupal\\Core\\Config\\UnmetDependenciesException: Configuration objects provided by standard have unmet dependencies: core.entity_form_display.node.article.default (path), user.role.authenticated (shortcut), user.role.content_editor (path, toolbar) in /Library/WebServer/Documents/filc2/web/core/lib/Drupal/Core/Config/UnmetDependenciesException.php on line 100 #0 /Library/WebServer/Documents/filc2/web/core/lib/Drupal/Core/Config/ConfigInstaller.php(526): Drupal\\Core\\Config\\UnmetDependenciesException::create('standard', Array)\ n#1 /Library/WebServer/Documents/filc2/web/core/lib/Drupal/Core/ProxyClass/Config/ConfigInstaller.php(132): Drupal\\Core\\Config\\ConfigInstaller->checkConfigurationToInstall('module', 'standard')\ n#2 /Library/WebServer/Documents/filc2/web/core/lib/Drupal/Core/Extension/ModuleInstaller.php(191): Drupal\\Core\\ProxyClass\\Config\\ConfigInstaller->checkConfigurationToInstall('module', 'standard')\ n#3 /Library/WebServer/Documents/filc2/web/core/lib/Drupal/Core/ProxyClass/Extension/ModuleInstaller.php(83): Drupal\\Core\\Extension\\ModuleInstaller->install(Array, false)\ n#4 /Library/WebServer/Documents/filc2/web/core/includes/install.core.inc(1657): Drupal\\Core\\ProxyClass\\Extension\\ModuleInstaller->install(Array, false)\ n#5 /Library/WebServer/Documents/filc2/web/core/includes/install.core.inc(698): install_install_profile(Array)\ n#6 /Library/WebServer/Documents/filc2/web/core/includes/install.core.inc(569): install_run_task(Array, Array)\ n#7 /Library/WebServer/Documents/filc2/web/core/includes/install.core.inc(119): install_run_tasks(Array, NULL)\ n#8 /Library/WebServer/Documents/filc2/web/core/install.php(48): install_drupal(Object(Composer\\Autoload\\ClassLoader))\ n#9 {main}, referer: http://filc2.local/core/install.php?rewrite=ok&langcode=en&profile=standard&continue=1&id=1&op=start
See #5. This is a duplicate issue. A common cause is not setting max_allowed_packet.
@cilefen thanks for your response
Globally set max_allowed_packet to 256M (268435456) -client and server side; It did not make any difference, still unable to install drupal on my local.
Getting the same error.UPDATE
Regardless of how many tweaks I did (different browsers, different database, started from scratch multiple times, changed on mysql variables, etc), it did not work.
What I ended up doing was installing the site using drush command:
https://www.drush.org/11.x/commands/site_install/So, first install Drupal using composer:
composer create-project drupal/recommended-project project_name
Then created 'files' directories for private and public files and tweaked the settings.php file and made apache the owner, and created a database for the new site.
Up to hear same as before; then installed site with Drush:
cd web ../vendor/bin/drush site:install standard --site-name="site_name" --db-prefix="pref_" --locale=en --site-mail=site@email.com --account-name=account_name --account-mail=site@email.com --account-pass="account_password" --db-url=mysql://db_user:db_pwd@localhost:3306/db_name
I'm all set now.
Faced same issue today while installing drupal through Docker. Able to fix it After changing database name