-
+ 4785DA0C1C516631505D7D1F500DC8062760EA4174082FD1277CED6F9ABF5151A8D7CC20E17D94A2FDC2E6B0AC33D065F14F6C0CE05801FF596C185BAEF92529
mp-wp/wp-config.php
(0 . 0)(1 . 50)
65149 <?php
65150 /** Enable W3 Total Cache **/
65151
65152 define('WP_CACHE', true); // Added by W3 Total Cache
65153
65154 /**
65155 * The base configurations of the WordPress. *
65156 * This file has the following configurations: MySQL settings, Table Prefix,
65157 * Secret Keys, WordPress Language, and ABSPATH. You can find more information by * visiting {@link http://codex.wordpress.org/Editing_wp-config.php Editing * wp-config.php} Codex page. You can get the MySQL settings from your web host. * * This file is used by the wp-config.php creation script during the * installation. You don't have to use the web site, you can just copy this file * to "wp-config.php" and fill in the values. * * @package WordPress */
65158
65159 // ** MySQL settings - You can get this info from your web host ** //
65160 /** The name of the database for WordPress */
65161 define('DB_NAME', 'fill your own');
65162
65163 /** MySQL database username */
65164 define('DB_USER', 'fill your own');
65165
65166 /** MySQL database password */
65167 define('DB_PASSWORD', 'fill your own');
65168
65169 /** MySQL hostname */
65170 define('DB_HOST', 'localhost');
65171
65172 /** Database Charset to use in creating database tables. */
65173 define('DB_CHARSET', 'utf8');
65174
65175 /** The Database Collate type. Don't change this if in doubt. */
65176 define('DB_COLLATE', '');
65177
65178 /**#@+ * Authentication Unique Keys. * * Change these to different unique phrases! * You can generate these using the {@link http://api.wordpress.org/secret-key/1.1/ WordPress.org secret-key service} * * @since 2.6.0 */
65179
65180 define('AUTH_KEY', 'fill your own');
65181 define('SECURE_AUTH_KEY', 'fill your own');
65182 define('LOGGED_IN_KEY', 'fill your own');
65183 define('NONCE_KEY', 'fill your own');
65184 /**#@-*/
65185 /** * WordPress Database Table prefix. * * You can have multiple installations in one database if you give each a unique * prefix. Only numbers, letters, and underscores please! */
65186 $table_prefix = 'fill your own';
65187
65188 /** * WordPress Localized Language, defaults to English. * * Change this to localize WordPress. A corresponding MO file for the chosen * language must be installed to wp-content/languages. For example, install * de.mo to wp-content/languages and set WPLANG to 'de' to enable German * language support. */
65189
65190 define ('WPLANG', '');
65191 define('WP_POST_REVISIONS', false);
65192
65193 /* That's all, stop editing! Happy blogging. */
65194 /** WordPress absolute path to the Wordpress directory. */
65195
65196 if ( !defined('ABSPATH') ) define('ABSPATH', dirname(__FILE__) . '/');
65197 /** Sets up WordPress vars and included files. */
65198 require_once(ABSPATH . 'wp-settings.php');?>