Make WordPress Core

Ticket #49452: wp-config.php

File wp-config.php, 3.6 KB (added by Lauriate, 5 years ago)

wp-config.php of site redacted db logins

Line 
1<?php
2define('WP_CACHE', false);
3/**
4 * The base configurations of the WordPress.
5 *
6 * This file has the following configurations: MySQL settings, Table Prefix,
7 * Secret Keys, WordPress Language, and ABSPATH. You can find more information
8 * by visiting {@link http://codex.wordpress.org/Editing_wp-config.php Editing
9 * wp-config.php} Codex page. You can get the MySQL settings from your web host.
10 *
11 * This file is used by the wp-config.php creation script during the
12 * installation. You don't have to use the web site, you can just copy this file
13 * to "wp-config.php" and fill in the values.
14 *
15 * @package WordPress
16 */
17
18// ** MySQL settings - You can get this info from your web host ** //
19/** The name of the database for WordPress */
20define('DB_NAME', '########');
21
22/** MySQL database username */
23define('DB_USER', '#######');
24
25/** MySQL database password */
26define('DB_PASSWORD', '#######');
27
28/** MySQL hostname */
29define('DB_HOST', 'localhost');
30
31/** Database Charset to use in creating database tables. */
32define('DB_CHARSET', 'utf8');
33
34/** The Database Collate type. Don't change this if in doubt. */
35define('DB_COLLATE', '');
36
37/**#@+
38 * Authentication Unique Keys and Salts.
39 *
40 * Change these to different unique phrases!
41 * You can generate these using the {@link https://api.wordpress.org/secret-key/1.1/salt/ WordPress.org secret-key service}
42 * 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.
43 *
44 * @since 2.6.0
45 */
46define('AUTH_KEY',         '*ZcGa+VI3wE[_D=ggng7<8HQ[Ar4f,zWY;Fviu[iJ>`@YyawcikTx+~K2)t^w?oI');
47define('SECURE_AUTH_KEY',  '>S1T&cJ5|oDZJd(VtD;X CQF }:7mFO6agV.,Ao-2xqnh~Y8l{:A;#hbuI$.b{BY');
48define('LOGGED_IN_KEY',    '].#nA,xtVTC1Ex--NwZ-,nM9a~K^E@n0X#N?_q/mhw-rw=/6Wa+_{U-n&x.apx4w');
49define('NONCE_KEY',        '8BYS?:d Wp+qnZSunqn|Cl4e2VKw~&}GjKuOX] 1x+o!mn}j#Nw9js(jN+24$wv-');
50define('AUTH_SALT',        'nd{v-Lw/Kz=uOr;%_gi28#M@$ec_?-(XdEv^=*yr3]kpY|:y)lc+mw]G,n={K]nM');
51define('SECURE_AUTH_SALT', 'J$&ju!k!~deKUp|6iE?%HF8eX4^PSF/m;*0^c^M^VFOxa_SQ^Q/BCI]Tr7as<s/b');
52define('LOGGED_IN_SALT',   'QB|Q3?4>tJ9kppz~qaW!:Yo8xt0 7qZkrs^Ci7ygaJPDu<*i+lotfP .|,n@Q~xu');
53define('NONCE_SALT',       '0al3T^Rl_!?0L|X!W;SXoQjXkReUH]OG&+mCCD!<-CwB,B{:%!u}u*bf5do)T.pP');
54
55/**#@-*/
56
57/**
58 * WordPress Database Table prefix.
59 *
60 * You can have multiple installations in one database if you give each a unique
61 * prefix. Only numbers, letters, and underscores please!
62 */
63$table_prefix  = 'wp_';
64
65/**
66 * WordPress Localized Language, defaults to English.
67 *
68 * Change this to localize WordPress. A corresponding MO file for the chosen
69 * language must be installed to wp-content/languages. For example, install
70 * de_DE.mo to wp-content/languages and set WPLANG to 'de_DE' to enable German
71 * language support.
72 */
73define('WPLANG', '');
74
75/**
76 * For developers: WordPress debugging mode.
77 *
78 * Change this to true to enable the display of notices during development.
79 * It is strongly recommended that plugin and theme developers use WP_DEBUG
80 * in their development environments.
81 */
82define('WP_DEBUG', false);
83
84define('WP_ALLOW_MULTISITE', true);
85define('MULTISITE', true);
86define('SUBDOMAIN_INSTALL', true);
87define('DOMAIN_CURRENT_SITE', '6teamconditions.com');
88define('PATH_CURRENT_SITE', '/');
89define('SITE_ID_CURRENT_SITE', 1);
90define('BLOG_ID_CURRENT_SITE', 1);
91
92/* That's all, stop editing! Happy blogging. */
93
94/** Absolute path to the WordPress directory. */
95if ( !defined('ABSPATH') )
96        define('ABSPATH', dirname(__FILE__) . '/');
97
98/** Sets up WordPress vars and included files. */
99require_once(ABSPATH . 'wp-settings.php');