· 9 years ago · Sep 13, 2016, 04:58 AM
1<?php
2define( 'WP_AUTO_UPDATE_CORE', false );
3define('WP_MEMORY_LIMIT', '512M');
4/**
5 * The base configurations of the WordPress.
6 *
7 * This file has the following configurations: MySQL settings, Table Prefix,
8 * Secret Keys, WordPress Language, and ABSPATH. You can find more information
9 * by visiting {@link http://codex.wordpress.org/Editing_wp-config.php Editing
10 * wp-config.php} Codex page. You can get the MySQL settings from your web host.
11 *
12 * This file is used by the wp-config.php creation script during the
13 * installation. You don't have to use the web site, you can just copy this file
14 * to "wp-config.php" and fill in the values.
15 *
16 * @package WordPress
17 */
18
19// ** MySQL settings - You can get this info from your web host ** //
20/** The name of the database for WordPress */
21define('DB_NAME', 'vulpacule');
22
23/** MySQL database username */
24define('DB_USER', 'root');
25
26/** MySQL database password */
27define('DB_PASSWORD', 'J@ngkr!kB005');
28
29/** MySQL hostname */
30define('DB_HOST', 'localhost');
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', '-l)8oPM|H}4d/;]1%,iUH]rY<IHd[YL)eX6gOsC7qp3Mziyq*MWufQHId20pjBW!');
48define('SECURE_AUTH_KEY', '|KzG(N-|_3w9gf1?_g/Q|`@MxX9zxD1:b-qF2L[,?7F4+%Ig6/Ap{xt?O;`CCnD^');
49define('LOGGED_IN_KEY', 'Cw=$^BV:B%-bKgszstz~IWigs*-pz}^Hqnyz^7OmVImB,N@l|>#w*v0j)o^Z|61|');
50define('NONCE_KEY', 'av0x?d2J;}l0o9R<D`E%]p^KSk,LQ}k&<NuO/H/(r4$-r_ @;TZ2S-Z+DbVoQ`r ');
51define('AUTH_SALT', 'LpfJ{xO H?SvFd3| /+KiJ[Zgbk2K9>SLlp-@94}BgxGA2?xbm*:VP-n5FcIjgVp');
52define('SECURE_AUTH_SALT', '~p1um6|&TblrpH-$i!JlmYGKi<&`m{z5Jm+YV^m7,KDNPemX<:Xhp+#-f9P|0Mh8');
53define('LOGGED_IN_SALT', 'Y-n{;%!+d|?Gu%gQG xgf;mzbso0p-#%_-]::cK+<u07jemia2W 3;yZE1s_/seD');
54define('NONCE_SALT', 'h#&cdko-n-Px;<BQd~(3s8m1K$!<?s;|#!~!I}=Mp?lH|,38CuB|3|x:O8q:c+;M');
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/* Multisite */
66define('WP_ALLOW_MULTISITE', true);
67define('MULTISITE', true);
68define('SUBDOMAIN_INSTALL', false);
69define('DOMAIN_CURRENT_SITE', 'www.victoriabank.co.id');
70define('PATH_CURRENT_SITE', '/');
71define('SITE_ID_CURRENT_SITE', 1);
72define('BLOG_ID_CURRENT_SITE', 1);
73/**
74 * WordPress Localized Language, defaults to English.
75 *
76 * Change this to localize WordPress. A corresponding MO file for the chosen
77 * language must be installed to wp-content/languages. For example, install
78 * de_DE.mo to wp-content/languages and set WPLANG to 'de_DE' to enable German
79 * language support.
80 */
81define('WPLANG', '');
82
83/* Switch off core auto update */
84define( 'WP_AUTO_UPDATE_CORE', false );
85
86/**
87 * For developers: WordPress debugging mode.
88 *
89 * Change this to true to enable the display of notices during development.
90 * It is strongly recommended that plugin and theme developers use WP_DEBUG
91 * in their development environments.
92 */
93define('WP_DEBUG', false);
94
95/* That's all, stop editing! Happy blogging. */
96
97/** Absolute path to the WordPress directory. */
98if ( !defined('ABSPATH') )
99 define('ABSPATH', dirname(__FILE__) . '/');
100
101/** Sets up WordPress vars and included files. */
102require_once(ABSPATH . 'wp-settings.php');