· 7 years ago · Oct 15, 2018, 01:20 PM
1<?php
2/**
3 * The base configuration for WordPress
4 *
5 * The wp-config.php creation script uses this file during the
6 * installation. You don't have to use the web site, you can
7 * copy this file to "wp-config.php" and fill in the values.
8 *
9 * This file contains the following configurations:
10 *
11 * * MySQL settings
12 * * Secret keys
13 * * Database table prefix
14 * * ABSPATH
15 *
16 * @link https://codex.wordpress.org/Editing_wp-config.php
17 *
18 * @package WordPress
19 */
20
21// ** MySQL settings ** //
22/** The name of the database for WordPress */
23define( 'DB_NAME', 'gemlelogenie' );
24
25/** MySQL database username */
26define( 'DB_USER', 'dzmitrock' );
27
28/** MySQL database password */
29define( 'DB_PASSWORD', 's' );
30
31/** MySQL hostname */
32define( 'DB_HOST', 'localhost' );
33
34/** Database Charset to use in creating database tables. */
35define( 'DB_CHARSET', 'utf8' );
36
37/** The Database Collate type. Don't change this if in doubt. */
38define( 'DB_COLLATE', '' );
39
40/**
41 * Authentication Unique Keys and Salts.
42 *
43 * Change these to different unique phrases!
44 * You can generate these using the {@link https://api.wordpress.org/secret-key/1.1/salt/ WordPress.org secret-key service}
45 * 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.
46 *
47 * @since 2.6.0
48 */
49define( 'AUTH_KEY', 'h^~Dl5D?W{sF$/;OK.YK{],tvVI|d5-X[rh<]mvoKj <5S#,,J;9[Vm[U&E2Do^:' );
50define( 'SECURE_AUTH_KEY', 'GHvUmII<snJQt{l74pLO_t{nhr>/Ur<tI({+_6H2Y=W0t;Zk,F<ymsRjk=Jdk~wP' );
51define( 'LOGGED_IN_KEY', 'lIdz%U3&NRE5;;s-tI[T<@|$/:|5<%a!y26%lTh)FO@>/s7 *xUB^7rJ6CH[a[*p' );
52define( 'NONCE_KEY', '3-|/?6=ELC]v+E8M+:QnOw2|W77v1jQd],$H(#6nrOd8%(GNG?snGeaK5]IN}0yf' );
53define( 'AUTH_SALT', 'O:@ET0S_EJ09lp5o7wxGv7`)?&-.U&vZ5,vBm;bPSrL04?eDOWSrotC8B}T-`}WJ' );
54define( 'SECURE_AUTH_SALT', 'CAGQ(q=t:1F3~fHbdh8k#]d|:*?ML$SLqa1,@2TX5hrEc/Ni{vmH9OYn2<]8}0Gp' );
55define( 'LOGGED_IN_SALT', '3j=T*[ c6y-:{zdJA|N)Tq_$>t3N9-2/:#;Z9Le.j^ Vc /l=7>5DE;aDJu@Cc8|' );
56define( 'NONCE_SALT', '0ZtbmRfyLA4B~<IL,c0bW$,|Op`s>XtuyX+~n07wBp{@,XsehH{2?FdQx!=)CFcX' );
57define( 'WP_CACHE_KEY_SALT', '^%f%h:1PT8qRq}=HY!DQei[kKmoIhld8gXdo|js6>9CfM|T%s4$7+jP7nEF5M(x3' );
58
59/**
60 * WordPress Database Table prefix.
61 *
62 * You can have multiple installations in one database if you give each
63 * a unique prefix. Only numbers, letters, and underscores please!
64 */
65$table_prefix = 'wp_';
66
67define('WP_DEBUG', false);
68
69
70
71define('MULTISITE', true);
72define('SUBDOMAIN_INSTALL', false);
73define('DOMAIN_CURRENT_SITE', 'localhost');
74define('PATH_CURRENT_SITE', '/gamlelegenie.loc/');
75define('SITE_ID_CURRENT_SITE', 1);
76define('BLOG_ID_CURRENT_SITE', 1);
77
78define( 'WP_ALLOW_MULTISITE', true );
79
80
81
82/* That's all, stop editing! Happy blogging. */
83
84/** Absolute path to the WordPress directory. */
85if ( ! defined( 'ABSPATH' ) )
86 define( 'ABSPATH', dirname( __FILE__ ) . '/' );
87
88/** Sets up WordPress vars and included files. */
89require_once ABSPATH . 'wp-settings.php';
90
91define('FS_METHOD', 'direct');