· 7 years ago · Sep 04, 2018, 07:56 AM
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', 'database_name_here');
24
25/** MySQL database username */
26define('DB_USER', 'username_here');
27
28/** MySQL database password */
29define('DB_PASSWORD', 'password_here');
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 */
49
50define('AUTH_KEY', 'gn=0WRG12p|r76kK:H7(R&3,HZduT^,,1}+)u+[.:`,j-EW3`D:L-qj%sfzf`i+?');
51define('SECURE_AUTH_KEY', 'PY-O{AR>pVS%zV{yujD}UU-f `R<O.Mm-|m]Ai$Z6PO1:,D$Z@4y+C5m-CAd+w9h');
52define('LOGGED_IN_KEY', 'W> 9tub`-|kWkPStz_aI7DxAn+7>uNws~];u7xEkM1 ?f3<p<SVMD?;)@g5Ev8X<');
53define('NONCE_KEY', '`+Is6|:DK[OCi?$=t 9?t|4e>G:+8]kM3V`S;|}/Ej%:nS;`;0O^[iW#49RS_h.f');
54define('AUTH_SALT', 'x8Ssv)gx%w?inQl< -pbWw%a n_||S?FA]5RVHZ~D82|gneXWeC4cx83u_SMjQ[p');
55define('SECURE_AUTH_SALT', ';Q:r_e@:W2_Ggn&00KAu[Dg~f&8jqq<-z-;Fn]fwl>XtO+n-?L mPaP9:*DC +{:');
56define('LOGGED_IN_SALT', 'CXil~b=[+H@mbj5/}?RK}EP1;y:u|T;TjEL5o>iJQ)o2VtN!.I+dAq^9zut&6,Ay');
57define('NONCE_SALT', '(80B+KeIDJpk-sBDE2vJKZcLPd/0blN`iC6NLG(-!d+b[D?{3onG1-+iwq*rM(<J');
58
59
60/**#@-*/
61
62/**
63 * WordPress Database Table prefix.
64 *
65 * You can have multiple installations in one database if you give each
66 * a unique prefix. Only numbers, letters, and underscores please!
67 */
68$table_prefix = 'wp_';
69
70/**
71 * For developers: WordPress debugging mode.
72 *
73 * Change this to true to enable the display of notices during development.
74 * It is strongly recommended that plugin and theme developers use WP_DEBUG
75 * in their development environments.
76 *
77 * For information on other constants that can be used for debugging,
78 * visit the Codex.
79 *
80 * @link https://codex.wordpress.org/Debugging_in_WordPress
81 */
82define('WP_DEBUG', false);
83define('RELOCATE',true);
84define('FS_METHOD','direct');
85
86
87/* That's all, stop editing! Happy blogging. */
88
89/** Absolute path to the WordPress directory. */
90if ( !defined('ABSPATH') )
91 define('ABSPATH', dirname(__FILE__) . '/');
92
93/** Sets up WordPress vars and included files. */
94require_once(ABSPATH . 'wp-settings.php');