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