· 7 years ago · Jun 22, 2018, 06:16 PM
1# Database configuration for the website https://kalidy.com
2# https://ghostbin.com/paste/5jn49
3# https://mega.nz/#F!F641jIIZ!XwX0rbgi9a9J2PyVzSfrlg
4
5<?php
6/**
7 * The base configuration for WordPress
8 *
9 * The wp-config.php creation script uses this file during the
10 * installation. You don't have to use the web site, you can
11 * copy this file to "wp-config.php" and fill in the values.
12 *
13 * This file contains the following configurations:
14 *
15 * * MySQL settings
16 * * Secret keys
17 * * Database table prefix
18 * * ABSPATH
19 *
20 * @link https://codex.wordpress.org/Editing_wp-config.php
21 *
22 * @package WordPress
23 */
24
25// ** MySQL settings ** //
26/** The name of the database for WordPress */
27define( 'DB_NAME', 'forge' );
28
29/** MySQL database username */
30define( 'DB_USER', 'forge' );
31
32/** MySQL database password */
33define( 'DB_PASSWORD', 'Zn2bXeHPHFwgSVy58FqG' );
34
35/** MySQL hostname */
36define( 'DB_HOST', 'localhost' );
37
38/** Database Charset to use in creating database tables. */
39define( 'DB_CHARSET', 'utf8' );
40
41/** The Database Collate type. Don't change this if in doubt. */
42define( 'DB_COLLATE', '' );
43
44/**
45 * Authentication Unique Keys and Salts.
46 *
47 * Change these to different unique phrases!
48 * You can generate these using the {@link https://api.wordpress.org/secret-key/1.1/salt/ WordPress.org secret-key service}
49 * 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.
50 *
51 * @since 2.6.0
52 */
53define('AUTH_KEY', ')kg<FKrQr*:W6 zKy{`p7Z}:x!6!YKR[+*Xv&/|EG`n>ljePzo|-,,D,rwS<7:G,');
54define('SECURE_AUTH_KEY', 'gh;_||1Z<|56n4n2bGy>?Ia!]M^~eM]7Co+:C$C2a/G2#OXkYe*xID;+B#7v]UZo');
55define('LOGGED_IN_KEY', 'xEuq,&1D1<80m 5PJ92P3!VS3BidJOd/$6M|O#/?QjRUU[LwHW|UMbK<bKO2KfT_');
56define('NONCE_KEY', '%f8rE{@F%7(J[1R$YM9hpU<c<[2@&^{e6hGNh+!bm(U:ETPe.C_.!`$1kc`W.;qr');
57define('AUTH_SALT', 'Kco$+Q1F.ZY7T1G+aD+Asy#S&snQ#hQFs4Q!U M@FQ39XDS]59S1r*kEmR-~y|pd');
58define('SECURE_AUTH_SALT', 'C>%cj->r^@*vw}M/r+}0OFVh&V-IO(XP0>P+K!XV}KP+iP7ei;f/G{!p2X$Mx,A0');
59define('LOGGED_IN_SALT', 'fBu#[w&kM+UNdoj[1E8Q09w.A!yeE|D*Fia*8Ss)yH$.v7NcfUiM/,Q2t$/rLSI`');
60define('NONCE_SALT', 'NE~&Zh7IK1g|DkS NRJ[Zw9+5jxF$n-P=4>g|,CAsUbXsMZgNh]RlbJ3K W~i0!x');
61
62
63/**
64 * WordPress Database Table prefix.
65 *
66 * You can have multiple installations in one database if you give each
67 * a unique prefix. Only numbers, letters, and underscores please!
68 */
69$table_prefix = 'kal_';
70
71
72define( 'WP_ALLOW_MULTISITE', true );
73define('MULTISITE', true);
74define('SUBDOMAIN_INSTALL', true);
75//define('DOMAIN_CURRENT_SITE', 'weare.renaldi-sim.com');
76define('PATH_CURRENT_SITE', '/');
77define('SITE_ID_CURRENT_SITE', 1);
78define('BLOG_ID_CURRENT_SITE', 1);
79define( 'COOKIE_DOMAIN', $_SERVER[ 'HTTP_HOST' ] );
80
81/* That's all, stop editing! Happy blogging. */
82
83/** Absolute path to the WordPress directory. */
84if ( ! defined( 'ABSPATH' ) )
85 define( 'ABSPATH', dirname( __FILE__ ) . '/' );
86
87/** Sets up WordPress vars and included files. */
88require_once ABSPATH . 'wp-settings.php';