· 8 years ago · Jan 29, 2018, 02:42 PM
1
2
3
4<?php
5/**
6 * The base configuration for WordPress
7 *
8 * The wp-config.php creation script uses this file during the
9 * installation. You don't have to use the web site, you can
10 * copy this file to "wp-config.php" and fill in the values.
11 *
12 * This file contains the following configurations:
13 *
14 * * MySQL settings
15 * * Secret keys
16 * * Database table prefix
17 * * ABSPATH
18 *
19 * @link https://codex.wordpress.org/Editing_wp-config.php
20 *
21 * @package WordPress
22 */
23
24// ** MySQL settings - You can get this info from your web host ** //
25/** The name of the database for WordPress */
26define( 'DB_NAME', 'wordpress' );
27
28/** MySQL database username */
29define( 'DB_USER', 'wordpress' );
30
31/** MySQL database password */
32define( 'DB_PASSWORD', 'Wordpress+55!' );
33
34/** MySQL hostname */
35define( 'DB_HOST', 'localhost' );
36
37/** Database Charset to use in creating database tables. */
38define( 'DB_CHARSET', 'utf8' );
39
40/** The Database Collate type. Don't change this if in doubt. */
41define( 'DB_COLLATE', '' );
42
43/**#@+
44 * Authentication Unique Keys and Salts.
45 *
46 * Change these to different unique phrases!
47 * You can generate these using the {@link https://api.wordpress.org/secret-key/1.1/salt/ WordPress.org secret-key service}
48 * 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.
49 *
50 * @since 2.6.0
51 */
52define('AUTH_KEY', '=7_J5J8G8h#aOe34-J.;BN#ER[_+miZiUju(i!3q)e8/oK+rE$v73Ph4<&e6738c');
53define('SECURE_AUTH_KEY', 'q&9Pt3r:Y6EfoaNRKU#=hB]GC4m&+= k7Q#K uc7.zlq]8+B.NngJ8@9N3R)y?--');
54define('LOGGED_IN_KEY', '4Ucn)]<;`v#Rek9EMboPX|=6eBgAT-R)JRq#Ruu7qQU(`@~`BpDNh:-ChrpKXch)');
55define('NONCE_KEY', '*/bO9gbGS77-tKS^(m}.uU<(Veq]$[!*4%x0xM/EdmA(5-pZA`~+yl<VEp:frt&/');
56define('AUTH_SALT', 'Z>#KSkwLnf@O#UPW_AxcsElT--fYkelmkO)Bt.zGO/sAfu617z9:uOxPOG&`]vTf');
57define('SECURE_AUTH_SALT', 'oJ#>qTW6ok!z|u_:LRfJ}7b5.5{LL2&r85u#-&v8zN+&a&e56%;Y;Q?H|T<&Pr=.');
58define('LOGGED_IN_SALT', 'eiQ5Ky@|W:p p^Q9C+1+)]<BD!/P^J|el|qGVKe|n~t+a(^vuzFT!>e1pul&}`Xy');
59define('NONCE_SALT', '(NG1<($2rz+a[,ABCMe=i1=tWU#$q<ll_HitOIKY!*RsNJ~<>moGF1^CqH?Z Z:6');
60
61/**#@-*/
62
63/**
64 * WordPress Database Table prefix.
65 *
66 * You can have multiple installations in one database if you give each
67 * a unique prefix. Only numbers, letters, and underscores please!
68 */
69$table_prefix = 'wp_';
70
71/**
72 * For developers: WordPress debugging mode.
73 *
74 * Change this to true to enable the display of notices during development.
75 * It is strongly recommended that plugin and theme developers use WP_DEBUG
76 * in their development environments.
77 *
78 * For information on other constants that can be used for debugging,
79 * visit the Codex.
80 *
81 * @link https://codex.wordpress.org/Debugging_in_WordPress
82 */
83define( 'WP_DEBUG', false );
84
85/* That's all, stop editing! Happy blogging. */
86
87/** Absolute path to the WordPress directory. */
88if ( ! defined( 'ABSPATH' ) ) {
89 define( 'ABSPATH', dirname( __FILE__ ) . '/' );
90}
91
92/** Sets up WordPress vars and included files. */
93require_once( ABSPATH . 'wp-settings.php' );