|
Revision 5457, 0.9 kB
(checked in by matt, 2 years ago)
|
The config file has been deliberately CRLF since [2370] to recognize that most people will be editing this file in a crappy windows editor.
|
- 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 |
$table_prefix = 'wp_'; |
|---|
| 12 |
|
|---|
| 13 |
// Change this to localize WordPress. A corresponding MO file for the |
|---|
| 14 |
// chosen language must be installed to wp-content/languages. |
|---|
| 15 |
// For example, install de.mo to wp-content/languages and set WPLANG to 'de' |
|---|
| 16 |
// to enable German language support. |
|---|
| 17 |
define ('WPLANG', ''); |
|---|
| 18 |
|
|---|
| 19 |
|
|---|
| 20 |
|
|---|
| 21 |
define('ABSPATH', dirname(__FILE__).'/'); |
|---|
| 22 |
require_once(ABSPATH.'wp-settings.php'); |
|---|
| 23 |
?> |
|---|
| 24 |
|
|---|