· 8 years ago · Jan 04, 2018, 07:02 PM
1<?php
2/** Enable W3 Total Cache */
3define('WP_CACHE', true); // Added by W3 Total Cache
4
5/** Enable W3 Total Cache Edge Mode */
6define('W3TC_EDGE_MODE', true); // Added by W3 Total Cache
7
8
9/**
10 * The base configurations of the WordPress.
11 *
12 * This file has the following configurations: MySQL settings, Table Prefix,
13 * Secret Keys, and ABSPATH. You can find more information by visiting
14 * {@link http://codex.wordpress.org/Editing_wp-config.php Editing wp-config.php}
15 * Codex page. You can get the MySQL settings from your web host.
16 *
17 * This file is used by the wp-config.php creation script during the
18 * installation. You don't have to use the web site, you can just copy this file
19 * to "wp-config.php" and fill in the values.
20 *
21 * @package WordPress
22 */
23
24// ** MySQL settings - You can get this info from your web host ** //
25/** The name of the database for WordPress */
26define('DB_NAME', 'madidier_site_15');
27
28/** MySQL database username */
29define('DB_USER', 'madid_user_site');
30
31/** MySQL database password */
32define('DB_PASSWORD', '211088');
33
34/** MySQL hostname */
35define('DB_HOST', 'robb0346.locaweb.com.br:3306');
36
37/** Database Charset to use in creating database tables. */
38define('DB_CHARSET', 'utf8');
39
40/** The Database Collate type. Don't change this if in doubt. */
41define('DB_COLLATE', '');
42
43/**#@+
44 * Authentication Unique Keys and Salts.
45 *
46 * Change these to different unique phrases!
47 * You can generate these using the {@link https://api.wordpress.org/secret-key/1.1/salt/ WordPress.org secret-key service}
48 * 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.
49 *
50 * @since 2.6.0
51 */
52define('AUTH_KEY', '&|Lzl$M 5@%`,)t0s[HEfKR5BJD?U:VznrFNE9WcLYR$4K|@8s lZ}a@V[)+R|gd');
53define('SECURE_AUTH_KEY', 'uG*;;sl=N?vO@yqb{PRK$e`) $||-f~<+6Hg*~zFiTccI^c|RP.)#&5|Valy|sO?');
54define('LOGGED_IN_KEY', '7WH3$lomi?x^-)NbV=W;~C0G_mVI0N{Fu]C_hmU5eD8||GuW8E2|aJ7( C.X@0cx');
55define('NONCE_KEY', '8P4KWUmGg+[;q^2A=f-?P/VrGl*+gGz?~ykK%6[.a:4+exK?pMpvUhu!E-IN^c6+');
56define('AUTH_SALT', '_0`-7n7jzn*cSVS|#/[M-0),y}+*Ar3;wI,3wh&:sO:lJd;3-AK78ouu<{1*lke$');
57define('SECURE_AUTH_SALT', 'BO6#3Nnvl>+@+eGsE!<!besR$:J+K}I9i}3I6q+7N`^$M>%h1R1+vU5e0}tZ%<WM');
58define('LOGGED_IN_SALT', 'j{-/T#6))dzcMVUPm333K3>,3~)KtM~Zg.2i$KzuRV|C}xpOV*+?o?++N5qlc+lp');
59define('NONCE_SALT', 'mppg!eBJrX_i=,M(j%ik}?V/<s%+G>w:J~H1)0li{JPY<+SE 3l~-;R|.A0m!t:X');
60
61/**#@-*/
62
63/**
64 * WordPress Database Table prefix.
65 *
66 * You can have multiple installations in one database if you give each a unique
67 * prefix. Only numbers, letters, and underscores please!
68 */
69$table_prefix = 'wp_';
70
71/**
72 * For developers: WordPress debugging mode.
73 *
74 * Change this to true to enable the display of notices during development.
75 * It is strongly recommended that plugin and theme developers use WP_DEBUG
76 * in their development environments.
77 */
78define('WP_DEBUG', false);
79
80/* That's all, stop editing! Happy blogging. */
81
82/** Absolute path to the WordPress directory. */
83if ( !defined('ABSPATH') )
84 define('ABSPATH', dirname(__FILE__) . '/');
85
86/** Sets up WordPress vars and included files. */
87require_once(ABSPATH . 'wp-settings.php');