-
-
Notifications
You must be signed in to change notification settings - Fork 1.1k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Drush multisite installation with existing config #3398
Comments
Actually found the issue.
|
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Hey,
we are currently working on a multisite setup and just ran into a very strange bug.
I have setup a fresh Drupal 8.4.x installation with minimal setup, enabled views (for testing) and exported the config.
drush site-install minimal
drush -y en views
drush site-install cex
The config folder is located at
../config
Afterwards I want to create the first multisite using drush. So within my drupal root dir:
drush si --config-dir="../config" --sites-subdir="sub1.localhost" --db-url="mysql://root:root@mariadb/sub1"
The installation process works quite well, but the issue we have is that the config is not getting imported:
I also tried doing it with a absolut path to my config:
drush si --config-dir="/var/www/html/config" --sites-subdir="sub2.localhost" --db-url="mysql://root:root@mariadb/sub2"
But it gave me the same result.
Tested Drush Versions:
Maybe someone got an idea what could go wrong?
The text was updated successfully, but these errors were encountered: