· 7 years ago · Jul 07, 2018, 03:42 PM
1<?php
2/**
3 * The base configurations of the WordPress.
4 *
5 * This file has the following configurations: MySQL settings, Table Prefix,
6 * Secret Keys, WordPress Language, and ABSPATH. You can find more information
7 * by visiting {@link http://codex.wordpress.org/Editing_wp-config.php Editing
8 * wp-config.php} Codex page. You can get the MySQL settings from your web host.
9 *
10 * This file is used by the wp-config.php creation script during the
11 * installation. You don't have to use the web site, you can just copy this file
12 * to "wp-config.php" and fill in the values.
13 *
14 * @package WordPress
15 */
16
17// ** MySQL settings - You can get this info from your web host ** //
18/** The name of the database for WordPress */
19define('DB_NAME', 'threadsdb_afterrecovery');
20
21/** MySQL database username */
22define('DB_USER', 'root');
23
24/** MySQL database password */
25define('DB_PASSWORD', 'MZT{J5jPs*');
26
27/** MySQL hostname */
28define('DB_HOST', 'localhost');
29
30/** Database Charset to use in creating database tables. */
31define('DB_CHARSET', 'utf8');
32
33/** The Database Collate type. Don't change this if in doubt. */
34define('DB_COLLATE', '');
35define( 'WP_DEBUG_LOG', true );
36
37/**#@+
38 * Authentication Unique Keys and Salts.
39 *
40 * Change these to different unique phrases!
41 * You can generate these using the {@link https://api.wordpress.org/secret-key/1.1/salt/ WordPress.org secret-key service}
42 * 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.
43 *
44 * @since 2.6.0
45 */
46define('AUTH_KEY', '7&oNT=j=|j3lJ8ZM@I8 wWMZ ^KOgw%<hG3AN`0}9mfyP1-<?N(]q{doGi`yLag%');
47define('SECURE_AUTH_KEY', 'q;^m+|kBuW#>@a?Bk({jjf}2(CU)7xY9Qo{Xou=<E`A-20vDG=SEOKw7eS3C4^;>');
48define('LOGGED_IN_KEY', 'Ea= R+=Ga=NE2i6>``;hB+mBkK[/Db]k{<_B+-~0scc,Ukvimh(+y{WJY:+B Z!1');
49define('NONCE_KEY', 'm>,^rII-d17N$?EB+6(c81iIUn=nx?!o/R##q]+~=Wr;0_m6V.<3T dFu9Dl=Y<M');
50define('AUTH_SALT', 'b2Q}Y|5J|b-%X+]s!#cAYWgO+`hRa]KN<Zl`o}~?k%DEL[f/D]lMAn*Fogw/j25S');
51define('SECURE_AUTH_SALT', 'ZR~)yL~R-}t*C82r+}^+AQ976,i7L#E_?;8NG-=noN,H3:uda&gH%%+C;U*)b>%?');
52define('LOGGED_IN_SALT', 'Rjh^[|9s`a3(6} 7+4JFJDkNYA},^T6yJ^qawOWV-r(i?K||EM.&Q3+:9HXHg/@Y');
53define('NONCE_SALT', '~(/wZ%#b4IucO/_04g.Nb>? x/I6k+W]NjQZ+~fR:3FCrd(yT#zDQ.Y5Oh^._$*R');
54
55/**#@-*/
56
57/**
58 * WordPress Database Table prefix.
59 *
60 * You can have multiple installations in one database if you give each a unique
61 * prefix. Only numbers, letters, and underscores please!
62 */
63$table_prefix = 'wp_';
64
65/**
66 * WordPress Localized Language, defaul*/ /*ts to English.
67 *
68 * Change this to localize WordPress. A corresponding MO file for the chosen
69 * language must be installed to wp-content/languages. For example, install
70 * de_DE.mo to wp-content/languages and set WPLANG to 'de_DE' to enable German
71 * language support.
72 */
73define('WPLANG', '');
74
75/**
76 * For developers: WordPress debugging mode.
77 *
78 * Change this to true to enable the display of notices during development.
79 * It is strongly recommended that plugin and theme developers use WP_DEBUG
80 * in their development environments.
81 */
82define('WP_DEBUG', true);
83
84/* That's all, stop editing! Happy blogging. */
85
86/** Absolute path to the WordPress directory. */
87if ( !defined('ABSPATH') )
88 define('ABSPATH', dirname(__FILE__) . '/');
89
90define('DISABLE_WP_CRON', 'true');
91
92/** Sets up WordPress vars and included files. */
93require_once(ABSPATH . 'wp-settings.php');
94define('WP_MEMORY_LIMIT', '256M');
95define( 'DISALLOW_FILE_MODS', true );
96/**ini_set('log_errors',TRUE);
97ini_set('error_reporting', E_ALL);
98ini_set('error_log', dirname(__FILE__) . '/error_log.txt');*/
99?>