· 7 years ago · May 24, 2018, 10:30 PM
1<?php
2/**
3 * The base configurations of the WordPress.
4 *
5 * This file has the following configurations: MySQL settings, Table Prefix,
6 * Secret Keys, WordPress Language, and ABSPATH. You can find more information
7 * by visiting {@link http://codex.wordpress.org/Editing_wp-config.php Editing
8 * wp-config.php} Codex page. You can get the MySQL settings from your web host.
9 *
10 * This file is used by the wp-config.php creation script during the
11 * installation. You don't have to use the web site, you can just copy this file
12 * to "wp-config.php" and fill in the values.
13 *
14 * @package WordPress
15 */
16/*
17if (!isset($_SERVER['HTTPS']) || $_SERVER['HTTPS'] !== 'on') {
18 header("Status: 301 Moved Permanently");
19 header(sprintf(
20 'Location: https://%s%s',
21 $_SERVER['HTTP_HOST'],
22 $_SERVER['REQUEST_URI']
23 ));
24 exit();
25 }
26*/
27define('WP_SITEURL', 'http://mcclone.localhost.com');
28define('WP_HOME', 'http://mcclone.localhost.com');
29// ** MySQL settings - You can get this info from your web host ** //
30/** The name of the database for WordPress */
31define('DB_NAME', 'mcburk_dev');
32
33/** MySQL database username */
34define('DB_USER', 'root');
35
36/** MySQL database password */
37define('DB_PASSWORD', '');
38
39/** MySQL hostname */
40define('DB_HOST', 'localhost');
41
42/** Database Charset to use in creating database tables. */
43define('DB_CHARSET', 'utf8');
44
45/** The Database Collate type. Don't change this if in doubt. */
46define('DB_COLLATE', '');
47
48/**#@+
49 * Authentication Unique Keys and Salts.
50 *
51 * Change these to different unique phrases!
52 * You can generate these using the {@link https://api.wordpress.org/secret-key/1.1/salt/ WordPress.org secret-key service}
53 * 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.
54 *
55 * @since 2.6.0
56 */
57define('AUTH_KEY', 'p=K PeJXZ8lsC%A1US_[Y))l4xc/V}i)NbzHtPdX9]/7QOR4T1C_:.^9 N$DqUn]');
58define('SECURE_AUTH_KEY', 'sq`~iFB2X.E(st}{_,M$jL.wX0ULgphO$vpBO20fLKm*.8tT7Ub[#vJTsV ih^M');
59define('LOGGED_IN_KEY', 'N,?@}:g6eZ;%;b,xSjE =PDxx~70c37*}yfow#S9KmsL]f`%/^X*c_kR$JP/G!K&');
60define('NONCE_KEY', '~tGj|51Kt<<:Wmz(C3]_7K9*ISBVD9_UVjzDmJDg[@aW)F&=+$ D:#O<L%|po!73');
61define('AUTH_SALT', '[l3G_ 0Kta`/IGxgD]SmH9YajO@9CZhmoFTrzx``.tY`]X8]&&h9pc$U)<syM&+f');
62define('SECURE_AUTH_SALT', 'd<8^B2_Ic2d.Au]AoRG,u!Lgm_`O_c^;TV- t}SOb*/37pBg/3PpR$sEg]0P*>}');
63define('LOGGED_IN_SALT', 'Go.5=J!0.E]&3$& QrW;6aS@LqopN)]`9,:R+w<,VxUzx5t0,chxCM]#w GRj+8N');
64define('NONCE_SALT', 'jB*HxP5YHe_RiJJ5}(LxqS$TdZ^ZCp&OQNJ<NUBL^q5?eH5(|lu6*yPdiSTq{03 ');
65
66/**#@-*/
67
68/**
69 * WordPress Database Table prefix.
70 *
71 * You can have multiple installations in one database if you give each a unique
72 * prefix. Only numbers, letters, and underscores please!
73 */
74$table_prefix = 'mccloneburkart_';
75
76/**
77 * WordPress Localized Language, defaults to English.
78 *
79 * Change this to localize WordPress. A corresponding MO file for the chosen
80 * language must be installed to wp-content/languages. For example, install
81 * de_DE.mo to wp-content/languages and set WPLANG to 'de_DE' to enable German
82 * language support.
83 */
84define('WPLANG', '');
85
86/**
87 * For developers: WordPress debugging mode.
88 *
89 * Change this to true to enable the display of notices during development.
90 * It is strongly recommended that plugin and theme developers use WP_DEBUG
91 * in their development environments.
92 */
93define('WP_DEBUG', false);
94
95/** Memory Limit */
96define('WP_MEMORY_LIMIT', '1024M');
97define( 'WP_MAX_MEMORY_LIMIT', '1024M' );
98
99/* Multisite */
100define('WP_ALLOW_MULTISITE', true );
101define('SUNRISE', 'on'); // Add this line here:
102define('MULTISITE', true);
103define('SUBDOMAIN_INSTALL', true);
104define('DOMAIN_CURRENT_SITE', 'mccloneburkart.stellarbluewebdesign.com');
105define('PATH_CURRENT_SITE', '/');
106define('SITE_ID_CURRENT_SITE', 1);
107define('BLOG_ID_CURRENT_SITE', 1);
108
109/* That's all, stop editing! Happy blogging. */
110
111/** Absolute path to the WordPress directory. */
112if ( !defined('ABSPATH') )
113 define('ABSPATH', dirname(__FILE__) . '/');
114
115/** Sets up WordPress vars and included files. */
116require_once(ABSPATH . 'wp-settings.php');