]> scripts.mit.edu Git - autoinstalls/wordpress.git/blob - wp-config-sample.php
Wordpress 3.3.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\r
7  * by 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', 'database_name_here');\r
20 \r
21 /** MySQL database username */\r
22 define('DB_USER', 'username_here');\r
23 \r
24 /** MySQL database password */\r
25 define('DB_PASSWORD', 'password_here');\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 and Salts.\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/salt/ 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 define('AUTH_SALT',        'put your unique phrase here');\r
50 define('SECURE_AUTH_SALT', 'put your unique phrase here');\r
51 define('LOGGED_IN_SALT',   'put your unique phrase here');\r
52 define('NONCE_SALT',       'put your unique phrase here');\r
53 \r
54 /**#@-*/\r
55 \r
56 /**\r
57  * WordPress Database Table prefix.\r
58  *\r
59  * You can have multiple installations in one database if you give each a unique\r
60  * prefix. Only numbers, letters, and underscores please!\r
61  */\r
62 $table_prefix  = 'wp_';\r
63 \r
64 /**\r
65  * WordPress Localized Language, defaults to English.\r
66  *\r
67  * Change this to localize WordPress. A corresponding MO file for the chosen\r
68  * language must be installed to wp-content/languages. For example, install\r
69  * de_DE.mo to wp-content/languages and set WPLANG to 'de_DE' to enable German\r
70  * language support.\r
71  */\r
72 define('WPLANG', '');\r
73 \r
74 /**\r
75  * For developers: WordPress debugging mode.\r
76  *\r
77  * Change this to true to enable the display of notices during development.\r
78  * It is strongly recommended that plugin and theme developers use WP_DEBUG\r
79  * in their development environments.\r
80  */\r
81 define('WP_DEBUG', false);\r
82 \r
83 /* That's all, stop editing! Happy blogging. */\r
84 \r
85 /** Absolute path to the WordPress directory. */\r
86 if ( !defined('ABSPATH') )\r
87         define('ABSPATH', dirname(__FILE__) . '/');\r
88 \r
89 /** Sets up WordPress vars and included files. */\r
90 require_once(ABSPATH . 'wp-settings.php');\r