]> scripts.mit.edu Git - autoinstalls/wordpress.git/blobdiff - wp-config-sample.php
Wordpress 2.6.2-scripts
[autoinstalls/wordpress.git] / wp-config-sample.php
index b59fd048feba3de4b422bb607ca84848dd503f48..f557e6d05ebe7d0af501b52465af5d60a1e392a3 100644 (file)
@@ -7,10 +7,12 @@ define('DB_HOST', 'localhost');    // 99% chance you won't need to change this v
 define('DB_CHARSET', 'utf8');\r
 define('DB_COLLATE', '');\r
 \r
-// Change SECRET_KEY to a unique phrase.  You won't have to remember it later,\r
-// so make it long and complicated.  You can visit http://api.wordpress.org/secret-key/1.0/\r
-// to get a secret key generated for you, or just make something up.\r
-define('SECRET_KEY', 'put your unique phrase here'); // Change this to a unique phrase.\r
+// Change each KEY to a different unique phrase.  You won't have to remember the phrases later,\r
+// so make them long and complicated.  You can visit http://api.wordpress.org/secret-key/1.1/\r
+// to get keys generated for you, or just make something up.  Each key should have a different phrase.\r
+define('AUTH_KEY', 'put your unique phrase here'); // Change this to a unique phrase.\r
+define('SECURE_AUTH_KEY', 'put your unique phrase here'); // Change this to a unique phrase.\r
+define('LOGGED_IN_KEY', 'put your unique phrase here'); // Change this to a unique phrase.\r
 \r
 // You can have multiple installations in one database if you give each a unique prefix\r
 $table_prefix  = 'wp_';   // Only numbers, letters, and underscores please!\r
@@ -23,6 +25,7 @@ define ('WPLANG', '');
 \r
 /* That's all, stop editing! Happy blogging. */\r
 \r
-define('ABSPATH', dirname(__FILE__).'/');\r
-require_once(ABSPATH.'wp-settings.php');\r
+if ( !defined('ABSPATH') )\r
+       define('ABSPATH', dirname(__FILE__) . '/');\r
+require_once(ABSPATH . 'wp-settings.php');\r
 ?>\r