· 7 years ago · Mar 09, 2018, 09:12 PM
1<?php
2
3/**
4* The base configurations of the WordPress.
5*
6* This file has the following configurations: MySQL settings, Table Prefix,
7* Secret Keys, WordPress Language, and ABSPATH. You can find more information
8* by visiting {@link http://codex.wordpress.org/Editing_wp-config.php Editing
9* wp-config.php} Codex page. You can get the MySQL settings from your web host.
10*
11* This file is used by the wp-config.php creation script during the
12* installation. You don't have to use the web site, you can just copy this file
13* to "wp-config.php" and fill in the values.
14*
15* @package WordPress
16*/
17
18// ** MySQL settings - You can get this info from your web host ** //
19/** The name of the database for WordPress */
20define('DB_NAME', 'dbactivi_wp366');
21
22/** MySQL database username */
23define('DB_USER', 'dbactivi_wp366');
24
25/** MySQL database password */
26define('DB_PASSWORD', 'h6oa6P9l2S');
27
28/** MySQL hostname */
29define('DB_HOST', 'localhost');
30
31/** Database Charset to use in creating database tables. */
32define('DB_CHARSET', 'utf8');
33
34/** The Database Collate type. Don't change this if in doubt. */
35define('DB_COLLATE', '');
36
37/**#@+
38* Authentication Unique Keys and Salts.
39*
40* Change these to different unique phrases!
41* You can generate these using the {@link https://api.wordpress.org/secret-key/1.1/salt/ WordPress.org secret-key service}
42* 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.
43*
44* @since 2.6.0
45*/
46define('AUTH_KEY', 'wjkfzcxixxytnbpbog20iz0z0cuijpbrfjjcwd5b6jpv8smrsa2b1xjddefkj3jq');
47define('SECURE_AUTH_KEY', 'qktkggsqk1qtjj8hr63z1ldhzhca7bkwnikuz47gm44xx4sa4lhmtv6f9zkt7geh');
48define('LOGGED_IN_KEY', '9ke1hq2la8vqjrr2neyh73map2m9cpg4nb2jtdppmcxl3d1wovuopqxlfzdgihod');
49define('NONCE_KEY', 'q2khrt1amitnuuma6h8ttv8kalgrklq8kog988rpuq6yxrsokrjuwsvikhjlcdq2');
50define('AUTH_SALT', 'vghziprv5lr6tgfmjaqfzclwdvm9ty2emknlfe83pt4yxlvv2k4hzzru656svqpq');
51define('SECURE_AUTH_SALT', 'tuubws40riwij4rgi9qxg2akhbfrm0miytaikwrsipnjmke9tlcr2nfqxggowybd');
52define('LOGGED_IN_SALT', 'ryjyju8amc3dslkczrkzhp4tewogzxqmjqvr6si0jcukfudfsyz0vl6128am17tf');
53define('NONCE_SALT', 'kqogns6nm0qjastlffnbcktik12k2owuwjsmrw0ceqveookyfcximjllixfvs41r');
54
55/**#@-*/
56
57/**
58* WordPress Database Table prefix.
59*
60* You can have multiple installations in one database if you give each a unique
61* prefix. Only numbers, letters, and underscores please!
62*/
63$table_prefix = 'st_';
64
65/**
66* WordPress Localized Language, defaults to English.
67*
68* Change this to localize WordPress. A corresponding MO file for the chosen
69* language must be installed to wp-content/languages. For example, install
70* de_DE.mo to wp-content/languages and set WPLANG to 'de_DE' to enable German
71* language support.
72*/
73define ('WPLANG', '');
74
75/**
76* For developers: WordPress debugging mode.
77*
78* Change this to true to enable the display of notices during development.
79* It is strongly recommended that plugin and theme developers use WP_DEBUG
80* in their development environments.
81*/
82define('WP_DEBUG', false);
83
84/* That's all, stop editing! Happy blogging. */
85
86/** Absolute path to the WordPress directory. */
87if ( !defined('ABSPATH') )
88define('ABSPATH', dirname(__FILE__) . '/');
89
90/** Sets up WordPress vars and included files. */
91require_once(ABSPATH . 'wp-settings.php');