· 7 years ago · Sep 10, 2018, 08:20 AM
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', 'ctgdotne_wp');
20
21/** MySQL database username */
22/**define('DB_USER', 'ctgdotne_wp');**/
23define('DB_USER', 'root');
24
25/** MySQL database password */
26/**define('DB_PASSWORD', 'FkadKKBqvUrd65');**/
27define('DB_PASSWORD', 'toor');
28
29/** MySQL hostname */
30define('DB_HOST', 'mysql');
31
32/** Database Charset to use in creating database tables. */
33define('DB_CHARSET', 'utf8');
34
35/** The Database Collate type. Don't change this if in doubt. */
36define('DB_COLLATE', '');
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', ',oX!}jn@z+w+8dH,B%u<kZ0[3/|AC>3eRuIKad}v4%6/G2gbJv2+E&+9[LFLC>%0');
48define('SECURE_AUTH_KEY', '-]@8n}]]VxbQ%m188VWo6>1(OmLs6zi2n{7TO(V020m#sc@ws~n+ger{7@Ag3|zx');
49define('LOGGED_IN_KEY', '|1;]:L{MI@1_<.5s~@:5@-sARAF2z63#Z2%M!hmZ;C5{7Uy+Z+9*=j&JS}BP@]Uf');
50define('NONCE_KEY', 'AtfxEov&8~GnT?a#^}SA3xE23^Gk0FX?l-3j$[Hh+JHYYRASR+RsLHMNK-Cm|XM.');
51define('AUTH_SALT', 'ft+Wckfm#oW(H`#E6_oubaL,l|#6znX$E|Ds&@x3?.xv~mp+GDlKO}BXK_e/e>D^');
52define('SECURE_AUTH_SALT', ' v8Zpp561<%*7E:7VW1{K=o*3Xn^EisDN@DV.0bc(JC+).5ms9>K~-UfK622R>jd');
53define('LOGGED_IN_SALT', '(^J=q_ %|OT,QD4yW~jP7|}_F4+n.4zf[co@K*dDrouNT*.(-duep}_Mn d{?~6z');
54define('NONCE_SALT', 'j!WlfC WqPFzHk=3~<A{:[cPUeWUm8$_J`nL&T?u;qkYa(G5`W)@Ss|69Un$=3aK');
55
56/**#@-*/
57
58/**
59 * WordPress Database Table prefix.
60 *
61 * You can have multiple installations in one database if you give each a unique
62 * prefix. Only numbers, letters, and underscores please!
63 */
64$table_prefix = 'wp_';
65
66/**
67 * WordPress Localized Language, defaults to English.
68 *
69 * Change this to localize WordPress. A corresponding MO file for the chosen
70 * language must be installed to wp-content/languages. For example, install
71 * de_DE.mo to wp-content/languages and set WPLANG to 'de_DE' to enable German
72 * language support.
73 */
74define('WPLANG', '');
75
76/**
77 * For developers: WordPress debugging mode.
78 *
79 * Change this to true to enable the display of notices during development.
80 * It is strongly recommended that plugin and theme developers use WP_DEBUG
81 * in their development environments.
82 */
83define('WP_DEBUG', false);
84
85/* That's all, stop editing! Happy blogging. */
86
87/** Absolute path to the WordPress directory. */
88if ( !defined('ABSPATH') )
89 define('ABSPATH', dirname(__FILE__) . '/');
90define('FS_METHOD', 'direct');
91/** Sets up WordPress vars and included files. */
92require_once(ABSPATH . 'wp-settings.php');