]> 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 5cc89738edc29c00a10c7980cfd9393ee60e2717..f557e6d05ebe7d0af501b52465af5d60a1e392a3 100644 (file)
@@ -1,21 +1,31 @@
 <?php\r
 // ** MySQL settings ** //\r
-define('DB_NAME', 'wordpress');    // The name of the database\r
-define('DB_USER', 'username');     // Your MySQL username\r
-define('DB_PASSWORD', 'password'); // ...and password\r
+define('DB_NAME', 'putyourdbnamehere');    // The name of the database\r
+define('DB_USER', 'usernamehere');     // Your MySQL username\r
+define('DB_PASSWORD', 'yourpasswordhere'); // ...and password\r
 define('DB_HOST', 'localhost');    // 99% chance you won't need to change this value\r
+define('DB_CHARSET', 'utf8');\r
+define('DB_COLLATE', '');\r
+\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
 \r
 // Change this to localize WordPress.  A corresponding MO file for the\r
-// chosen language must be installed to wp-includes/languages.\r
-// For example, install de.mo to wp-includes/languages and set WPLANG to 'de'\r
+// chosen language must be installed to wp-content/languages.\r
+// For example, install de.mo to wp-content/languages and set WPLANG to 'de'\r
 // to enable German language support.\r
 define ('WPLANG', '');\r
 \r
 /* That's all, stop editing! Happy blogging. */\r
 \r
-define('ABSPATH', dirname(__FILE__).'/');\r
-require_once(ABSPATH.'wp-settings.php');\r
-?>
\ No newline at end of file
+if ( !defined('ABSPATH') )\r
+       define('ABSPATH', dirname(__FILE__) . '/');\r
+require_once(ABSPATH . 'wp-settings.php');\r
+?>\r