· 9 years ago · Dec 15, 2016, 01:34 AM
1/**#@+
2 * Authentication Unique Keys and Salts.
3 *
4 * Change these to different unique phrases!
5 * You can generate these using the {@link https://api.wordpress.org/secret-key/1.1/salt/ WordPress.org secret-key service}
6 * 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.
7 *
8 * @since 2.6.0
9 */
10define('AUTH_KEY', 'put your unique phrase here');
11define('SECURE_AUTH_KEY', 'put your unique phrase here');
12define('LOGGED_IN_KEY', 'put your unique phrase here');
13define('NONCE_KEY', 'put your unique phrase here');
14define('AUTH_SALT', 'put your unique phrase here');
15define('SECURE_AUTH_SALT', 'put your unique phrase here');
16define('LOGGED_IN_SALT', 'put your unique phrase here');
17define('NONCE_SALT', 'put your unique phrase here');
18/**#@-*/
19/**
20 * WordPress Database Table prefix.
21 *
22 * You can have multiple installations in one database if you give each
23 * a unique prefix. Only numbers, letters, and underscores please!
24 */