· 7 years ago · Apr 05, 2018, 07:38 PM
1<?php
2define( 'WP_CACHE', false );
3define('CONCATENATE_SCRIPTS', false);
4define('WP_AUTO_UPDATE_CORE', false);// Diese Einstellung wurde in WordPress Toolkit festgelegt, um die automatische Aktualisierung von WordPress zu verhindern. Ändern Sie die Einstellung nicht, um Konflikte mit der Funktion für automatische Aktualisierungen in WordPress Toolkit zu vermeiden.
5/**
6 * The base configuration for WordPress
7 *
8 * The wp-config.php creation script uses this file during the
9 * installation. You don't have to use the web site, you can
10 * copy this file to "wp-config.php" and fill in the values.
11 *
12 * This file contains the following configurations:
13 *
14 * * MySQL settings
15 * * Secret keys
16 * * Database table prefix
17 * * ABSPATH
18 *
19 * @link https://codex.wordpress.org/Editing_wp-config.php
20 *
21 * @package WordPress
22 */
23// ** MySQL settings ** //
24/** The name of the database for WordPress */
25define( 'DB_NAME', 'wordpress_rq' );
26/** MySQL database username */
27define( 'DB_USER', 'wordpress_9n' );
28/** MySQL database password */
29define('DB_PASSWORD', '0_QyjGmD25');
30/** MySQL hostname */
31define( 'DB_HOST', 'localhost:3306' );
32/** Database Charset to use in creating database tables. */
33define( 'DB_CHARSET', 'utf8' );
34/** The Database Collate type. Don't change this if in doubt. */
35define( 'DB_COLLATE', '' );
36/**
37 * Authentication Unique Keys and Salts.
38 *
39 * Change these to different unique phrases!
40 * You can generate these using the {@link https://api.wordpress.org/secret-key/1.1/salt/ WordPress.org secret-key service}
41 * 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.
42 *
43 * @since 2.6.0
44 */
45define('AUTH_KEY', 'C04YD-4z#67sQ/zPov(JAcw5(lWt1*C4[lENDV_0(3&l6XL)1I3@!%P2qNd8[(4C');
46define('SECURE_AUTH_KEY', '5|Z5%VZb7f@s&[sJy!!5-Q*bb%X1~~A73]*l8!|6y5(n_uR3]05%Id*NXWwpoKby');
47define('LOGGED_IN_KEY', 'P)2hC1348k6[*6K&Tl84kDcF4~3O##DOMmD(])f2xYu&[B*j8&|5B%j3O7077Z/+');
48define('NONCE_KEY', 'q4eF#7EsY2tdY95|3#SmVZ#g4A1ZMLw04J8nla|7H!:#(nZ8dU4mGX;7Tj!a196;');
49define('AUTH_SALT', 'k2J)5w@PlGstAQzV[)50E2M|6a-#ua[@]@6~J&NP9OjTx(5y]5775R~pvA9!3G1+');
50define('SECURE_AUTH_SALT', 'u~JjuEc6Ab%S#*(74Xx3+K~b(76geU#wD!76w*K39+#b);O&KC|EG|8ETtrS6~[W');
51define('LOGGED_IN_SALT', 'I&+U5z2/X5tL2D&Qt_[H[sh!!5ekoT:_83WE7!/Qz0T6!47lF1OYoh23ygb0ei5t');
52define('NONCE_SALT', '1kv7Y5tJRL!!xp(FMN+@8~M6)kT@/S]7E*ROsF~nm7&t-4;Bn0+hQn]682~N_+Rp');
53/**
54 * WordPress Database Table prefix.
55 *
56 * You can have multiple installations in one database if you give each
57 * a unique prefix. Only numbers, letters, and underscores please!
58 */
59$table_prefix = 'b1Ygh8_';
60define('WP_ALLOW_MULTISITE', true);
61/* That's all, stop editing! Happy blogging. */
62/** Absolute path to the WordPress directory. */
63if ( ! defined( 'ABSPATH' ) )
64 define( 'ABSPATH', dirname( __FILE__ ) . '/' );
65/** Sets up WordPress vars and included files. */
66require_once ABSPATH . 'wp-settings.php';