· 9 years ago · Oct 06, 2016, 02:22 PM
1<?php
2/**
3 * The base configurations of the WordPress.
4 *
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.
9 *
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.
13 *
14 * @package WordPress
15 */
16
17// ** MySQL settings - You can get this info from your web host ** //
18define('WP_CACHE', true); //Added by WP-Cache Manager
19define( 'WPCACHEHOME', '/home/kytsu164/public_html/wordpress/wp-content/plugins/wp-super-cache/' ); //Added by WP-Cache Manager
20/** The name of the database for WordPress */
21define('DB_NAME', 'kytsu164_wrdp1');
22
23/** MySQL database username */
24define('DB_USER', 'kytsu164_wrdp1');
25
26/** MySQL database password */
27define('DB_PASSWORD', '3TDc3HWRnUV5DN');
28
29/** MySQL hostname */
30define('DB_HOST', 'localhost');
31
32/** Database Charset to use in creating database tables. */
33define('DB_CHARSET', 'utf8');
34
35/** The Database Collate type. Don't change this if in doubt. */
36define('DB_COLLATE', '');
37
38/**#@+
39 * Authentication Unique Keys and Salts.
40 *
41 * Change these to different unique phrases!
42 * You can generate these using the {@link https://api.wordpress.org/secret-key/1.1/salt/ WordPress.org secret-key service}
43 * 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.
44 *
45 * @since 2.6.0
46 */
47define('AUTH_KEY', '@n@v|mGzqw0Ao3)PjwR7a9gDjxIh#=L2LJ(0zhIGnI!l-TD0nwBU>1?K!0X-=FE=)');
48define('SECURE_AUTH_KEY', 'CI@izN9h9269Su;1!HGDoyXT4:GHGJcSd;XTAdi3@$_~E>PpA=W_UFe1#fVo');
49define('LOGGED_IN_KEY', ';B6IYB~5qeb^XHvD9kDZ9gc6(XUXiugz*5a9ALfM_WtG8d<DikRI|yO5d(r-:9u>jyaaErR8/');
50define('NONCE_KEY', '\`d786?w;ypbI(kZ|GM|3Nvq^QX~44G3d3G8;oGLC3$/Je#uIU_BtBboThqj**|$IEp*bdsby8u<f');
51define('AUTH_SALT', '~oB1mE_0G8MU6?xO6hd-m9YdYj^~oJNZBvIHhk9PJ5RdwqFR!D(g:6M:8tYLtH#O^wmT_');
52define('SECURE_AUTH_SALT', 'kQuwv=?^JDw8;t55AYL2<)jHx)?WMn~imq#8y\`X)fZhdiA(0?0tbLoMc$F(lcXjCX_GGb\`D^ME15^7');
53define('LOGGED_IN_SALT', 'GUXgEAXY)##AZ3IVNyOg5~>?Q9z|~kZ-oTrp-zQ/lr24$:ahb7s1pmoomV\`Lh:)n)i6tHs');
54define('NONCE_SALT', '2<bc:ftFHvf642I0XGBnPW)s?G^!TS4D|i7-OtMAlaQq\`A#1(dV4BMUtG*$VGA^WPcQ2H7V!gmlc\`');
55
56
57/**#@-*/
58define('AUTOSAVE_INTERVAL', 600 );
59define('WP_POST_REVISIONS', 1);
60define( 'WP_CRON_LOCK_TIMEOUT', 120 );
61define( 'WP_AUTO_UPDATE_CORE', true );
62/**
63 * WordPress Database Table prefix.
64 *
65 * You can have multiple installations in one database if you give each a unique
66 * prefix. Only numbers, letters, and underscores please!
67 */
68$table_prefix = 'wp_';
69
70/**
71 * For developers: WordPress debugging mode.
72 *
73 * Change this to true to enable the display of notices during development.
74 * It is strongly recommended that plugin and theme developers use WP_DEBUG
75 * in their development environments.
76 */
77define('WP_DEBUG', false);
78
79/* That's all, stop editing! Happy blogging. */
80
81/** Absolute path to the WordPress directory. */
82if ( !defined('ABSPATH') )
83 define('ABSPATH', dirname(__FILE__) . '/');
84
85/** Sets up WordPress vars and included files. */
86require_once(ABSPATH . 'wp-settings.php');
87add_filter( 'auto_update_plugin', '__return_true' );
88add_filter( 'auto_update_theme', '__return_true' );