|
Revision 2745, 0.9 kB
(checked in by matt, 3 years ago)
|
Note character restrictions, fixes #910
|
- Property svn:eol-style set to
CRLF
- Property svn:keywords set to
Author Date Id Revision
|
| Line | |
|---|
| 1 |
<?php |
|---|
| 2 |
|
|---|
| 3 |
define('DB_NAME', 'wordpress'); |
|---|
| 4 |
define('DB_USER', 'username'); |
|---|
| 5 |
define('DB_PASSWORD', 'password'); |
|---|
| 6 |
define('DB_HOST', 'localhost'); |
|---|
| 7 |
|
|---|
| 8 |
// You can have multiple installations in one database if you give each a unique prefix |
|---|
| 9 |
$table_prefix = 'wp_'; |
|---|
| 10 |
|
|---|
| 11 |
// Change this to localize WordPress. A corresponding MO file for the |
|---|
| 12 |
// chosen language must be installed to wp-includes/languages. |
|---|
| 13 |
// For example, install de.mo to wp-includes/languages and set WPLANG to 'de' |
|---|
| 14 |
// to enable German language support. |
|---|
| 15 |
define ('WPLANG', ''); |
|---|
| 16 |
|
|---|
| 17 |
|
|---|
| 18 |
|
|---|
| 19 |
define('ABSPATH', dirname(__FILE__).'/'); |
|---|
| 20 |
require_once(ABSPATH.'wp-settings.php'); |
|---|
| 21 |
?> |
|---|