· 6 years ago · Nov 02, 2019, 06:34 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', 'lapak_kopi_wp_prelive');
46
47
48
49/** MySQL database username */
50
51// define('DB_USER', 'magento');
52
53define('DB_USER', 'root');
54
55
56
57/** MySQL database password */
58
59// define('DB_PASSWORD', 'P4ss4lay!');
60
61define('DB_PASSWORD', 'root');
62
63
64
65/** MySQL hostname */
66
67define('DB_HOST', 'magento2_db_1');
68
69// define('DB_HOST', 'localhost');
70
71
72
73/** Database Charset to use in creating database tables. */
74
75define('DB_CHARSET', 'utf8');
76
77
78
79/** The Database Collate type. Don't change this if in doubt. */
80
81define('DB_COLLATE', '');
82
83
84
85/**#@+
86
87 * Authentication Unique Keys and Salts.
88
89 *
90
91 * Change these to different unique phrases!
92
93 * You can generate these using the {@link https://api.wordpress.org/secret-key/1.1/salt/ WordPress.org secret-key service}
94
95 * 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.
96
97 *
98
99 * @since 2.6.0
100
101 */
102
103define('AUTH_KEY', 'DlaD_1j68Ur0&[R(Fb:_ZzJz~`Ck-=B;-8D%cJR|#vdv}wbO$t ]n5jah4s?YzbG');
104
105define('SECURE_AUTH_KEY', '-s$G^WGW_ECb)%qp&<:u(Mdz%f$=g3@sy+OdtIIy`a@ZHXMWY^j;k4&KpAOVTbsM');
106
107define('LOGGED_IN_KEY', ',Q+N[py,^Tt*/84(:[Nb{qcsxA,`f@Z>J,L6AG<K|`OK`v=m!k@q]r_l}7kj/:g;');
108
109define('NONCE_KEY', ':qJ<&OYHZ4|jDpfG18D,vW`_~m-rW;aOMMZ3[_2}9nj,_/GUGiZH_v(D5M;i ~{W');
110
111define('AUTH_SALT', '1lkc!YjHd])@6bq|b|h<F[o,56[bS^q:bH0`g F(BMUGr!5*3&jo,7M!YRi}{x{T');
112
113define('SECURE_AUTH_SALT', 'Buq5Qc @w?/bgoYbVG!BX1_^L1)f4vi6.s5zwgm+/P:lK6RkQI-e:h#Iub`nKp c');
114
115define('LOGGED_IN_SALT', 'z1MNuv}^TAw$vG_n2:$e|DY~^y|VH>B<RxjOJ~0JxwC-S-]/YwQ@>HnO$mA{-/Ln');
116
117define('NONCE_SALT', '>i} ayA,uXOvuRR2pa?V|_XdVi?cw:S5W6`X 9AooY{6|j21G_^NZ:~S9D=N4-&w');
118
119
120
121/**#@-*/
122
123
124
125/**
126
127 * WordPress Database Table prefix.
128
129 *
130
131 * You can have multiple installations in one database if you give each
132
133 * a unique prefix. Only numbers, letters, and underscores please!
134
135 */
136
137$table_prefix = 'lkn_wp_';
138
139
140
141/**
142
143 * For developers: WordPress debugging mode.
144
145 *
146
147 * Change this to true to enable the display of notices during development.
148
149 * It is strongly recommended that plugin and theme developers use WP_DEBUG
150
151 * in their development environments.
152
153 *
154
155 * For information on other constants that can be used for debugging,
156
157 * visit the Codex.
158
159 *
160
161 * @link https://codex.wordpress.org/Debugging_in_WordPress
162
163 */
164
165define('WP_DEBUG', false);
166
167
168
169/* That's all, stop editing! Happy blogging. */
170
171
172
173/** Absolute path to the WordPress directory. */
174
175if ( !defined('ABSPATH') )
176
177 define('ABSPATH', dirname(__FILE__) . '/');
178
179
180
181/** Sets up WordPress vars and included files. */
182
183require_once(ABSPATH . 'wp-settings.php');