· 5 years ago · Jan 23, 2020, 04:26 AM
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', 'wordpress' );
46
47
48
49/** MySQL database username */
50
51define( 'DB_USER', 'wordpress' );
52
53
54
55/** MySQL database password */
56
57define( 'DB_PASSWORD', 'Ml28o9zQMZGjnubs' );
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
115define('WP_AUTO_UPDATE_CORE', true);
116
117add_filter( 'auto_update_plugin', '__return_true' );
118
119add_filter( 'auto_update_theme', '__return_true' );
120
121
122
123
124
125define(‘DISALLOW_FILE_EDIT’,true);
126
127define(‘DISALLOW_FILE_MODS’,true);
128
129define(‘FS_METHOD’, ‘ftpext’);
130
131
132
133define('FS_CHMOD_FILE', 0644);
134
135define('FS_CHMOD_DIR', 0755);
136
137
138
139define('AUTH_KEY', ';M#)vO[[Pw4$:0nK13N-U[7.K0cs<NzF|c@u$/V-y0fsoQ%PKOwm+`{L:/$gs&9C');
140
141define('SECURE_AUTH_KEY', '|r_BWz< W+SFnM6*`Xk,81m,$8K-jZD#o[}zgliQ^N^8-Fr>8pPs_+]|bLx_u6eu');
142
143define('LOGGED_IN_KEY', '_>TzVFv1*}}TJwb(Dzw5ts%!>KOBz/?)ca|PBdTc9W>oL7 |%DQGAE[Bps$]mSO6');
144
145define('NONCE_KEY', '7pt:D6yZ`~UD?8RSur+@nfSY!7?^?-!S_(d)03=!i2i><%ow%4cw(3cEZ|=%bn&P');
146
147define('AUTH_SALT', 'Z^&:9Q-FGwz^J]}e8;*H9b3pY_{F5cz+@p<a4J@u^/~mF6,c`$6~R8z/e*ro~FMu');
148
149define('SECURE_AUTH_SALT', '~;pDU1&J8:6BmOJjW&as110eO:M9Pl+WGLulI~N*QBrOzd+tpQDIHAoOVYY~-RRh');
150
151define('LOGGED_IN_SALT', '2^kDJzc^ t13Y&j4Xg :L9O&|;+]Ma865/BaOA+?@S_Npyyp:H~2XKW+P~-C{B+|');
152
153define('NONCE_SALT', '}@so9p+Y!6Gz<9Dm7#-pU_ TY(UM/>8`Sg| J+I|5hV!j@2}!8Ak@*=WXq{4e4*`');
154
155
156
157
158
159/**#@-*/
160
161
162
163/**
164
165 * WordPress Database Table prefix.
166
167 *
168
169 * You can have multiple installations in one database if you give each
170
171 * a unique prefix. Only numbers, letters, and underscores please!
172
173 */
174
175$table_prefix = 'troycyber_';
176
177
178
179/**
180
181 * For developers: WordPress debugging mode.
182
183 *
184
185 * Change this to true to enable the display of notices during development.
186
187 * It is strongly recommended that plugin and theme developers use WP_DEBUG
188
189 * in their development environments.
190
191 *
192
193 * For information on other constants that can be used for debugging,
194
195 * visit the Codex.
196
197 *
198
199 * @link https://codex.wordpress.org/Debugging_in_WordPress
200
201 */
202
203define( 'WP_DEBUG', true );
204
205define( 'WP_DEBUG_LOG', true );
206
207define( 'WP_DEBUG_DISPLAY', false );
208
209
210
211/* That's all, stop editing! Happy publishing. */
212
213
214
215/** Absolute path to the WordPress directory. */
216
217if ( ! defined( 'ABSPATH' ) ) {
218
219 define( 'ABSPATH', dirname( __FILE__ ) . '/' );
220
221}
222
223
224
225/** Sets up WordPress vars and included files. */
226
227require_once( ABSPATH . 'wp-settings.php' );