After upgrading to 2.0.5 I couldn't create new sites in my custom Drupal-Platforms, the process got stuck here:

Drush bootstrap phase : _drush_bootstrap_drupal_configuration()
Drush command terminated abnormally due to an unrecoverable error.
Undefined index: login_link install.provision.inc:60
Drush was not able to start (bootstrap) the Drupal database. Hint: This err... (Expand)

I figured out that the problem seems to relate to the changes from #1857250: Domain Access support is broken in the backend/command line, because sites/all/modules/domain/settings.inc gets loaded on provision-install now.

When i remove sites/all/domain from my platform the creation of new sites does work again. (Same effect when i comment it out $da_inc = 'sites/all/modules/domain/settings.inc'; in global.inc)

Thanks (again) for the great work,
Nebel54

Support from Acquia helps fund testing for Drupal Acquia logo

Comments

omega8cc’s picture

Status: Active » Postponed (maintainer needs more info)

Do you use satellite or master instance? Also, please follow bug submission guidelines.

Nebel54’s picture

FileSize
9.28 KB
1.03 KB
1.39 KB

I am using an octopus instance and have added my logs/configs now.

I have fixed the issue for me through adding $custom_da = TRUE; in /data/disk/o1/config/includes/global.inc to:

if (function_exists('drush_get_command')) {
  $command = drush_get_command();
  $command = explode(" ", $command['command']);
  if (preg_match("/^provision-install/", $command[0])) {
    $use_redis = FALSE;
    $use_cache = FALSE;
    $custom_da = TRUE;
  }
}

to prevent the domain/settings.php being loadied on provision-install.

omega8cc’s picture

Project: Barracuda » Octopus
Status: Postponed (maintainer needs more info) » Needs work

Thanks. So it should go to the Octopus queue. Clever workaround :) I will commit a proper fix, so it will not break $custom_da purpose.

omega8cc’s picture

Status: Needs work » Fixed

Fix committed: http://drupalcode.org/project/octopus.git/commit/a1e47b2

Thanks for the report and the workaround idea!

Status: Fixed » Closed (fixed)

Automatically closed -- issue fixed for 2 weeks with no activity.

Anonymous’s picture

Issue summary: View changes

removed a typo