· 7 years ago · Jan 17, 2019, 06:36 PM
1<?php
2/** Enable W3 Total Cache */
3define('WP_CACHE', true); // Added by W3 Total Cache
4
5/**
6 * The base configuration for WordPress
7 *
8 * The wp-config.php creation script uses this file during the
9 * installation. You don't have to use the web site, you can
10 * copy this file to "wp-config.php" and fill in the values.
11 *
12 * This file contains the following configurations:
13 *
14 * * MySQL settings
15 * * Secret keys
16 * * Database table prefix
17 * * ABSPATH
18 *
19 * @link https://codex.wordpress.org/Editing_wp-config.php
20 *
21 * @package WordPress
22 */
23
24//error_reporting(0);
25define('WP_HOME','http://www.example.com');
26define('WP_SITEURL','http://www.example.com');
27define('WP_MEMORY_LIMIT', '96M');
28
29
30// ** MySQL settings - You can get this info from your web host ** //
31/** The name of the database for WordPress */
32define('DB_NAME', '**********');
33
34/** MySQL database username */
35define('DB_USER', '**********');
36
37/** MySQL database password */
38define('DB_PASSWORD', '**********');
39
40/** MySQL hostname */
41define('DB_HOST', '**********');
42
43/** Database Charset to use in creating database tables. */
44define('DB_CHARSET', 'utf8');
45
46/** The Database Collate type. Don't change this if in doubt. */
47define('DB_COLLATE', '');
48
49/**#@+
50 * Authentication Unique Keys and Salts.
51 *
52 * Change these to different unique phrases!
53 * You can generate these using the {@link https://api.wordpress.org/secret-key/1.1/salt/ WordPress.org secret-key service}
54 * 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.
55 *
56 * @since 2.6.0
57 */
58define('AUTH_KEY', 'MY_UNIQUE_KEY');
59define('SECURE_AUTH_KEY', 'MY_UNIQUE_KEY');
60define('LOGGED_IN_KEY', 'MY_UNIQUE_KEY');
61define('NONCE_KEY', 'MY_UNIQUE_KEY');
62define('AUTH_SALT', 'MY_UNIQUE_KEY');
63define('SECURE_AUTH_SALT', 'MY_UNIQUE_KEY');
64define('LOGGED_IN_SALT', 'MY_UNIQUE_KEY');
65define('NONCE_SALT', 'MY_UNIQUE_KEY');
66
67/**#@-*/
68
69/**
70 * WordPress Database Table prefix.
71 *
72 * You can have multiple installations in one database if you give each
73 * a unique prefix. Only numbers, letters, and underscores please!
74 */
75$table_prefix = 'wp_';
76
77/**
78 * WordPress Localized Language, defaults to English.
79 *
80 * Change this to localize WordPress. A corresponding MO file for the chosen
81 * language must be installed to wp-content/languages. For example, install
82 * de_DE.mo to wp-content/languages and set WPLANG to 'de_DE' to enable German
83 * language support.
84 */
85define('WPLANG', '');
86
87
88/**
89 * For developers: WordPress debugging mode.
90 *
91 * Change this to true to enable the display of notices during development.
92 * It is strongly recommended that plugin and theme developers use WP_DEBUG
93 * in their development environments.
94 *
95 * For information on other constants that can be used for debugging,
96 * visit the Codex.
97 *
98 * @link https://codex.wordpress.org/Debugging_in_WordPress
99 */
100define('WP_DEBUG', true);
101
102/* That's all, stop editing! Happy blogging. */
103
104/** Absolute path to the WordPress directory. */
105if ( !defined('ABSPATH') )
106 define('ABSPATH', dirname(__FILE__) . '/');
107
108/** Sets up WordPress vars and included files. */
109require_once(ABSPATH . 'wp-settings.php');