Make WordPress Core

Ticket #28551: 28551.5.patch

File 28551.5.patch, 1.6 KB (added by DrewAPicture, 10 years ago)
  • wp-config-sample.php

     
    11<?php
    22/**
    3  * The base configurations of the WordPress.
     3 * The base configuration for WordPress
    44 *
    5  * This file has the following configurations: MySQL settings, Table Prefix,
    6  * Secret Keys, and ABSPATH. You can find more information by visiting
    7  * {@link https://codex.wordpress.org/Editing_wp-config.php Editing wp-config.php}
    8  * Codex page. You can get the MySQL settings from your web host.
     5 * The wp-config.php creation script uses this file during the
     6 * installation. You don't have to use the web site, you can
     7 * copy this file to "wp-config.php" and fill in the values.
    98 *
    10  * This file is used by the wp-config.php creation script during the
    11  * installation. You don't have to use the web site, you can just copy this file
    12  * to "wp-config.php" and fill in the values.
     9 * This file contains the following configurations:
    1310 *
     11 * * MySQL settings
     12 * * Secret keys
     13 * * Database table prefix
     14 * * ABSPATH
     15 *
     16 * @link https://codex.wordpress.org/Editing_wp-config.php
     17 *
    1418 * @package WordPress
    1519 */
    1620
     
    6771 * Change this to true to enable the display of notices during development.
    6872 * It is strongly recommended that plugin and theme developers use WP_DEBUG
    6973 * in their development environments.
     74 *
     75 * For information on other constants to use for debugging, visit the Codex.
     76 *
     77 * @link https://codex.wordpress.org/Debugging_in_WordPress
    7078 */
    7179define('WP_DEBUG', false);
    7280