wp/wp-config-sample.php
changeset 7 cf61fcea0001
parent 5 5e2f62d02dcd
child 9 177826044cd9
equal deleted inserted replaced
6:490d5cc509ed 7:cf61fcea0001
     1 <?php
     1 <?php
     2 /**
     2 /**
     3  * The base configurations of the WordPress.
     3  * The base configuration for WordPress
     4  *
     4  *
     5  * This file has the following configurations: MySQL settings, Table Prefix,
     5  * The wp-config.php creation script uses this file during the
     6  * Secret Keys, and ABSPATH. You can find more information by visiting
     6  * installation. You don't have to use the web site, you can
     7  * {@link https://codex.wordpress.org/Editing_wp-config.php Editing wp-config.php}
     7  * copy this file to "wp-config.php" and fill in the values.
     8  * Codex page. You can get the MySQL settings from your web host.
       
     9  *
     8  *
    10  * This file is used by the wp-config.php creation script during the
     9  * This file contains the following configurations:
    11  * installation. You don't have to use the web site, you can just copy this file
    10  *
    12  * to "wp-config.php" and fill in the values.
    11  * * MySQL settings
       
    12  * * Secret keys
       
    13  * * Database table prefix
       
    14  * * ABSPATH
       
    15  *
       
    16  * @link https://codex.wordpress.org/Editing_wp-config.php
    13  *
    17  *
    14  * @package WordPress
    18  * @package WordPress
    15  */
    19  */
    16 
    20 
    17 // ** MySQL settings - You can get this info from your web host ** //
    21 // ** MySQL settings - You can get this info from your web host ** //
    54 /**#@-*/
    58 /**#@-*/
    55 
    59 
    56 /**
    60 /**
    57  * WordPress Database Table prefix.
    61  * WordPress Database Table prefix.
    58  *
    62  *
    59  * You can have multiple installations in one database if you give each a unique
    63  * You can have multiple installations in one database if you give each
    60  * prefix. Only numbers, letters, and underscores please!
    64  * a unique prefix. Only numbers, letters, and underscores please!
    61  */
    65  */
    62 $table_prefix  = 'wp_';
    66 $table_prefix  = 'wp_';
    63 
    67 
    64 /**
    68 /**
    65  * For developers: WordPress debugging mode.
    69  * For developers: WordPress debugging mode.
    66  *
    70  *
    67  * Change this to true to enable the display of notices during development.
    71  * Change this to true to enable the display of notices during development.
    68  * It is strongly recommended that plugin and theme developers use WP_DEBUG
    72  * It is strongly recommended that plugin and theme developers use WP_DEBUG
    69  * in their development environments.
    73  * in their development environments.
       
    74  *
       
    75  * For information on other constants that can be used for debugging,
       
    76  * visit the Codex.
       
    77  *
       
    78  * @link https://codex.wordpress.org/Debugging_in_WordPress
    70  */
    79  */
    71 define('WP_DEBUG', false);
    80 define('WP_DEBUG', false);
    72 
    81 
    73 /* That's all, stop editing! Happy blogging. */
    82 /* That's all, stop editing! Happy blogging. */
    74 
    83