· 6 years ago · Aug 26, 2019, 07:24 AM
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// ** MySQL settings - You can get this info from your web host ** //
22/** The name of the database for WordPress */
23define('DB_NAME', 'mentorsdb4');
24/** MySQL database username */
25define('DB_USER', 'mentorsdb4');
26/** MySQL database password */
27define('DB_PASSWORD', 'Rachna@1234');
28/** MySQL hostname */
29define('DB_HOST', 'mentorsdb4.db.10229546.3a3.hostedresource.net');
30/** Database Charset to use in creating database tables. */
31define('DB_CHARSET', 'utf8mb4');
32/** The Database Collate type. Don't change this if in doubt. */
33define('DB_COLLATE', '');
34
35//define( 'UPLOADS', 'wp-content/'.'uploads' );
36define('CONCATENATE_SCRIPTS', false);
37
38/**#@+
39 * Authentication Unique Keys and Salts.
40 *
41 * Change these to different unique phrases!
42 * You can generate these using the {@link https://api.wordpress.org/secret-key/1.1/salt/ WordPress.org secret-key service}
43 * 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.
44 *
45 * @since 2.6.0
46 */
47define('AUTH_KEY', '$:ZOT#^#6zGuHqTfi+my,D9bi@iZBzl{V}91Q ]l;iHM&9U30*xF[>m=/ouRipF2');
48define('SECURE_AUTH_KEY', 'U$&E&NDelTIQ9[k%iUBQUYFhqEw!Zmi~-0(:$ ENG!U4Edh{`E*K;roUKy6dgj2X');
49define('LOGGED_IN_KEY', '?r|z^ zdE}/?C%W+hdl.CN291*]Id;x/deY9S|$|x?V`axna7/U$2i%3V@2nD1](');
50define('NONCE_KEY', '-qUIE$<B*G;QiJ<3<}[I6OC0[ITb|pn=mRvPsXM@X%p;DYrK{`y$C4CdE)?}mJE~');
51define('AUTH_SALT', '|u2oMTd4E7Ig6n22,Yzd,m:QF7TJoke=LgFxy0s }J>@&zBu2nj4,KKXDb.^cA~');
52define('SECURE_AUTH_SALT', 'G6<iISg#ZMXk{p?u#5Xk`jKVk=EQQ8ylik{dz.3rjF)m3rC{S:j]~kJ(C:,Pffr$');
53define('LOGGED_IN_SALT', 'Gw?qK2Q~)%=L4FRU$Z<Y)qe;y{VAn+5DS;Nl.jhYDv:/DI8rf}:_>kA.9nEAot9[');
54define('NONCE_SALT', '%^O*pXo#wJZRhu?e#ZH.dHJjM48_ad[$zWGyJ;w4`WP;9QZ[]~IrJyF{<$!Z?.`e');
55/**#@-*/
56/**
57 * WordPress Database Table prefix.
58 *
59 * You can have multiple installations in one database if you give each
60 * a unique prefix. Only numbers, letters, and underscores please!
61 */
62$table_prefix = 'wp_';
63/**
64 * For developers: WordPress debugging mode.
65 *
66 * Change this to true to enable the display of notices during development.
67 * It is strongly recommended that plugin and theme developers use WP_DEBUG
68 * in their development environments.
69 *
70 * For information on other constants that can be used for debugging,
71 * visit the Codex.
72 *
73 * @link https://codex.wordpress.org/Debugging_in_WordPress
74 */
75define('WP_DEBUG', false);
76/* That's all, stop editing! Happy blogging. */
77/** Absolute path to the WordPress directory. */
78if ( !defined('ABSPATH') )
79 define('ABSPATH', dirname(__FILE__) . '/');
80/** Sets up WordPress vars and included files. */
81
82require_once(ABSPATH . 'wp-settings.php');