wp/wp-config-sample.php
changeset 18 be944660c56a
parent 16 a86126ab1dd4
child 19 3d72ae0968f4
equal deleted inserted replaced
17:34716fd837a4 18:be944660c56a
     1 <?php
     1 <?php
     2 /**
     2 /**
     3  * The base configuration for WordPress
     3  * The base configuration for WordPress
     4  *
     4  *
     5  * The wp-config.php creation script uses this file during the
     5  * The wp-config.php creation script uses this file during the installation.
     6  * installation. You don't have to use the web site, you can
     6  * You don't have to use the web site, you can copy this file to "wp-config.php"
     7  * copy this file to "wp-config.php" 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  * * MySQL settings
    12  * * Secret keys
    12  * * Secret keys
    29 define( 'DB_PASSWORD', 'password_here' );
    29 define( 'DB_PASSWORD', 'password_here' );
    30 
    30 
    31 /** MySQL hostname */
    31 /** MySQL 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 
    37 /** The Database Collate type. Don't change this if in doubt. */
    37 /** The database collate type. Don't change this if in doubt. */
    38 define( 'DB_COLLATE', '' );
    38 define( 'DB_COLLATE', '' );
    39 
    39 
    40 /**#@+
    40 /**#@+
    41  * Authentication Unique Keys and Salts.
    41  * Authentication unique keys and salts.
    42  *
    42  *
    43  * Change these to different unique phrases!
    43  * Change these to different unique phrases! You can generate these using
    44  * You can generate these using the {@link https://api.wordpress.org/secret-key/1.1/salt/ WordPress.org secret-key service}
    44  * the {@link https://api.wordpress.org/secret-key/1.1/salt/ WordPress.org secret-key service}.
    45  * 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.
    45  *
       
    46  * You can change these at any point in time to invalidate all existing cookies.
       
    47  * This will force all users to have to log in again.
    46  *
    48  *
    47  * @since 2.6.0
    49  * @since 2.6.0
    48  */
    50  */
    49 define( 'AUTH_KEY',         'put your unique phrase here' );
    51 define( 'AUTH_KEY',         'put your unique phrase here' );
    50 define( 'SECURE_AUTH_KEY',  'put your unique phrase here' );
    52 define( 'SECURE_AUTH_KEY',  'put your unique phrase here' );
    56 define( 'NONCE_SALT',       'put your unique phrase here' );
    58 define( 'NONCE_SALT',       'put your unique phrase here' );
    57 
    59 
    58 /**#@-*/
    60 /**#@-*/
    59 
    61 
    60 /**
    62 /**
    61  * WordPress Database Table prefix.
    63  * WordPress database table prefix.
    62  *
    64  *
    63  * You can have multiple installations in one database if you give each
    65  * You can have multiple installations in one database if you give each
    64  * a unique prefix. Only numbers, letters, and underscores please!
    66  * a unique prefix. Only numbers, letters, and underscores please!
    65  */
    67  */
    66 $table_prefix = 'wp_';
    68 $table_prefix = 'wp_';
    77  *
    79  *
    78  * @link https://wordpress.org/support/article/debugging-in-wordpress/
    80  * @link https://wordpress.org/support/article/debugging-in-wordpress/
    79  */
    81  */
    80 define( 'WP_DEBUG', false );
    82 define( 'WP_DEBUG', false );
    81 
    83 
       
    84 /* Add any custom values between this line and the "stop editing" line. */
       
    85 
       
    86 
       
    87 
    82 /* That's all, stop editing! Happy publishing. */
    88 /* That's all, stop editing! Happy publishing. */
    83 
    89 
    84 /** Absolute path to the WordPress directory. */
    90 /** Absolute path to the WordPress directory. */
    85 if ( ! defined( 'ABSPATH' ) ) {
    91 if ( ! defined( 'ABSPATH' ) ) {
    86 	define( 'ABSPATH', __DIR__ . '/' );
    92 	define( 'ABSPATH', __DIR__ . '/' );