Oxid 6.0 auf 1und1 Server installieren

Wow, hätt ich nicht gedacht, dass das überhaupt möglich ist. @ploxid was denkst Du - wäre es eine Option, dazu ein Tutorial zu schreiben, das wir ggf. auf der OXIDforge veröffentlichen können?

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

Hallo, wo finde ich den Ordner Vendor?

in dem Ordner, wo oxid per composer installiert wurde