Changeset 52367 for trunk/wp-config-sample.php
- Timestamp:
- 12/14/2021 08:42:16 AM (3 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-config-sample.php
r50946 r52367 9 9 * This file contains the following configurations: 10 10 * 11 * * MySQLsettings11 * * Database settings 12 12 * * Secret keys 13 13 * * Database table prefix … … 19 19 */ 20 20 21 // ** MySQLsettings - You can get this info from your web host ** //21 // ** Database settings - You can get this info from your web host ** // 22 22 /** The name of the database for WordPress */ 23 23 define( 'DB_NAME', 'database_name_here' ); 24 24 25 /** MySQL database username */25 /** Database username */ 26 26 define( 'DB_USER', 'username_here' ); 27 27 28 /** MySQL database password */28 /** Database password */ 29 29 define( 'DB_PASSWORD', 'password_here' ); 30 30 31 /** MySQLhostname */31 /** Database hostname */ 32 32 define( 'DB_HOST', 'localhost' ); 33 33
Note: See TracChangeset
for help on using the changeset viewer.