· 7 years ago · Jul 05, 2018, 09:52 PM
1http://creditsimple.com/wp-config.php
2
3<?php
4/**
5 * The base configuration for WordPress
6 *
7 * The wp-config.php creation script uses this file during the
8 * installation. You don't have to use the web site, you can
9 * copy this file to "wp-config.php" and fill in the values.
10 *
11 * This file contains the following configurations:
12 *
13 * * MySQL settings
14 * * Secret keys
15 * * Database table prefix
16 * * ABSPATH
17 *
18 * @link https://codex.wordpress.org/Editing_wp-config.php
19 *
20 * @package WordPress
21 */
22
23// Mergebot settings
24
25define( 'MERGEBOT_API_KEY', 'faHwH4wkSG6uV67pVXIE2lLWsfoojMNGJrn34Aszalu20oa3YEGK2IYdrFUv' );
26define( 'MERGEBOT_PLUGIN_MODE', 'production' );
27
28// ** MySQL settings - You can get this info from your web host ** //
29/** The name of the database for WordPress */
30define('DB_NAME', 'tcsp_blog_live');
31
32/** MySQL database username */
33define('DB_USER', 'craig');
34
35/** MySQL database password */
36define('DB_PASSWORD', 'cs#PW001!');
37
38/** MySQL hostname */
39define('DB_HOST', 'localhost');
40
41/** Database Charset to use in creating database tables. */
42define('DB_CHARSET', 'utf8mb4');
43
44/** The Database Collate type. Don't change this if in doubt. */
45define('DB_COLLATE', '');
46
47/**#@+
48 * Authentication Unique Keys and Salts.
49 *
50 * Change these to different unique phrases!
51 * You can generate these using the {@link https://api.wordpress.org/secret-key/1.1/salt/ WordPress.org secret-key service}
52 * 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.
53 *
54 * @since 2.6.0
55 */
56define('AUTH_KEY', '$#!Pd}6Jy@{WEPoQz;5.Y<flHA=z20pi.qjly~O-=uMdflN+3+2Fke&yDhuirBm;');
57define('SECURE_AUTH_KEY', 'ah:>9UTIL!uHg*GJ&:opYmdrBssVZel+vk S,Cx>Bn{LNI KL^U?s0+,rGNOj[L6');
58define('LOGGED_IN_KEY', '&JeKP+E{=9l{?cHdqo,^D=?l&H%2q#$/wPWwCoDBU%=X]K4$vKy)l5}L3!?,(95>');
59define('NONCE_KEY', 'X4POmmY/%YF)k*ABWC.O5T{r,pSwi;rVSjKfwnP4p7%L^/,w3&B@!HzS9K`Hxb@Q');
60define('AUTH_SALT', 'uy.6=s7x) <uVtMq8$aOkEroT b<v;_o2!o{yCy&rQj6t$.mx[A4SxqUhY96<7p}');
61define('SECURE_AUTH_SALT', 'oiP2Xq(bhXsihaf$[?8{JyKxB-f/O46V)L:vs$L+/NvLgLmhoZUpwSniGU|t+=V+');
62define('LOGGED_IN_SALT', 'sO8^ /Y0URG1,8JN8B@-T<LF4$0 vI29E+HpLvak*AdBz_1qhFq+~W}#Ew 4uk8f');
63define('NONCE_SALT', 'gzp$zSHho>~`4,%m?4%e}7~Pz9VlO`Y( (.rR`XB812C>.GTM leh~&c{(gjOQBY');
64
65/**#@-*/
66
67/**
68 * WordPress Database Table prefix.
69 *
70 * You can have multiple installations in one database if you give each
71 * a unique prefix. Only numbers, letters, and underscores please!
72 */
73$table_prefix = 'wp_';
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 *
82 * For information on other constants that can be used for debugging,
83 * visit the Codex.
84 *
85 * @link https://codex.wordpress.org/Debugging_in_WordPress
86 */
87define('WP_DEBUG', false);
88
89/* That's all, stop editing! Happy blogging. */
90
91/** Absolute path to the WordPress directory. */
92if ( !defined('ABSPATH') )
93 define('ABSPATH', dirname(__FILE__) . '/');
94
95/** Sets up WordPress vars and included files. */
96require_once(ABSPATH . 'wp-settings.php');