From 7740e89de3e1bc0cc636120e3ca8ab9e97e4d3cc Mon Sep 17 00:00:00 2001 From: donncha Date: Fri, 4 Apr 2008 16:44:15 +0000 Subject: Merged with WordPress 2.5, unstable, only for testing git-svn-id: http://svn.automattic.com/wordpress-mu/trunk@1218 7be80a69-a1ef-0310-a953-fb0f7c49ff36 --- wp-config-sample.php | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'wp-config-sample.php') diff --git a/wp-config-sample.php b/wp-config-sample.php index 90de36a..3f1b3e2 100644 --- a/wp-config-sample.php +++ b/wp-config-sample.php @@ -10,6 +10,12 @@ define('DB_COLLATE', ''); define('VHOST', 'VHOSTSETTING'); $base = 'BASE'; +// Change SECRET_KEY to a unique phrase. You won't have to remember it later, +// so make it long and complicated. You can visit https://www.grc.com/passwords.htm +// to get a phrase generated for you, or just make something up. +define('SECRET_KEY', 'put your unique phrase here'); // Change this to a unique phrase. +define('SECRET_SALT', 'put your unique phrase here'); // Change this to a unique phrase. + // double check $base if( $base == 'BASE' ) die( 'Problem in wp-config.php - $base is set to BASE when it should be the path like "/" or "/blogs/"! Please fix it!' ); -- cgit