-
Notifications
You must be signed in to change notification settings - Fork 22
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
44 changed files
with
572 additions
and
328 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,117 +1,96 @@ | ||
<?php | ||
/** | ||
* Grundeinstellungen für WordPress | ||
* The base configuration for WordPress | ||
* | ||
* Diese Datei wird zur Erstellung der wp-config.php verwendet. | ||
* Du musst aber dafür nicht das Installationsskript verwenden. | ||
* Stattdessen kannst du auch diese Datei als „wp-config.php“ mit | ||
* deinen Zugangsdaten für die Datenbank abspeichern. | ||
* The wp-config.php creation script uses this file during the installation. | ||
* You don't have to use the web site, you can copy this file to "wp-config.php" | ||
* and fill in the values. | ||
* | ||
* Diese Datei beinhaltet diese Einstellungen: | ||
* This file contains the following configurations: | ||
* | ||
* * Datenbank-Zugangsdaten, | ||
* * Tabellenpräfix, | ||
* * Sicherheitsschlüssel | ||
* * und ABSPATH. | ||
* * Database settings | ||
* * Secret keys | ||
* * Database table prefix | ||
* * ABSPATH | ||
* | ||
* @link https://wordpress.org/support/article/editing-wp-config-php/ | ||
* @link https://wordpress.org/documentation/article/editing-wp-config-php/ | ||
* | ||
* @package WordPress | ||
*/ | ||
|
||
// ** Datenbank-Einstellungen - Diese Zugangsdaten bekommst du von deinem Webhoster. ** // | ||
/** | ||
* Ersetze datenbankname_hier_einfuegen | ||
* mit dem Namen der Datenbank, die du verwenden möchtest. | ||
*/ | ||
define( 'DB_NAME', 'datenbankname_hier_einfuegen' ); | ||
// ** Database settings - You can get this info from your web host ** // | ||
/** The name of the database for WordPress */ | ||
define( 'DB_NAME', 'database_name_here' ); | ||
|
||
/** | ||
* Ersetze benutzername_hier_einfuegen | ||
* mit deinem Datenbank-Benutzernamen. | ||
*/ | ||
define( 'DB_USER', 'benutzername_hier_einfuegen' ); | ||
/** Database username */ | ||
define( 'DB_USER', 'username_here' ); | ||
|
||
/** | ||
* Ersetze passwort_hier_einfuegen mit deinem Datenbank-Passwort. | ||
*/ | ||
define( 'DB_PASSWORD', 'passwort_hier_einfuegen' ); | ||
/** Database password */ | ||
define( 'DB_PASSWORD', 'password_here' ); | ||
|
||
/** | ||
* Ersetze localhost mit der Datenbank-Serveradresse. | ||
*/ | ||
/** Database hostname */ | ||
define( 'DB_HOST', 'localhost' ); | ||
|
||
/** | ||
* Der Datenbankzeichensatz, der beim Erstellen der | ||
* Datenbanktabellen verwendet werden soll | ||
*/ | ||
/** Database charset to use in creating database tables. */ | ||
define( 'DB_CHARSET', 'utf8' ); | ||
|
||
/** | ||
* Der Collate-Type sollte nicht geändert werden. | ||
*/ | ||
/** The database collate type. Don't change this if in doubt. */ | ||
define( 'DB_COLLATE', '' ); | ||
|
||
/**#@+ | ||
* Sicherheitsschlüssel | ||
* Authentication unique keys and salts. | ||
* | ||
* Ändere jeden untenstehenden Platzhaltertext in eine beliebige, | ||
* möglichst einmalig genutzte Zeichenkette. | ||
* Auf der Seite {@link https://api.wordpress.org/secret-key/1.1/salt/ WordPress.org secret-key service} | ||
* kannst du dir alle Schlüssel generieren lassen. | ||
* Change these to different unique phrases! You can generate these using | ||
* the {@link https://api.wordpress.org/secret-key/1.1/salt/ WordPress.org secret-key service}. | ||
* | ||
* Du kannst die Schlüssel jederzeit wieder ändern, alle angemeldeten | ||
* Benutzer müssen sich danach erneut anmelden. | ||
* You can change these at any point in time to invalidate all existing cookies. | ||
* This will force all users to have to log in again. | ||
* | ||
* @since 2.6.0 | ||
*/ | ||
define( 'AUTH_KEY', 'Füge hier deine Zeichenkette ein' ); | ||
define( 'SECURE_AUTH_KEY', 'Füge hier deine Zeichenkette ein' ); | ||
define( 'LOGGED_IN_KEY', 'Füge hier deine Zeichenkette ein' ); | ||
define( 'NONCE_KEY', 'Füge hier deine Zeichenkette ein' ); | ||
define( 'AUTH_SALT', 'Füge hier deine Zeichenkette ein' ); | ||
define( 'SECURE_AUTH_SALT', 'Füge hier deine Zeichenkette ein' ); | ||
define( 'LOGGED_IN_SALT', 'Füge hier deine Zeichenkette ein' ); | ||
define( 'NONCE_SALT', 'Füge hier deine Zeichenkette ein' ); | ||
define( 'AUTH_KEY', 'put your unique phrase here' ); | ||
define( 'SECURE_AUTH_KEY', 'put your unique phrase here' ); | ||
define( 'LOGGED_IN_KEY', 'put your unique phrase here' ); | ||
define( 'NONCE_KEY', 'put your unique phrase here' ); | ||
define( 'AUTH_SALT', 'put your unique phrase here' ); | ||
define( 'SECURE_AUTH_SALT', 'put your unique phrase here' ); | ||
define( 'LOGGED_IN_SALT', 'put your unique phrase here' ); | ||
define( 'NONCE_SALT', 'put your unique phrase here' ); | ||
|
||
/**#@-*/ | ||
|
||
/** | ||
* WordPress Datenbanktabellen-Präfix | ||
* WordPress database table prefix. | ||
* | ||
* Wenn du verschiedene Präfixe benutzt, kannst du innerhalb einer Datenbank | ||
* verschiedene WordPress-Installationen betreiben. | ||
* Bitte verwende nur Zahlen, Buchstaben und Unterstriche! | ||
* You can have multiple installations in one database if you give each | ||
* a unique prefix. Only numbers, letters, and underscores please! | ||
*/ | ||
$table_prefix = 'wp_'; | ||
|
||
/** | ||
* Für Entwickler: Der WordPress-Debug-Modus. | ||
* For developers: WordPress debugging mode. | ||
* | ||
* Setze den Wert auf „true“, um bei der Entwicklung Warnungen und Fehler-Meldungen angezeigt zu bekommen. | ||
* Plugin- und Theme-Entwicklern wird nachdrücklich empfohlen, WP_DEBUG | ||
* in ihrer Entwicklungsumgebung zu verwenden. | ||
* Change this to true to enable the display of notices during development. | ||
* It is strongly recommended that plugin and theme developers use WP_DEBUG | ||
* in their development environments. | ||
* | ||
* Besuche den Codex, um mehr Informationen über andere Konstanten zu finden, | ||
* die zum Debuggen genutzt werden können. | ||
* For information on other constants that can be used for debugging, | ||
* visit the documentation. | ||
* | ||
* @link https://wordpress.org/support/article/debugging-in-wordpress/ | ||
* @link https://wordpress.org/documentation/article/debugging-in-wordpress/ | ||
*/ | ||
define( 'WP_DEBUG', false ); | ||
|
||
/* Füge individuelle Werte zwischen dieser Zeile und der „Schluss mit dem Bearbeiten“ Zeile ein. */ | ||
/* Add any custom values between this line and the "stop editing" line. */ | ||
|
||
|
||
|
||
/* Das war’s, Schluss mit dem Bearbeiten! Viel Spaß. */ | ||
/* That's all, stop editing! Happy publishing. */ | ||
|
||
/** Der absolute Pfad zum WordPress-Verzeichnis. */ | ||
/** Absolute path to the WordPress directory. */ | ||
if ( ! defined( 'ABSPATH' ) ) { | ||
define( 'ABSPATH', __DIR__ . '/' ); | ||
} | ||
|
||
/** Definiert WordPress-Variablen und fügt Dateien ein. */ | ||
/** Sets up WordPress vars and included files. */ | ||
require_once ABSPATH . 'wp-settings.php'; | ||
|
Oops, something went wrong.