|
Revision 7809, 1.3 kB
(checked in by ryan, 6 months ago)
|
Typo fix
|
- 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('SECRET_KEY', 'put your unique phrase here'); |
|---|
| 14 |
|
|---|
| 15 |
// You can have multiple installations in one database if you give each a unique prefix |
|---|
| 16 |
$table_prefix = 'wp_'; |
|---|
| 17 |
|
|---|
| 18 |
// Change this to localize WordPress. A corresponding MO file for the |
|---|
| 19 |
// chosen language must be installed to wp-content/languages. |
|---|
| 20 |
// For example, install de.mo to wp-content/languages and set WPLANG to 'de' |
|---|
| 21 |
// to enable German language support. |
|---|
| 22 |
define ('WPLANG', ''); |
|---|
| 23 |
|
|---|
| 24 |
|
|---|
| 25 |
|
|---|
| 26 |
define('ABSPATH', dirname(__FILE__).'/'); |
|---|
| 27 |
require_once(ABSPATH.'wp-settings.php'); |
|---|
| 28 |
?> |
|---|
| 29 |
|
|---|