Diff: STRATO-apps/wordpress_03/app/wp-config.php

Keine Baseline-Datei – Diff nur gegen leer.
Zur Liste
1 -
1 + <?php
2 + define( 'WP_CACHE', true ); // Added by WP Rocket
3 +
4 + /**
5 + * The base configuration for WordPress
6 + *
7 + * The wp-config.php creation script uses this file during the installation.
8 + * You don't have to use the website, you can copy this file to "wp-config.php"
9 + * and fill in the values.
10 + *
11 + * This file contains the following configurations:
12 + *
13 + * * Database settings
14 + * * Secret keys
15 + * * Database table prefix
16 + * * ABSPATH
17 + *
18 + * @link https://developer.wordpress.org/advanced-administration/wordpress/wp-config/
19 + *
20 + * @package WordPress
21 + */
22 +
23 + // ** Database settings - You can get this info from your web host ** //
24 + /** The name of the database for WordPress */
25 + define( 'DB_NAME', 'dbs14965125' );
26 +
27 + /** Database username */
28 + define( 'DB_USER', 'dbu4118724' );
29 +
30 + /** Database password */
31 + define( 'DB_PASSWORD', 'vu6KDExNKDcWJtksSI2IP2yTTiZRMQ2Sh5J' );
32 +
33 + /** Database hostname */
34 + define( 'DB_HOST', 'database-5019007483.webspace-host.com' );
35 +
36 + /** Database charset to use in creating database tables. */
37 + define( 'DB_CHARSET', 'utf8' );
38 +
39 + /** The database collate type. Don't change this if in doubt. */
40 + define( 'DB_COLLATE', '' );
41 +
42 + /**#@+
43 + * Authentication unique keys and salts.
44 + *
45 + * Change these to different unique phrases! You can generate these using
46 + * the {@link https://api.wordpress.org/secret-key/1.1/salt/ WordPress.org secret-key service}.
47 + *
48 + * You can change these at any point in time to invalidate all existing cookies.
49 + * This will force all users to have to log in again.
50 + *
51 + * @since 2.6.0
52 + */
53 + define('AUTH_KEY', 'knbmUSQ8ZErCnBKjAMTaibxpdwEEPFIivXpE2X4qGu0pQKCvfH7l5BOL9hwnYks5');
54 + define('SECURE_AUTH_KEY', 'tuH7s8ckzjAUY5hwOSrq9Bw5b6Tm54nA1n5XuVPddekViTx8wQr206vfKLv0OE1f');
55 + define('LOGGED_IN_KEY', 'CvPPLR0dVyBI58JeoW8Ynhjkfkz6Yg5v6G2YPDF3Rd4hRGJ0L2CcGfLGCfFtNiPF');
56 + define('NONCE_KEY', 'bbSE8D15Ba3WNRuc4nxWdjIwh0NglxsQ2veS7ptMe8LxkNEe4BV2YHc7YFxX1njM');
57 + define('AUTH_SALT', '4VWwIG1O0rqrgvI0g7dPbbjoOXODQOOql6X0t8DhIjI2E9FnrtgyOAJ3Fg8rwpKa');
58 + define('SECURE_AUTH_SALT', '6bUXQ8QyaWcTyuxx6TTn3JZKgVommCtnVvQeVLlOpNLv0186zDmBOTWkVeLi55Bh');
59 + define('LOGGED_IN_SALT', 'z0kdpXYInOFfnCG5b8NZiYc6vJxEHQgHced5OZ3EwHRXHUL1nUsJUxnYvKzBluyd');
60 + define('NONCE_SALT', 'Jp3GQ91R9tffvDmMwWCazLWd2bVuW5MjLEmooL71ixIMwX5mF0ixzsXmIojfJXy5');
61 +
62 + /**
63 + * Other customizations.
64 + */
65 + define('WP_TEMP_DIR',dirname(__FILE__).'/wp-content/uploads');
66 +
67 +
68 + /**#@-*/
69 +
70 + /**
71 + * WordPress database table prefix.
72 + *
73 + * You can have multiple installations in one database if you give each
74 + * a unique prefix. Only numbers, letters, and underscores please!
75 + *
76 + * At the installation time, database tables are created with the specified prefix.
77 + * Changing this value after WordPress is installed will make your site think
78 + * it has not been installed.
79 + *
80 + * @link https://developer.wordpress.org/advanced-administration/wordpress/wp-config/#table-prefix
81 + */
82 + $table_prefix = 'czuw_';
83 +
84 + /**
85 + * For developers: WordPress debugging mode.
86 + *
87 + * Change this to true to enable the display of notices during development.
88 + * It is strongly recommended that plugin and theme developers use WP_DEBUG
89 + * in their development environments.
90 + *
91 + * For information on other constants that can be used for debugging,
92 + * visit the documentation.
93 + *
94 + * @link https://developer.wordpress.org/advanced-administration/debug/debug-wordpress/
95 + */
96 + define( 'WP_DEBUG', false );
97 +
98 + /* Add any custom values between this line and the "stop editing" line. */
99 + define('WP_MEMORY_LIMIT', '128M');
100 +
101 +
102 + /* That's all, stop editing! Happy publishing. */
103 +
104 + /** Absolute path to the WordPress directory. */
105 + if ( ! defined( 'ABSPATH' ) ) {
106 + define( 'ABSPATH', __DIR__ . '/' );
107 + }
108 +
109 + /** Sets up WordPress vars and included files. */
110 + require_once ABSPATH . 'wp-settings.php';
111 +
112 + define( "WP_AUTO_UPDATE_CORE", true );