· 8 years ago · Jan 17, 2018, 04:44 PM
1<?php
2/**
3 * The base configuration for WordPress
4 *
5 * The wp-config.php creation script uses this file during the
6 * installation. You don't have to use the web site, you can
7 * copy this file to "wp-config.php" and fill in the values.
8 *
9 * This file contains the following configurations:
10 *
11 * * MySQL settings
12 * * Secret keys
13 * * Database table prefix
14 * * ABSPATH
15 *
16 * @link https://codex.wordpress.org/Editing_wp-config.php
17 *
18 * @package WordPress
19 */
20
21// ** MySQL settings - You can get this info from your web host ** //
22/** The name of the database for WordPress */
23define('DB_NAME', 'beaude_live');
24
25/** MySQL database username */
26define('DB_USER', 'beaude_live');
27
28/** MySQL database password */
29define('DB_PASSWORD', 'l5eou435n7');
30
31/** MySQL hostname */
32define('DB_HOST', 'localhost');
33
34/** Database Charset to use in creating database tables. */
35define('DB_CHARSET', 'utf8');
36
37/** The Database Collate type. Don't change this if in doubt. */
38define('DB_COLLATE', '');
39
40/**#@+
41 * Authentication Unique Keys and Salts.
42 *
43 * Change these to different unique phrases!
44 * You can generate these using the {@link https://api.wordpress.org/secret-key/1.1/salt/ WordPress.org secret-key service}
45 * 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.
46 *
47 * @since 2.6.0
48 */
49define('AUTH_KEY', '1(E-e@tSj0o{XgfPno4jt9!|Jcz(+qX]vk:VDKsYc/)NP@*}m4rl| <a`MB$pt]8');
50define('SECURE_AUTH_KEY', 'v8$8FHb+t@*,Hj2LMa=y~+D8JdS%+:2/F,dmlsUzJ?h6;=IU&$0EF@`R( ++<|s!');
51define('LOGGED_IN_KEY', ' nblub8w`SOE1Ys|qG2|+g^K|#QY4a|i|AG>QP_qp }3ozyVj`Av!=B*4tN7Z2Qd');
52define('NONCE_KEY', 'ocE<~<No,_5[(Km+cA{7j,)UZ.eIiESAU-|+Q,sCne`)Y>OSY&-+laPFe&esU#.B');
53define('AUTH_SALT', 'ev)g!fRK/{Em2>KRa1-%Rc0hW9[iCu,br/g0mQ+{;S6-F0{n!fWSf8sQ!B.AxhB@');
54define('SECURE_AUTH_SALT', '|b0Fj%Z:>o|Qk(9.9sFVjqrPDHK2$WGJVVuN;]|?~&9VKusyO3:`+0 R0C9FFD#(');
55define('LOGGED_IN_SALT', '>tAo,]#$@>Q9:mRSjo,Vgrb)J=bbI)>}gSqLYc.p!||x0m+D tH9e7/+;[W7z6-Q');
56define('NONCE_SALT', 'UGn$:~X|>V2}5L$`evxn+|ot2Gh49^uFr?w_D4~E4yT@u^SlP6?!vL4%$I>#%i?!');
57
58
59/**#@-*/
60
61/**
62 * WordPress Database Table prefix.
63 *
64 * You can have multiple installations in one database if you give each
65 * a unique prefix. Only numbers, letters, and underscores please!
66 */
67$table_prefix = 'wp_';
68
69/**
70 * For developers: WordPress debugging mode.
71 *
72 * Change this to true to enable the display of notices during development.
73 * It is strongly recommended that plugin and theme developers use WP_DEBUG
74 * in their development environments.
75 *
76 * For information on other constants that can be used for debugging,
77 * visit the Codex.
78 *
79 * @link https://codex.wordpress.org/Debugging_in_WordPress
80 */
81
82/* That's all, stop editing! Happy blogging. */
83
84/** Absolute path to the WordPress directory. */
85if ( !defined('ABSPATH') )
86 define('ABSPATH', dirname(__FILE__) . '/');
87
88/** Sets up WordPress vars and included files. */
89require_once(ABSPATH . 'wp-settings.php');
90//Disable File Edits
91define('DISALLOW_FILE_EDIT', true);