X-Git-Url: https://scripts.mit.edu/gitweb/autoinstalls/wordpress.git/blobdiff_plain/959f97d8ecd5c1668103a3e41c795486b944bc68..8a06f4f9392d1ac373442f82ee40428a3cb81395:/wp-config.php diff --git a/wp-config.php b/wp-config.php index 8f40f3ba..eb689835 100644 --- a/wp-config.php +++ b/wp-config.php @@ -7,10 +7,12 @@ define('DB_HOST', WIZARD_DBSERVER); // 99% chance you won't need to change th define('DB_CHARSET', 'utf8'); define('DB_COLLATE', ''); -// Change SECRET_KEY to a unique phrase. You won't have to remember it later, -// so make it long and complicated. You can visit http://api.wordpress.org/secret-key/1.0/ -// to get a secret key generated for you, or just make something up. -define('SECRET_KEY', WIZARD_SECRETKEY); // Change this to a unique phrase. +// 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', WIZARD_AUTH_KEY); // Change this to a unique phrase. +define('SECURE_AUTH_KEY', WIZARD_SECURE_AUTH_KEY); // Change this to a unique phrase. +define('LOGGED_IN_KEY', WIZARD_LOGGED_IN_KEY); // Change this to a unique phrase. // You can have multiple installations in one database if you give each a unique prefix $table_prefix = 'wp_'; // Only numbers, letters, and underscores please! @@ -23,6 +25,7 @@ define ('WPLANG', ''); /* That's all, stop editing! Happy blogging. */ -define('ABSPATH', dirname(__FILE__).'/'); -require_once(ABSPATH.'wp-settings.php'); +if ( !defined('ABSPATH') ) + define('ABSPATH', dirname(__FILE__) . '/'); +require_once(ABSPATH . 'wp-settings.php'); ?>