Make WordPress Core


Ignore:
Timestamp:
07/03/2008 05:16:10 PM (16 years ago)
Author:
ryan
Message:

Update sample config to use new cookie keys

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/wp-config-sample.php

    r7971 r8251  
    88define('DB_COLLATE', '');
    99
    10 // Change SECRET_KEY to a unique phrase.  You won't have to remember it later,
    11 // so make it long and complicated.  You can visit http://api.wordpress.org/secret-key/1.0/
    12 // to get a secret key generated for you, or just make something up.
    13 define('SECRET_KEY', 'put your unique phrase here'); // Change this to a unique phrase.
     10// Change each KEY to a different unique phrase.  You won't have to remember the phrases later,
     11// so make them long and complicated.  You can visit http://api.wordpress.org/secret-key/1.1/
     12// to get keys generated for you, or just make something up.  Each key should have a different phrase.
     13define('AUTH_KEY', 'put your unique phrase here'); // Change this to a unique phrase.
     14define('SECURE_AUTH_KEY', 'put your unique phrase here'); // Change this to a unique phrase.
     15define('LOGGED_IN_KEY', 'put your unique phrase here'); // Change this to a unique phrase.
    1416
    1517// You can have multiple installations in one database if you give each a unique prefix
Note: See TracChangeset for help on using the changeset viewer.