· 7 years ago · Sep 19, 2018, 08:20 PM
1<?php
2/**
3 * The base configuration for WordPress
4 *
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.
8 *
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
17 *
18 * @package WordPress
19 */
20
21// ** MySQL settings - You can get this info from your web host ** //
22/** The name of the database for WordPress */
23define('DB_NAME', '');
24
25/** MySQL database username */
26define('DB_USER', '');
27
28/** MySQL database password */
29define('DB_PASSWORD', '');
30
31/** MySQL hostname */
32define('DB_HOST', 'localhost');
33
34/** Database Charset to use in creating database tables. */
35define('DB_CHARSET', 'utf8');
36
37/** The Database Collate type. Don't change this if in doubt. */
38define('DB_COLLATE', '');
39
40/**#@+
41 * Authentication Unique Keys and Salts.
42 *
43 * Change these to different unique phrases!
44 * You can generate these using the {@link https://api.wordpress.org/secret-key/1.1/salt/ WordPress.org secret-key service}
45 * 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.
46 *
47 * @since 2.6.0
48 */
49define('AUTH_KEY', '95f325dcaf73533a59274d08510a29c51a6f2afc9a1ef4c9fa009ee2d34cf652');
50define('SECURE_AUTH_KEY', '32defd2609cefac177d92cfdcbc7ebc384f3fd5ee8c3c8a6b070cfe5079d7c1d');
51define('LOGGED_IN_KEY', '075fb5187644f67f02e082929fe43d9b31380fc637c2ba5a4735e33483471cfb');
52define('NONCE_KEY', '1f0bf55fa7d0f65844fc0e7dfee7dc9fd4256820da566dd0bb727be20ec46cd0');
53define('AUTH_SALT', '7f87c48fbc51f3038de49a096d9a86fb6f9107d532c047f221e7c977b0abf929');
54define('SECURE_AUTH_SALT', 'e78044ad6702804b00f1fbd344f6467d458e27a1036af30973173b8c179f7733');
55define('LOGGED_IN_SALT', '592aab93cba5553bc9924f1b42f82406a70c9dcececcd3d0c11b2204c2876811');
56define('NONCE_SALT', '3884899918b1048ac5e0d26c77c6827985ed7c3ebb338f4b9c2c82fc2b4d07ee');
57
58/**#@-*/
59
60/**
61 * WordPress Database Table prefix.
62 *
63 * You can have multiple installations in one database if you give each
64 * a unique prefix. Only numbers, letters, and underscores please!
65 */
66$table_prefix = '_6WD_';
67
68/**
69 * For developers: WordPress debugging mode.
70 *
71 * Change this to true to enable the display of notices during development.
72 * It is strongly recommended that plugin and theme developers use WP_DEBUG
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
79 */
80define('WP_DEBUG', false);
81
82/* That's all, stop editing! Happy blogging. */
83
84/** Absolute path to the WordPress directory. */
85if ( !defined('ABSPATH') )
86 define('ABSPATH', dirname(__FILE__) . '/');
87
88/** Sets up WordPress vars and included files. */
89require_once(ABSPATH . 'wp-settings.php');
90
91define( 'WP_CRON_LOCK_TIMEOUT', 120 );
92define( 'AUTOSAVE_INTERVAL', 300 );
93define( 'WP_POST_REVISIONS', 5 );
94define( 'EMPTY_TRASH_DAYS', 7 );
95define( 'WP_AUTO_UPDATE_CORE', true );