· 6 years ago · May 15, 2019, 09:42 PM
1<?php
2
3/**
4
5 * The base configuration for WordPress
6
7 *
8
9 * The wp-config.php creation script uses this file during the
10
11 * installation. You don't have to use the web site, you can
12
13 * copy this file to "wp-config.php" and fill in the values.
14
15 *
16
17 * This file contains the following configurations:
18
19 *
20
21 * * MySQL settings
22
23 * * Secret keys
24
25 * * Database table prefix
26
27 * * ABSPATH
28
29 *
30
31 * @link https://codex.wordpress.org/Editing_wp-config.php
32
33 *
34
35 * @package WordPress
36
37 */
38
39
40
41// ** MySQL settings - You can get this info from your web host ** //
42
43/** The name of the database for WordPress */
44
45define('DB_NAME', 'database_name_here');
46
47
48
49/** MySQL database username */
50
51define('DB_USER', 'username_here');
52
53
54
55/** MySQL database password */
56
57define('DB_PASSWORD', 'password_here');
58
59
60
61/** MySQL hostname */
62
63define('DB_HOST', 'localhost');
64
65
66
67/** Database Charset to use in creating database tables. */
68
69define('DB_CHARSET', 'utf8');
70
71
72
73/** The Database Collate type. Don't change this if in doubt. */
74
75define('DB_COLLATE', '');
76
77
78
79/**#@+
80
81 * Authentication Unique Keys and Salts.
82
83 *
84
85 * Change these to different unique phrases!
86
87 * You can generate these using the {@link https://api.wordpress.org/secret-key/1.1/salt/ WordPress.org secret-key service}
88
89 * 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.
90
91 *
92
93 * @since 2.6.0
94
95 */
96
97define('AUTH_KEY', 'put your unique phrase here');
98
99define('SECURE_AUTH_KEY', 'put your unique phrase here');
100
101define('LOGGED_IN_KEY', 'put your unique phrase here');
102
103define('NONCE_KEY', 'put your unique phrase here');
104
105define('AUTH_SALT', 'put your unique phrase here');
106
107define('SECURE_AUTH_SALT', 'put your unique phrase here');
108
109define('LOGGED_IN_SALT', 'put your unique phrase here');
110
111define('NONCE_SALT', 'put your unique phrase here');
112
113
114
115/**#@-*/
116
117
118
119/**
120
121 * WordPress Database Table prefix.
122
123 *
124
125 * You can have multiple installations in one database if you give each
126
127 * a unique prefix. Only numbers, letters, and underscores please!
128
129 */
130
131$table_prefix = 'wp_';
132
133
134
135/**
136
137 * For developers: WordPress debugging mode.
138
139 *
140
141 * Change this to true to enable the display of notices during development.
142
143 * It is strongly recommended that plugin and theme developers use WP_DEBUG
144
145 * in their development environments.
146
147 *
148
149 * For information on other constants that can be used for debugging,
150
151 * visit the Codex.
152
153 *
154
155 * @link https://codex.wordpress.org/Debugging_in_WordPress
156
157 */
158
159define('WP_DEBUG', false);
160
161
162
163/* That's all, stop editing! Happy blogging. */
164
165
166
167/** Absolute path to the WordPress directory. */
168
169if ( !defined('ABSPATH') )
170
171 define('ABSPATH', dirname(__FILE__) . '/');
172
173
174
175/** Sets up WordPress vars and included files. */
176
177require_once(ABSPATH . 'wp-settings.php');