Changeset 13026 for trunk/wp-config-sample.php
- Timestamp:
- 02/08/2010 06:15:44 PM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-config-sample.php
r12733 r13026 35 35 36 36 /**#@+ 37 * Authentication Unique Keys .37 * Authentication Unique Keys and Salts. 38 38 * 39 39 * Change these to different unique phrases! 40 * You can generate these using the {@link https://api.wordpress.org/secret-key/1.1/ WordPress.org secret-key service}40 * You can generate these using the {@link https://api.wordpress.org/secret-key/1.1/?salt=1 WordPress.org secret-key service} 41 41 * 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. 42 42 * 43 43 * @since 2.6.0 44 44 */ 45 define('AUTH_KEY', 'put your unique phrase here'); 46 define('SECURE_AUTH_KEY', 'put your unique phrase here'); 47 define('LOGGED_IN_KEY', 'put your unique phrase here'); 48 define('NONCE_KEY', 'put your unique phrase here'); 45 define('AUTH_KEY', 'put your unique phrase here'); 46 define('SECURE_AUTH_KEY', 'put your unique phrase here'); 47 define('LOGGED_IN_KEY', 'put your unique phrase here'); 48 define('NONCE_KEY', 'put your unique phrase here'); 49 define('AUTH_SALT', 'put your unique phrase here'); 50 define('SECURE_AUTH_SALT', 'put your unique phrase here'); 51 define('LOGGED_IN_SALT', 'put your unique phrase here'); 52 define('NONCE_SALT', 'put your unique phrase here'); 53 49 54 /**#@-*/ 50 55
Note: See TracChangeset
for help on using the changeset viewer.