]> scripts.mit.edu Git - autoinstalls/wordpress.git/blob - wp-config-sample.php
Wordpress 2.9.1-scripts
[autoinstalls/wordpress.git] / wp-config-sample.php
1 <?php\r
2 /** \r
3  * The base configurations of the WordPress.\r
4  *\r
5  * This file has the following configurations: MySQL settings, Table Prefix,\r
6  * Secret Keys, WordPress Language, and ABSPATH. You can find more information by\r
7  * visiting {@link http://codex.wordpress.org/Editing_wp-config.php Editing\r
8  * wp-config.php} Codex page. You can get the MySQL settings from your web host.\r
9  *\r
10  * This file is used by the wp-config.php creation script during the\r
11  * installation. You don't have to use the web site, you can just copy this file\r
12  * to "wp-config.php" and fill in the values.\r
13  *\r
14  * @package WordPress\r
15  */\r
16 \r
17 // ** MySQL settings - You can get this info from your web host ** //\r
18 /** The name of the database for WordPress */\r
19 define('DB_NAME', 'putyourdbnamehere');\r
20 \r
21 /** MySQL database username */\r
22 define('DB_USER', 'usernamehere');\r
23 \r
24 /** MySQL database password */\r
25 define('DB_PASSWORD', 'yourpasswordhere');\r
26 \r
27 /** MySQL hostname */\r
28 define('DB_HOST', 'localhost');\r
29 \r
30 /** Database Charset to use in creating database tables. */\r
31 define('DB_CHARSET', 'utf8');\r
32 \r
33 /** The Database Collate type. Don't change this if in doubt. */\r
34 define('DB_COLLATE', '');\r
35 \r
36 /**#@+\r
37  * Authentication Unique Keys.\r
38  *\r
39  * Change these to different unique phrases!\r
40  * You can generate these using the {@link https://api.wordpress.org/secret-key/1.1/ WordPress.org secret-key service}\r
41  * You can change these at any point in time to invalidate all existing cookies. This will force all users to have to log in again.\r
42  *\r
43  * @since 2.6.0\r
44  */\r
45 define('AUTH_KEY', 'put your unique phrase here');\r
46 define('SECURE_AUTH_KEY', 'put your unique phrase here');\r
47 define('LOGGED_IN_KEY', 'put your unique phrase here');\r
48 define('NONCE_KEY', 'put your unique phrase here');\r
49 /**#@-*/\r
50 \r
51 /**\r
52  * WordPress Database Table prefix.\r
53  *\r
54  * You can have multiple installations in one database if you give each a unique\r
55  * prefix. Only numbers, letters, and underscores please!\r
56  */\r
57 $table_prefix  = 'wp_';\r
58 \r
59 /**\r
60  * WordPress Localized Language, defaults to English.\r
61  *\r
62  * Change this to localize WordPress.  A corresponding MO file for the chosen\r
63  * language must be installed to wp-content/languages. For example, install\r
64  * de.mo to wp-content/languages and set WPLANG to 'de' to enable German\r
65  * language support.\r
66  */\r
67 define ('WPLANG', '');\r
68 \r
69 /* That's all, stop editing! Happy blogging. */\r
70 \r
71 /** Absolute path to the WordPress directory. */\r
72 if ( !defined('ABSPATH') )\r
73         define('ABSPATH', dirname(__FILE__) . '/');\r
74 \r
75 /** Sets up WordPress vars and included files. */\r
76 require_once(ABSPATH . 'wp-settings.php');\r