· 7 years ago · Jun 29, 2018, 05:10 PM
1<?php
2
3// BEGIN iThemes Security - Do not modify or remove this line
4// iThemes Security Config Details: 2
5define( 'DISALLOW_FILE_EDIT', true ); // Disable File Editor - Security > Settings > WordPress Tweaks > File Editor
6// END iThemes Security - Do not modify or remove this line
7
8/**
9 * The base configuration for WordPress
10 *
11 * The wp-config.php creation script uses this file during the
12 * installation. You don't have to use the web site, you can
13 * copy this file to "wp-config.php" and fill in the values.
14 *
15 * This file contains the following configurations:
16 *
17 * * MySQL settings
18 * * Secret keys
19 * * Database table prefix
20 * * ABSPATH
21 *
22 * @link https://codex.wordpress.org/Editing_wp-config.php
23 *
24 * @package WordPress
25 */
26
27// ** MySQL settings - You can get this info from your web host ** //
28/** The name of the database for WordPress */
29define('DB_NAME', 'db64536_wp');
30
31/** MySQL database username */
32define('DB_USER', 'userweb64536');
33
34/** MySQL database password */
35define('DB_PASSWORD', '8N82frO8ou');
36
37/** MySQL hostname */
38define('DB_HOST', 'localhost');
39
40/** Database Charset to use in creating database tables. */
41define('DB_CHARSET', 'utf8');
42
43/** The Database Collate type. Don't change this if in doubt. */
44define('DB_COLLATE', '');
45
46/**#@+
47 * Authentication Unique Keys and Salts.
48 *
49 * Change these to different unique phrases!
50 * You can generate these using the {@link https://api.wordpress.org/secret-key/1.1/salt/ WordPress.org secret-key service}
51 * 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.
52 *
53 * @since 2.6.0
54 */
55define('AUTH_KEY', 'F-+_[,cQ9JOA}+{#<#}QP4@b}>MygaEq{S[DF?}-*BH`uDpe[U4_=-IQTFxvsyf?');
56define('SECURE_AUTH_KEY', 'pB$TObb<76OWuEo~Ubns9BTfQ.QK(b5vM*^-vh4+6|#<7;hJof%bOY)Jr;$G~4}5');
57define('LOGGED_IN_KEY', 'Khta&EF,_7YzqcQJDC0Cr>DzIe-KXUlz{[m|5Ysg!S|iH>gI02!6I;K hCNlqVN}');
58define('NONCE_KEY', '+OuEMRKK#k*9coDvcM57J>EF|+ bZwPB+CAeq~kI5zupK2Z0+{qaKW>G[oya.5rf');
59define('AUTH_SALT', 'DD:FKP^P}-3WS6;Tb|N+|uKI4QWKkT<0l|%UCf|jt<O23n%mAqd$%JIE<eh69.)h');
60define('SECURE_AUTH_SALT', 'b]F,*hJs@^geUKiQnk5?jG9QN|3wHuV(T(2Z(dn||lSA+x5RFK<IHJsrEb134Sr_');
61define('LOGGED_IN_SALT', '6kir0iJ@`0g:mR-lMehhIjJ>Y+UD)+DDDdN]Xv,LX#&B*bpmDH()f+6/szwCXD%=');
62define('NONCE_SALT', 'I9!s|2o.z V/hCH/k_4wW-5M};}&<If&zv*S)dv3|kd Mt$cw:HEY[V3Nd7vYXb)');
63
64/**#@-*/
65
66/**
67 * WordPress Database Table prefix.
68 *
69 * You can have multiple installations in one database if you give each
70 * a unique prefix. Only numbers, letters, and underscores please!
71 */
72$table_prefix = 'wp_';
73
74/**
75 * For developers: WordPress debugging mode.
76 *
77 * Change this to true to enable the display of notices during development.
78 * It is strongly recommended that plugin and theme developers use WP_DEBUG
79 * in their development environments.
80 *
81 * For information on other constants that can be used for debugging,
82 * visit the Codex.
83 *
84 * @link https://codex.wordpress.org/Debugging_in_WordPress
85 */
86define('WP_DEBUG', false);
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__) . '/');
93
94/** Sets up WordPress vars and included files. */
95require_once(ABSPATH . 'wp-settings.php');