· 6 years ago · Mar 25, 2019, 08:38 PM
1<?php
2
3/**
4 * The base configuration for WordPress
5 *
6 * The wp-config.php creation script uses this file during the
7 * installation. You don't have to use the web site, you can
8 * copy this file to "wp-config.php" and fill in the values.
9 *
10 * This file contains the following configurations:
11 *
12 * * MySQL settings
13 * * Secret keys
14 * * Database table prefix
15 * * ABSPATH
16 *
17 * @link https://codex.wordpress.org/Editing_wp-config.php
18 *
19 * @package WordPress
20 */
21
22// ** MySQL settings - You can get this info from your web host ** //
23/** The name of the database for WordPress */
24define('DB_NAME', 'openinovo');
25
26/** MySQL database username */
27define('DB_USER', 'root');
28
29/** MySQL database password */
30define('DB_PASSWORD', '');
31
32/** MySQL hostname */
33define('DB_HOST', 'localhost');
34
35/** Database Charset to use in creating database tables. */
36define('DB_CHARSET', 'utf8mb4');
37
38/** The Database Collate type. Don't change this if in doubt. */
39define('DB_COLLATE', '');
40define('FORCE_SSL_ADMIN', true);
41
42/**#@+
43 * Authentication Unique Keys and Salts.
44 *
45 * Change these to different unique phrases!
46 * You can generate these using the {@link https://api.wordpress.org/secret-key/1.1/salt/ WordPress.org secret-key service}
47 * 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.
48 *
49 * @since 2.6.0
50 */
51define('AUTH_KEY', '?,pzA1LA[M`3]3|W$pJi7-fg&yd~X++n&^>h?:E{Th4AbUW7~Vz*GpV!?@?;c/Iz');
52define('SECURE_AUTH_KEY', 'PQV^wwq1(,*+$j^~k+ G`{0<R)%R1&+{H;`AP96m^V;4]+*_)N|3Mt:?)!`[vpQ9');
53define('LOGGED_IN_KEY', 'R/x8BHj1fWhz8jD+ZFignkJL!h!OyXHlYe^kMM)Nn||G9{&<Y;:%Vs2#xuWA<pVO');
54define('NONCE_KEY', '^&k#e((DlwX_1HI4Iz}H2YVI;Flq)>:I)&33r%dv+Xi0?v@39e p1&xC^MU8W9(e');
55define('AUTH_SALT', '{2/;C NMb0czs]-~~7LD7j#MzS7>a#XM8tTW5_VMs+-~y/A26r4ES=`G>t3RsFLM');
56define('SECURE_AUTH_SALT', '6$n+R%|nUvZKPrZqoe%<6hq kHgtW|n 14W_fkL79S$h620S|]z]3:Ioj{8Xm+ l');
57define('LOGGED_IN_SALT', '8GKx=#zPg|Pbbcw6TgRy-K_e._M#9+aC,)5okQC*] 38tRe9;*>Eiyl~BskN;keW');
58define('NONCE_SALT', '$ZI!pkTvVLhk,RkH N!SYXeX94ejWvllCyy#c}6,g1z{{}B$OY-6rgyWW-lY8?Qa');
59
60/**#@-*/
61
62/**
63 * WordPress Database Table prefix.
64 *
65 * You can have multiple installations in one database if you give each
66 * a unique 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 *
77 * For information on other constants that can be used for debugging,
78 * visit the Codex.
79 *
80 * @link https://codex.wordpress.org/Debugging_in_WordPress
81 */
82// Habilita modo de debug
83define('WP_DEBUG', true);
84
85// Guarda os logs em /wp-content/debug.log
86define('WP_DEBUG_LOG', true);
87
88/* That's all, stop editing! Happy blogging. */
89
90/** Absolute path to the WordPress directory. */
91if ( !defined('ABSPATH') )
92 define('ABSPATH', dirname(__FILE__) . a'/');
93
94/** Sets up WordPress vars and included files. */
95require_once(ABSPATH . 'wp-settings.php');
96
97define ( 'AUTOMATIC_UPDATER_DISABLED' , true);