Make WordPress Core


Ignore:
Timestamp:
12/14/2021 08:42:16 AM (3 years ago)
Author:
audrasjb
Message:

Docs: Use generic references to "Database" in wp-config-sample.php.

This replaces the references to "MySQL" info in the WordPress configuration sample file. Using the generic term "Database" now refers to either MySQL or MariaDB.

Props Ov3rfly, audrasjb, hellofromTonya.
Fixes #54610.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/wp-config-sample.php

    r50946 r52367  
    99 * This file contains the following configurations:
    1010 *
    11  * * MySQL settings
     11 * * Database settings
    1212 * * Secret keys
    1313 * * Database table prefix
     
    1919 */
    2020
    21 // ** MySQL settings - You can get this info from your web host ** //
     21// ** Database settings - You can get this info from your web host ** //
    2222/** The name of the database for WordPress */
    2323define( 'DB_NAME', 'database_name_here' );
    2424
    25 /** MySQL database username */
     25/** Database username */
    2626define( 'DB_USER', 'username_here' );
    2727
    28 /** MySQL database password */
     28/** Database password */
    2929define( 'DB_PASSWORD', 'password_here' );
    3030
    31 /** MySQL hostname */
     31/** Database hostname */
    3232define( 'DB_HOST', 'localhost' );
    3333
Note: See TracChangeset for help on using the changeset viewer.