|
Revision 8251, 1.5 kB
(checked in by ryan, 17 hours ago)
|
Update sample config to use new cookie keys
|
- Property svn:eol-style set to
CRLF
- Property svn:keywords set to
Author Date Id Revision
|
| Line | |
|---|
| 1 |
<?php |
|---|
| 2 |
|
|---|
| 3 |
define('DB_NAME', 'putyourdbnamehere'); |
|---|
| 4 |
define('DB_USER', 'usernamehere'); |
|---|
| 5 |
define('DB_PASSWORD', 'yourpasswordhere'); |
|---|
| 6 |
define('DB_HOST', 'localhost'); |
|---|
| 7 |
define('DB_CHARSET', 'utf8'); |
|---|
| 8 |
define('DB_COLLATE', ''); |
|---|
| 9 |
|
|---|
| 10 |
|
|---|
| 11 |
|
|---|
| 12 |
|
|---|
| 13 |
define('AUTH_KEY', 'put your unique phrase here'); |
|---|
| 14 |
define('SECURE_AUTH_KEY', 'put your unique phrase here'); |
|---|
| 15 |
define('LOGGED_IN_KEY', 'put your unique phrase here'); |
|---|
| 16 |
|
|---|
| 17 |
// You can have multiple installations in one database if you give each a unique prefix |
|---|
| 18 |
$table_prefix = 'wp_'; |
|---|
| 19 |
|
|---|
| 20 |
// Change this to localize WordPress. A corresponding MO file for the |
|---|
| 21 |
// chosen language must be installed to wp-content/languages. |
|---|
| 22 |
// For example, install de.mo to wp-content/languages and set WPLANG to 'de' |
|---|
| 23 |
// to enable German language support. |
|---|
| 24 |
define ('WPLANG', ''); |
|---|
| 25 |
|
|---|
| 26 |
|
|---|
| 27 |
|
|---|
| 28 |
if ( !defined('ABSPATH') ) |
|---|
| 29 |
define('ABSPATH', dirname(__FILE__) . '/'); |
|---|
| 30 |
require_once(ABSPATH . 'wp-settings.php'); |
|---|
| 31 |
?> |
|---|
| 32 |
|
|---|