Shopware Plattform / 6 / Playground lokal ohne Docker

@Shopwareianer schrieb:

Ich nutze PHP 7.2.15. Hängt es hiermit evtl. zusammen?

Nutze ich auch, hab damit keine Probleme. Glaube ich also nicht.

Mein Setup ist php-7.2.15fpm, Apache, mariaDB 10.3.13

Ich hab mir ein einfaches script gemacht zum aufsetzen:

#!/bin/bash
rm -R /var/www/html/development
echo 'Alte Installation geloescht'
git clone https://github.com/shopware/development.git
echo 'neue Installation heruntergeladen'
cp /var/www/html/.psh.yaml.override development/
echo 'Konfiguration kopiert'
chmod 0777 -R /var/www/html/development
chown -R www-data:www-data /var/www/html/development
echo 'Verzeichnisrechte angepasst'
cd /var/www/html/development
composer install
echo 'Abhaengigkeiten aufgeloest'
./psh.phar install
echo 'Installation abgeschlossen'
./psh.phar storefront:install
./psh.phar storefront:prod
echo 'Storefront gebaut'

Habe selbst zwar ein Docker-Setup, hab das aber so auch schon auf einer einfachen Ubuntu-Maschine mit LAMP-Stack gemacht.

Ich benutze eine vorgefertigte yml.override um das vorzubereiten:

const:
  APP_ENV: "dev"
  APP_URL: "http://development"
  DB_HOST: "database"
  DB_PORT: "3306"
  DB_NAME: "next"
  DB_USER: "root"
  DB_PASSWORD: "root"