Oxid 6.0 auf 1und1 Server installieren

in der Datei vendor/oxid-esales/oxideshop-ce/source/Setup/Utilities.php
in executeExternalDatabaseMigrationCommand()
müssen 2 Zeilen eingefügt werden:

public function executeExternalDatabaseMigrationCommand(ConsoleOutput $output = null, Facts $facts = null)
{
	// insert the following two lines
	$output = new ConsoleOutput(); 
	$output->setVerbosity(\Symfony\Component\Console\Output\ConsoleOutputInterface::VERBOSITY_QUIET); 
   
	$migrations = $this->createMigrations($facts);
	$migrations->setOutput($output);

	$command = Migrations::MIGRATE_COMMAND;

	$migrations->execute($command);
}

weitere Informationen:
https://bugs.oxid-esales.com/view.php?id=6747