Skip to main content

Known Issues

Enable Long File Paths

By default, file paths in Windows are limited; this can be changed as follows:

Press the Windows key and type "gpedit" in the input field.

Follow these menu items:

  • Edit Group Policy [Gruppenrichtlinie bearbeiten]
  • Local Computer Policy [Richtlinien für Lokaler Computer]
  • Computer Configuration [Computerkonfiguration]
  • Administrative Templates [Administrative Vorlagen]
  • System [System]
  • Filesystem [Dateisystem]

Then:

  • Double-click on "Enable Win32 long paths" on the right side
  • Select the radio button "Enabled"
  • "Apply" and "OK"

Finally, restart the laptop.

Source: https://www.microfocus.com/documentation/filr/filr-4/filr-desktop/t47bx2ogpfz7.html

De- / Activate WSL

If the laptop's resources are needed for Windows, WSL can also be specifically de- / activated.

To do this, go to the Windows Start menu, type "windows features", and open it. At the bottom of the list, the feature "Windows Subsystem for Linux" can be de- / activated.

A restart is then required.

Database Migrations missing after composer update

If Shopware version is higher than 6.5.8.1:

make php-shell

bin/console database:migrate –all

Shopware-install aborts with error: "Schemas parser error : complex type 'input-field': The content model is not determinist"

If Shopware version is lower than 6.5.8.1:

INSTEAD OF make shopware-install:

make up
make php-shell
composer install
(test -f install.lock || bin/console system:install --shop-locale=de-DE --create-database --basic-setup) && bin/console plugin:refresh && bin/console plugin:install -ac Setup && bin/console plugin:install -ac Dev && bin/console plugin:refresh && bin/console plugin:list && bin/console bundle:dump && bin/console feature:dump && bin/console theme:compile && bin/console theme:dump && touch install.lock

Table project.x not found

In the Makefile on line 106, append "--no-scripts" to "composer install":

$(COMPOSE_CMD) run --rm -eXDEBUG_MODE=off backend /bin/sh -c "composer install --no-scripts \