6 * You don't have to use the web site, you can copy this file to "wp-config.php" |
6 * You don't have to use the web site, you can copy this file to "wp-config.php" |
7 * and fill in the values. |
7 * and fill in the values. |
8 * |
8 * |
9 * This file contains the following configurations: |
9 * This file contains the following configurations: |
10 * |
10 * |
11 * * MySQL settings |
11 * * Database settings |
12 * * Secret keys |
12 * * Secret keys |
13 * * Database table prefix |
13 * * Database table prefix |
14 * * ABSPATH |
14 * * ABSPATH |
15 * |
15 * |
16 * @link https://wordpress.org/support/article/editing-wp-config-php/ |
16 * @link https://wordpress.org/support/article/editing-wp-config-php/ |
17 * |
17 * |
18 * @package WordPress |
18 * @package WordPress |
19 */ |
19 */ |
20 |
20 |
21 // ** MySQL settings - You can get this info from your web host ** // |
21 // ** Database settings - You can get this info from your web host ** // |
22 /** The name of the database for WordPress */ |
22 /** The name of the database for WordPress */ |
23 define( 'DB_NAME', 'database_name_here' ); |
23 define( 'DB_NAME', 'database_name_here' ); |
24 |
24 |
25 /** MySQL database username */ |
25 /** Database username */ |
26 define( 'DB_USER', 'username_here' ); |
26 define( 'DB_USER', 'username_here' ); |
27 |
27 |
28 /** MySQL database password */ |
28 /** Database password */ |
29 define( 'DB_PASSWORD', 'password_here' ); |
29 define( 'DB_PASSWORD', 'password_here' ); |
30 |
30 |
31 /** MySQL hostname */ |
31 /** Database hostname */ |
32 define( 'DB_HOST', 'localhost' ); |
32 define( 'DB_HOST', 'localhost' ); |
33 |
33 |
34 /** Database charset to use in creating database tables. */ |
34 /** Database charset to use in creating database tables. */ |
35 define( 'DB_CHARSET', 'utf8' ); |
35 define( 'DB_CHARSET', 'utf8' ); |
36 |
36 |