]> scripts.mit.edu Git - autoinstalls/wordpress.git/blob - wp-config-sample.php
Wordpress 2.5.1
[autoinstalls/wordpress.git] / wp-config-sample.php
1 <?php\r
2 // ** MySQL settings ** //\r
3 define('DB_NAME', 'putyourdbnamehere');    // The name of the database\r
4 define('DB_USER', 'usernamehere');     // Your MySQL username\r
5 define('DB_PASSWORD', 'yourpasswordhere'); // ...and password\r
6 define('DB_HOST', 'localhost');    // 99% chance you won't need to change this value\r
7 define('DB_CHARSET', 'utf8');\r
8 define('DB_COLLATE', '');\r
9 \r
10 // Change SECRET_KEY to a unique phrase.  You won't have to remember it later,\r
11 // so make it long and complicated.  You can visit http://api.wordpress.org/secret-key/1.0/\r
12 // to get a secret key generated for you, or just make something up.\r
13 define('SECRET_KEY', 'put your unique phrase here'); // Change this to a unique phrase.\r
14 \r
15 // You can have multiple installations in one database if you give each a unique prefix\r
16 $table_prefix  = 'wp_';   // Only numbers, letters, and underscores please!\r
17 \r
18 // Change this to localize WordPress.  A corresponding MO file for the\r
19 // chosen language must be installed to wp-content/languages.\r
20 // For example, install de.mo to wp-content/languages and set WPLANG to 'de'\r
21 // to enable German language support.\r
22 define ('WPLANG', '');\r
23 \r
24 /* That's all, stop editing! Happy blogging. */\r
25 \r
26 define('ABSPATH', dirname(__FILE__).'/');\r
27 require_once(ABSPATH.'wp-settings.php');\r
28 ?>\r