Changes from tags/3.4.1 at r36243 to tags/4.4 at r36243
- Location:
- tags
- Files:
-
- 2211 added
- 19 deleted
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
tags/4.4/wp-config-sample.php
r36243 r36243 1 1 <?php 2 2 /** 3 * The base configuration s of the WordPress.3 * The base configuration for WordPress 4 4 * 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. 9 8 * 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 13 17 * 14 18 * @package WordPress … … 57 61 * WordPress Database Table prefix. 58 62 * 59 * You can have multiple installations in one database if you give each a unique60 * 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! 61 65 */ 62 66 $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 chosen68 * language must be installed to wp-content/languages. For example, install69 * de_DE.mo to wp-content/languages and set WPLANG to 'de_DE' to enable German70 * language support.71 */72 define('WPLANG', '');73 67 74 68 /** … … 78 72 * It is strongly recommended that plugin and theme developers use WP_DEBUG 79 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 80 79 */ 81 80 define('WP_DEBUG', false);
Note: See TracChangeset
for help on using the changeset viewer.