forked from linnovate/rootpress
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathwp-config.php
More file actions
64 lines (45 loc) · 2.17 KB
/
wp-config.php
File metadata and controls
64 lines (45 loc) · 2.17 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
<?php
// ** MySQL settings ** //
/** The name of the database for WordPress */
define('DB_NAME', 'wp_mdemo');
/** MySQL database username */
define('DB_USER', 'wp_mdemo');
/** MySQL database password */
define('DB_PASSWORD', 'EPF4Kzyhs4cRVL47');
/** MySQL hostname */
define('DB_HOST', 'localhost');
/** Database Charset to use in creating database tables. */
define('DB_CHARSET', 'utf8');
/** The Database Collate type. Don't change this if in doubt. */
define('DB_COLLATE', '');
define('AUTH_KEY', 'R}YIi.k}CG|y|6^OM=gs7b]!9f2)bP 57u-s-Z#0ySln>x#NM@V&ED^NLc03!bY#');
define('SECURE_AUTH_KEY', '|tb%lyouo+Xwxix?6THaj+~-g9I1RJ&T}5u-0l7Nb0b`LK!5P+o5;,`3(!bG9+b|');
define('LOGGED_IN_KEY', 'zx X/tv2+/v5(l|lMYv6Nq,-Ts<1xsj*/e7,q<qt2(NNx|rl>Ee quK+x`_cz6G(');
define('NONCE_KEY', 'v(E^;!_d4](GS[sk5IwP:Lxz `@Dh+Q7>~yDrLH:=`LUO8V[h-:~?e#knZYG5_|-');
define('AUTH_SALT', ',Xcf,-f+GkB:DrPeRm&=Wt:=a^> |^w>+Gvt) X)4|jYiI>D_|*y~x6jBE{=y-;m');
define('SECURE_AUTH_SALT', '^BTI,%@D_vA+-{ki=p+x0);T.-{/|VCPiJqS#~%PE/Z)DlUy$.*_`)(?JR5`@~XF');
define('LOGGED_IN_SALT', 'RmCii(Nd}dI]gi;poOeONAp9[{3{</^/8X]L7NjkMy- E3,LsvM_|HI_&Off1Vq/');
define('NONCE_SALT', '|_`B.LGTBz<[(Zn.%~+p_N!zYE/{hngd.B3Z9.|a,+{o/Ip]]7lRA%9@:++|;$pO');
$table_prefix = 'wp_';
define( 'WP_ALLOW_MULTISITE', true );
define( 'MULTISITE', true );
define( 'SUBDOMAIN_INSTALL', false );
$base = '/';
define( 'DOMAIN_CURRENT_SITE', 'demo.linnovate.net' );
define( 'PATH_CURRENT_SITE', '/' );
define( 'SITE_ID_CURRENT_SITE', 1 );
define( 'BLOG_ID_CURRENT_SITE', 1 );/* That's all, stop editing! Happy blogging. */
/** Absolute path to the WordPress directory. */
if ( !defined('ABSPATH') )
define('ABSPATH', dirname(__FILE__) . '/');
// StackSight start config
$ss_inc = dirname(__FILE__) . '/wp-content/plugins/stacksight/stacksight-php-sdk/bootstrap-wp.php';
if(is_file($ss_inc)) {
define('STACKSIGHT_TOKEN', 'ss-d6502862bfcdb2813fdd71aa805c5b2bad47e71ec84275d360afc554518a0459');
define('STACKSIGHT_DEBUG', true);
define('STACKSIGHT_GROUP', 'michlala-ms');
require_once($ss_inc);
}
// StackSight end config
/** Sets up WordPress vars and included files. */
require_once(ABSPATH . 'wp-settings.php');