· 7 years ago · Jan 03, 2019, 11:34 PM
1
2text/x-generic wp-config.php ( PHP script text )
3<?php
4/**
5 * The base configurations of the WordPress.
6 *
7 * This file has the following configurations: MySQL settings, Table Prefix,
8 * Secret Keys, and ABSPATH. You can find more information by visiting
9 * {@link https://codex.wordpress.org/Editing_wp-config.php Editing wp-config.php}
10 * 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// ** MySQL settings - You can get this info from your web host ** //
19/** The name of the database for WordPress */
20define('DB_NAME', 'sindi153_db');
21/** MySQL database username */
22define('DB_USER', 'sindi153_root');
23/** MySQL database password */
24define('DB_PASSWORD', '2Uhoc6DAkawA');
25/** MySQL hostname */
26define('DB_HOST', 'localhost');
27/** Database Charset to use in creating database tables. */
28define('DB_CHARSET', 'utf8mb4');
29/** The Database Collate type. Don't change this if in doubt. */
30define('DB_COLLATE', '');
31/**#@+
32 * Authentication Unique Keys and Salts.
33 *
34 * Change these to different unique phrases!
35 * You can generate these using the {@link https://api.wordpress.org/secret-key/1.1/salt/ WordPress.org secret-key service}
36 * 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.
37 *
38 * @since 2.6.0
39 */
40define('AUTH_KEY', 'w^%w=T``&}d~9uD{YsEyyyR_ ZYxCtYt<[M4U+7NrL8~)x!p;*(p!.1d)X|xj$pZ');
41define('SECURE_AUTH_KEY', 'Y4tB>}:,4mv<#Msmju4C*K!qB?(%VpKD(9h,|O5Ka0+*q<|~(Hrj0Vz#R;-lRE#[');
42define('LOGGED_IN_KEY', '?,e+(wBeady1P+(W`{]mW(~@{O+Xs;v&=t>yiC|G7LJ*@|Q^oUYl52}bKOU3Ws$(');
43define('NONCE_KEY', '@yEcHX1DvQ.nct+MDiITQcc$-gR+O;2OM?M-Hx8xjxG,u{H|(y+_=Dx|w5J})(ri');
44define('AUTH_SALT', ' |szj!2+so;2h|+@fJRrak&ZU_upF--dAF5LkcZ]a{%pGO:(JJ(,AaB&}lz|UfN0');
45define('SECURE_AUTH_SALT', '{9@lh_log~m6|E>p[%(Vo}NxG-C)3Ct,e_p7K3#W<-M@&k>!%7U5U($*6Z%Ja7nR');
46define('LOGGED_IN_SALT', 'cUlX};MyK(qjG>M#.BMYkav;]@5jFpAo(1Uql+De6!4/+d#0q%Ybb |g1-+JQ*rE');
47define('NONCE_SALT', '8KXsyGbWp}a-zi-l_o!?>0FabB%a2.wQ{vK@q7-Lvx+C9PO/GlC;NC$}m+Eid>IR');
48/**#@-*/
49/**
50 * WordPress Database Table prefix.
51 *
52 * You can have multiple installations in one database if you give each a unique
53 * prefix. Only numbers, letters, and underscores please!
54 */
55$table_prefix = 'wp_';
56/**
57 * For developers: WordPress debugging mode.
58 *
59 * Change this to true to enable the display of notices during development.
60 * It is strongly recommended that plugin and theme developers use WP_DEBUG
61 * in their development environments.
62 */
63define('WP_DEBUG', false);
64/* That's all, stop editing! Happy blogging. */
65/** Absolute path to the WordPress directory. */
66if ( !defined('ABSPATH') )
67 define('ABSPATH', dirname(__FILE__) . '/');
68/** Sets up WordPress vars and included files. */
69require_once(ABSPATH . 'wp-settings.php');
70/** Fix for HTTP error when uploading images */
71define( 'WP_MEMORY_LIMIT', '256M' );