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