summaryrefslogtreecommitdiffstats
path: root/wp-config-sample.php
diff options
context:
space:
mode:
authordonncha <donncha@7be80a69-a1ef-0310-a953-fb0f7c49ff36>2008-04-04 16:44:15 +0000
committerdonncha <donncha@7be80a69-a1ef-0310-a953-fb0f7c49ff36>2008-04-04 16:44:15 +0000
commit7740e89de3e1bc0cc636120e3ca8ab9e97e4d3cc (patch)
treec6fd23b598f3994eddb18cb1c0f2e8d95ff054fa /wp-config-sample.php
parentf650f48c048bfbbb2ae702b6425d87e39358d748 (diff)
downloadwordpress-mu-7740e89de3e1bc0cc636120e3ca8ab9e97e4d3cc.tar.gz
wordpress-mu-7740e89de3e1bc0cc636120e3ca8ab9e97e4d3cc.tar.xz
wordpress-mu-7740e89de3e1bc0cc636120e3ca8ab9e97e4d3cc.zip
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
Diffstat (limited to 'wp-config-sample.php')
-rw-r--r--wp-config-sample.php6
1 files changed, 6 insertions, 0 deletions
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!' );