Make WordPress Core

Changes from tags/3.4.1 at r36243 to tags/4.4 at r36243


Ignore:
Location:
tags
Files:
2211 added
19 deleted
1 edited

Legend:

Unmodified
Added
Removed
  • tags/4.4/wp-config-sample.php

    r36243 r36243  
    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, WordPress Language, and ABSPATH. You can find more information
    7  * by visiting {@link http://codex.wordpress.org/Editing_wp-config.php Editing
    8  * wp-config.php} 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:
     10 *
     11 * * MySQL settings
     12 * * Secret keys
     13 * * Database table prefix
     14 * * ABSPATH
     15 *
     16 * @link https://codex.wordpress.org/Editing_wp-config.php
    1317 *
    1418 * @package WordPress
     
    5761 * WordPress Database Table prefix.
    5862 *
    59  * You can have multiple installations in one database if you give each a unique
    60  * prefix. Only numbers, letters, and underscores please!
     63 * You can have multiple installations in one database if you give each
     64 * a unique prefix. Only numbers, letters, and underscores please!
    6165 */
    6266$table_prefix  = 'wp_';
    63 
    64 /**
    65  * WordPress Localized Language, defaults to English.
    66  *
    67  * Change this to localize WordPress. A corresponding MO file for the chosen
    68  * language must be installed to wp-content/languages. For example, install
    69  * de_DE.mo to wp-content/languages and set WPLANG to 'de_DE' to enable German
    70  * language support.
    71  */
    72 define('WPLANG', '');
    7367
    7468/**
     
    7872 * It is strongly recommended that plugin and theme developers use WP_DEBUG
    7973 * 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
    8079 */
    8180define('WP_DEBUG', false);
Note: See TracChangeset for help on using the changeset viewer.