]> scripts.mit.edu Git - autoinstalls/wordpress.git/blob - wp-config-sample.php
WordPress 4.4.2-scripts
[autoinstalls/wordpress.git] / wp-config-sample.php
1 <?php\r
2 /**\r
3  * The base configuration for WordPress\r
4  *\r
5  * The wp-config.php creation script uses this file during the\r
6  * installation. You don't have to use the web site, you can\r
7  * copy this file to "wp-config.php" and fill in the values.\r
8  *\r
9  * This file contains the following configurations:\r
10  *\r
11  * * MySQL settings\r
12  * * Secret keys\r
13  * * Database table prefix\r
14  * * ABSPATH\r
15  *\r
16  * @link https://codex.wordpress.org/Editing_wp-config.php\r
17  *\r
18  * @package WordPress\r
19  */\r
20 \r
21 // ** MySQL settings - You can get this info from your web host ** //\r
22 /** The name of the database for WordPress */\r
23 define('DB_NAME', 'database_name_here');\r
24 \r
25 /** MySQL database username */\r
26 define('DB_USER', 'username_here');\r
27 \r
28 /** MySQL database password */\r
29 define('DB_PASSWORD', 'password_here');\r
30 \r
31 /** MySQL hostname */\r
32 define('DB_HOST', 'localhost');\r
33 \r
34 /** Database Charset to use in creating database tables. */\r
35 define('DB_CHARSET', 'utf8');\r
36 \r
37 /** The Database Collate type. Don't change this if in doubt. */\r
38 define('DB_COLLATE', '');\r
39 \r
40 /**#@+\r
41  * Authentication Unique Keys and Salts.\r
42  *\r
43  * Change these to different unique phrases!\r
44  * You can generate these using the {@link https://api.wordpress.org/secret-key/1.1/salt/ WordPress.org secret-key service}\r
45  * 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
46  *\r
47  * @since 2.6.0\r
48  */\r
49 define('AUTH_KEY',         'put your unique phrase here');\r
50 define('SECURE_AUTH_KEY',  'put your unique phrase here');\r
51 define('LOGGED_IN_KEY',    'put your unique phrase here');\r
52 define('NONCE_KEY',        'put your unique phrase here');\r
53 define('AUTH_SALT',        'put your unique phrase here');\r
54 define('SECURE_AUTH_SALT', 'put your unique phrase here');\r
55 define('LOGGED_IN_SALT',   'put your unique phrase here');\r
56 define('NONCE_SALT',       'put your unique phrase here');\r
57 \r
58 /**#@-*/\r
59 \r
60 /**\r
61  * WordPress Database Table prefix.\r
62  *\r
63  * You can have multiple installations in one database if you give each\r
64  * a unique prefix. Only numbers, letters, and underscores please!\r
65  */\r
66 $table_prefix  = 'wp_';\r
67 \r
68 /**\r
69  * For developers: WordPress debugging mode.\r
70  *\r
71  * Change this to true to enable the display of notices during development.\r
72  * It is strongly recommended that plugin and theme developers use WP_DEBUG\r
73  * in their development environments.\r
74  *\r
75  * For information on other constants that can be used for debugging,\r
76  * visit the Codex.\r
77  *\r
78  * @link https://codex.wordpress.org/Debugging_in_WordPress\r
79  */\r
80 define('WP_DEBUG', false);\r
81 \r
82 /* That's all, stop editing! Happy blogging. */\r
83 \r
84 /** Absolute path to the WordPress directory. */\r
85 if ( !defined('ABSPATH') )\r
86         define('ABSPATH', dirname(__FILE__) . '/');\r
87 \r
88 /** Sets up WordPress vars and included files. */\r
89 require_once(ABSPATH . 'wp-settings.php');\r