Speicherort der SW6-Konfigurations-PHO-Datei

Google Translate

Wo ist die Datei SW6 config.php gespeichert, die die Datenbankinformationen enthält.

Die SW6-Dokumentation sagt es im Root-Verzeichnis, es ist nicht dort. Ich habe eine vollständige Dateisuche durchgeführt und 4 Ergebnisse erhalten, von denen keine die Datenbankinformationen der Site, den Benutzernamen, das Passwort usw. enthalten.

hier sind die gefundenen Dateien

tcpdf_autoconfig.php
tcpdf_config.php
test_config.php
config.php

Das ist eine .env-Datei.

Why does the Shopware official documentation says its a config.php located in the Root directory of the Showpare 6 installation?

I completed a full server file search and there is no file labeled .env-Datei

Warum sagt die offizielle Shopware-Dokumentation, dass es sich um eine config.php im Root-Verzeichnis der Showpare 6-Installation handelt?

Ich habe eine vollständige Serverdateisuche durchgeführt und es gibt keine Datei mit dem Label .env-Datei

There is a file in public/ folder labeled .env and fyes it has the database info.

I am confused as to why the official Shopware 6 documentation stated is in the config.php file in the root folder


Es gibt eine Datei im öffentlichen Ordner / Ordner mit der Bezeichnung .env und sie enthält die Datenbankinformationen.

Ich bin verwirrt, warum sich die angegebene offizielle Shopware 6-Dokumentation in der Datei config.php im Stammordner befindet

Shopware 5 = config.php
Shopware 6 = .env

In Shopware 6 werden die Datenbank Zugangsdaten in der .env Datei in folgender Zeile festgelegt:


In Shopware 6, the database credentials are set in the .env file in the following line:

DATABASE_URL=mysql://[DB_USERNAME]:[DB_PASSWORD]@[DB_SERVER]:[DB_PORT]/[DB_DATABASE_NAME]

Beispiel / Example:

DATABASE_URL=mysql://root:root@localhost:3306/shopware6

Thank you for the help