Änderung des Passwortes MySQLdb

Hallo, wenn das Passwort der MySQL db geändert wird, wo muss man das im Shop SW 4 eintragen? Viele Grüße Rainer

So macht Shopware das: // Load custom config if (file\_exists($this-\>DocPath() . 'config\_' . $this-\>Environment() . '.php')) { $customConfig = $this-\>loadConfig($this-\>DocPath() . 'config\_' . $this-\>Environment() . '.php'); } elseif (file\_exists($this-\>DocPath() . 'config.php')) { $customConfig = $this-\>loadConfig($this-\>DocPath() . 'config.php'); } elseif (file\_exists(\_\_DIR\_\_ . '/Custom.php')) { $customConfig = $this-\>loadConfig(\_\_DIR\_\_ . '/Custom.php'); } else { $customConfig = array(); } Also kann man die Daten in /config_production.php (oder eine andere Instanz), /config.php, /engine/Shopware/Configs/Custom.php eintragen. Die werden auch in der Reihenfolge untersucht.

Hallo, wenn du den Installer benutzt hast ist die Datei /config.php. Viele Grüße, Benjamin Cremer :shopware:

Vielen Dank an Euch, hatte tatsächlich die config.php übersehen :oops: Gurß Rainer