· 9 years ago · Nov 11, 2016, 05:18 PM
1<?php
2
3/**
4 * The base configuration for WordPress
5 *
6 * The wp-config.php creation script uses this file during the
7 * installation. You don't have to use the web site, you can
8 * copy this file to "wp-config.php" and fill in the values.
9 *
10 * This file contains the following configurations:
11 *
12 * * MySQL settings
13 * * Secret keys
14 * * Database table prefix
15 * * ABSPATH
16 *
17 * @link https://codex.wordpress.org/Editing_wp-config.php
18 *
19 * @package WordPress
20 */
21
22// ** MySQL settings - You can get this info from your web host ** //
23/** The name of the database for WordPress */
24define('DB_NAME', 'ath');
25
26/** MySQL database username */
27define('DB_USER', 'root');
28
29/** MySQL database password */
30define('DB_PASSWORD', '');
31
32/** MySQL hostname */
33define('DB_HOST', 'localhost');
34
35/** Database Charset to use in creating database tables. */
36define('DB_CHARSET', 'utf8mb4');
37
38/** The Database Collate type. Don't change this if in doubt. */
39define('DB_COLLATE', '');
40
41/**#@+
42 * Authentication Unique Keys and Salts.
43 *
44 * Change these to different unique phrases!
45 * You can generate these using the {@link https://api.wordpress.org/secret-key/1.1/salt/ WordPress.org secret-key service}
46 * 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.
47 *
48 * @since 2.6.0
49 */
50define('AUTH_KEY', 's-ol{d)nw!M?D9]g(tW;:fZ(xFZJ!L+@!p 0$IbmSXVwbg-2y9(@t>R+J `JlKV`');
51define('SECURE_AUTH_KEY', '!8],aHub+BQ^EZmFpu6.wl^d$SOWqH;X-F0[4:C1* d?fP8jQ0uu%cm$Z-(LUjd;');
52define('LOGGED_IN_KEY', ':-W(<ed<2GpD~>e45s.q}sx&X?/RfH&!Ymn><d`$.=)OpW1u3FArVycX). y6-as');
53define('NONCE_KEY', '7LBjcB36^O#+Wb47M:T#Zyl_S.hxz+ZSjb_&d?5P[$Mobm]JgEHqa$&%fF(#c;U;');
54define('AUTH_SALT', 'Jv7s=w#XL5Gm<1:~Wte4T+|)To+4?of< *s|$.>TH/i+ktMc(7<%MM%Sa.mIPTC^');
55define('SECURE_AUTH_SALT', 'L6}aNh*9]dT,!)u-T{yM2+Q2gu|149Bf+uRZX5pxLuWt%Hxqfj-bTr[l9qC;i-$)');
56define('LOGGED_IN_SALT', '.#4,Jk03Z7I[|C+dKMqwHzsr-]Et9p~@ke&X apL~L:^EhwBE}B=<s||zKC{+R:-');
57define('NONCE_SALT', 'hc$$r-U&M%9?,6bq&-?!Jt{mNp$oo`xA_Defl7UpCNsz6g=:|-B _ NZs$Y:`*`b');
58
59/**#@-*/
60
61/**
62 * WordPress Database Table prefix.
63 *
64 * You can have multiple installations in one database if you give each
65 * a unique prefix. Only numbers, letters, and underscores please!
66 */
67$table_prefix = 'NJu48_';
68
69/**
70 * For developers: WordPress debugging mode.
71 *
72 * Change this to true to enable the display of notices during development.
73 * It is strongly recommended that plugin and theme developers use WP_DEBUG
74 * in their development environments.
75 *
76 * For information on other constants that can be used for debugging,
77 * visit the Codex.
78 *
79 * @link https://codex.wordpress.org/Debugging_in_WordPress
80 */
81define('WP_DEBUG', true);
82define('WP_DEBUG_LOG', true);
83define('WP_DEBUG_DISPLAY', true);
84define('WP_ALLOW_MULTISITE', true);
85define('MULTISITE', true);
86define('SUBDOMAIN_INSTALL', false);
87define('DOMAIN_CURRENT_SITE', 'localhost');
88define('PATH_CURRENT_SITE', '/ath/');
89define('SITE_ID_CURRENT_SITE', 1);
90define('BLOG_ID_CURRENT_SITE', 1);
91// define('DISALLOW_FILE_MODS',true);
92
93/* That's all, stop editing! Happy blogging. */
94
95/** Absolute path to the WordPress directory. */
96if ( !defined('ABSPATH') )
97 define('ABSPATH', dirname(__FILE__) . '/');
98
99/** Sets up WordPress vars and included files. */
100require_once(ABSPATH . 'wp-settings.php');