· 6 years ago · Oct 06, 2019, 06:22 PM
1<?php
2/**
3 * The base configurations of the WordPress.
4 *
5 * This file has the following configurations: MySQL settings, Table Prefix,
6 * Secret Keys, and ABSPATH. You can find more information by visiting
7 * {@link http://codex.wordpress.org/Editing_wp-config.php Editing wp-config.php}
8 * Codex page. You can get the MySQL settings from your web host.
9 *
10 * This file is used by the wp-config.php creation script during the
11 * installation. You don't have to use the web site, you can just copy this file
12 * to "wp-config.php" and fill in the values.
13 *
14 * @package WordPress
15 */
16define('WP_MEMORY_LIMIT', '64M');
17
18// ** MySQL settings - You can get this info from your web host ** //
19/** The name of the database for WordPress */
20define('DB_NAME', 'imad_wp');
21
22/** MySQL database username */
23define('DB_USER', 'imadoulh_wp');
24
25/** MySQL database password */
26define('DB_PASSWORD', 'j$2s&KRK');
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', 'N3Ih8d40GJHCV1KCwR6coLnmjvQLFTHP08m8o30iUgFPuwDzySr3zh2LnCIt9aDB');
47define('SECURE_AUTH_KEY', 'RyiPHTHDbi3iEOJZ3tpqSEg6hEPWCDNsC1hAWPiOnBBN9Ah5WMGH2xZ8WeWEpHJU');
48define('LOGGED_IN_KEY', 'xwNQkc1LuCCygeWcYZvKmcwrB2AyCCy1QyIxQXPyPOsEndD9ZP58aPVR2jRuqq6O');
49define('NONCE_KEY', 'nwU7AzPZDYHlfoOftOWPYWX7brnKcmgguwtLiDn5G0QM20XLLAr2EM4bxoxb2t2b');
50define('AUTH_SALT', 'rHfcTzdUiDfcb7o5UVuBMRXiPETSXn9Ntayz5OWG6tWmO7KJTRTQO7XzZVfyyT4u');
51define('SECURE_AUTH_SALT', 'wZd6ARupi4DzvLbtI4KTsQcYIzNB9CTTfIlPW0bGfSWM6o8PZsIcQ6XlSGyhH2IT');
52define('LOGGED_IN_SALT', 'Lv022GhZPuRYOWgCm0j4mwJ6jFlvZAq2msUVmA0EiaK6vWp11gx0HR5ReQXNdcT4');
53define('NONCE_SALT', 'hmtBdOXPAyBg80eYcVUy2HmGanX8k9iDA0smdJfSf3nX40exBe9vrkdJx78uRFEV');
54
55/**
56 * Other customizations.
57 */
58define('FS_METHOD','direct');define('FS_CHMOD_DIR',0755);define('FS_CHMOD_FILE',0644);
59define('WP_TEMP_DIR',dirname(__FILE__).'/wp-content/uploads');
60
61/**
62 * Turn off automatic updates since these are managed upstream.
63 */
64define('AUTOMATIC_UPDATER_DISABLED', true);
65
66
67/**#@-*/
68
69/**
70 * WordPress Database Table prefix.
71 *
72 * You can have multiple installations in one database if you give each a unique
73 * prefix. Only numbers, letters, and underscores please!
74 */
75$table_prefix = 'wp_';
76
77/**
78 * For developers: WordPress debugging mode.
79 *
80 * Change this to true to enable the display of notices during development.
81 * It is strongly recommended that plugin and theme developers use WP_DEBUG
82 * in their development environments.
83 */
84define('WP_DEBUG', false);
85
86/* That's all, stop editing! Happy blogging. */
87
88/** Absolute path to the WordPress directory. */
89if ( !defined('ABSPATH') )
90 define('ABSPATH', dirname(__FILE__) . '/');
91
92/** Sets up WordPress vars and included files. */
93require_once(ABSPATH . 'wp-settings.php');
94define( 'WP_ALLOW_REPAIR', true );