WordPress configuration file: wp-config.php
After WordPress installation, please modify the wp-config.php in the root directory of WordPress, the original part is like:
// Change each KEY to a different unique phrase. You won’t have to remember the phrases later,
// so make them long and complicated. You can visit http://api.wordpress.org/secret-key/1.1/
// to get keys generated for you, or just make something up. Each key should have a different phrase.
define(‘AUTH_KEY’, ‘put your unique phrase here’); // Change this to a unique phrase.
define(‘SECURE_AUTH_KEY’, ‘put your unique phrase here’); // Change this to a unique phrase.
define(‘LOGGED_IN_KEY’, ‘put your unique phrase here’); // Change this to a unique phrase.
According to the notes, visit http://api.wordpress.org/secret-key/1.1/
Get your unique key, maybe it looks like
define(‘AUTH_KEY’, ‘jbT[&w<@&0xCg3LC7Sy4OF-4F=Lr7}AO`B\’taCDYA1bXNG@Q_4^Fr[~)uX4′);
define(‘SECURE_AUTH_KEY’, ‘$n[\”P11E\’mxhSyNoPyS\”>SA|VRQ4dUOY;y;#NM*aN-xIv{.G+Sryw;AnGg|evUc~’);
define(‘LOGGED_IN_KEY’, ‘`f-1jets5W*Ou)XT+uD\’`#RFdTgk4GCK$U^Qp\”-_jPr p{Xy/O~ |0)3o9BLQoQ0′);
it’s very cool! Can you make so complicated string?
Then, modify your new wp-config.php with those string, upload it by ftp.
When you manage your WordPress site, you need login again because of those modification.