Path: blob/master/spec/fixtures/finders/config_backups/wp-config.php
486 views
<?php1/**2* The base configurations of the WordPress.3*4* This file has the following configurations: MySQL settings, Table Prefix,5* Secret Keys, WordPress Language, and ABSPATH. You can find more information6* by visiting {@link http://codex.wordpress.org/Editing_wp-config.php Editing7* wp-config.php} Codex page. You can get the MySQL settings from your web host.8*9* This file is used by the wp-config.php creation script during the10* installation. You don't have to use the web site, you can just copy this file11* to "wp-config.php" and fill in the values.12*13* @package WordPress14*/15// ** MySQL settings - You can get this info from your web host ** //16/** The name of the database for WordPress */17define('DB_NAME', 'database_name_here');18/** MySQL database username */19define('DB_USER', 'username_here');20/** MySQL database password */21define('DB_PASSWORD', 'password_here');22/** MySQL hostname */23define('DB_HOST', 'localhost');24/** Database Charset to use in creating database tables. */25define('DB_CHARSET', 'utf8');26/** The Database Collate type. Don't change this if in doubt. */27define('DB_COLLATE', '');28/**#@+29* Authentication Unique Keys and Salts.30*31* Change these to different unique phrases!32* You can generate these using the {@link https://api.wordpress.org/secret-key/1.1/salt/ WordPress.org secret-key service}33* 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.34*35* @since 2.6.036*/37define('AUTH_KEY', 'put your unique phrase here');38define('SECURE_AUTH_KEY', 'put your unique phrase here');39define('LOGGED_IN_KEY', 'put your unique phrase here');40define('NONCE_KEY', 'put your unique phrase here');41define('AUTH_SALT', 'put your unique phrase here');42define('SECURE_AUTH_SALT', 'put your unique phrase here');43define('LOGGED_IN_SALT', 'put your unique phrase here');44define('NONCE_SALT', 'put your unique phrase here');45/**#@-*/46/**47* WordPress Database Table prefix.48*49* You can have multiple installations in one database if you give each a unique50* prefix. Only numbers, letters, and underscores please!51*/52$table_prefix = 'wp_';53/**54* WordPress Localized Language, defaults to English.55*56* Change this to localize WordPress. A corresponding MO file for the chosen57* language must be installed to wp-content/languages. For example, install58* de_DE.mo to wp-content/languages and set WPLANG to 'de_DE' to enable German59* language support.60*/61define('WPLANG', '');62/**63* For developers: WordPress debugging mode.64*65* Change this to true to enable the display of notices during development.66* It is strongly recommended that plugin and theme developers use WP_DEBUG67* in their development environments.68*/69define('WP_DEBUG', false);70/* That's all, stop editing! Happy blogging. */71/** Absolute path to the WordPress directory. */72if ( !defined('ABSPATH') )73define('ABSPATH', dirname(__FILE__) . '/');74/** Sets up WordPress vars and included files. */75require_once(ABSPATH . 'wp-settings.php');767778