|
Revision 1069, 1.4 kB
(checked in by donncha, 1 year ago)
|
Merge with WP 2.3 - testing use only!
Move pluggable functions out of wpmu-functions and into pluggable.php, fixes #439
|
- Property svn:eol-style set to
CRLF
|
| Line | |
|---|
| 1 |
<?php |
|---|
| 2 |
|
|---|
| 3 |
|
|---|
| 4 |
define('DB_NAME', 'wordpress'); |
|---|
| 5 |
define('DB_USER', 'username'); |
|---|
| 6 |
define('DB_PASSWORD', 'password'); |
|---|
| 7 |
define('DB_HOST', 'localhost'); |
|---|
| 8 |
define('DB_CHARSET', 'utf8'); |
|---|
| 9 |
define('DB_COLLATE', ''); |
|---|
| 10 |
define('VHOST', 'VHOSTSETTING'); |
|---|
| 11 |
$base = 'BASE'; |
|---|
| 12 |
|
|---|
| 13 |
|
|---|
| 14 |
if( $base == 'BASE' ) |
|---|
| 15 |
die( 'Problem in wp-config.php - $base is set to BASE when it should be the path like "/" or "/blogs/"! Please fix it!' ); |
|---|
| 16 |
|
|---|
| 17 |
$table_prefix = 'wp_'; |
|---|
| 18 |
|
|---|
| 19 |
// Change this to localize WordPress. A corresponding MO file for the |
|---|
| 20 |
// chosen language must be installed to wp-content/languages. |
|---|
| 21 |
// For example, install de.mo to wp-content/languages and set WPLANG to 'de' |
|---|
| 22 |
// to enable German language support. |
|---|
| 23 |
define ('WPLANG', ''); |
|---|
| 24 |
|
|---|
| 25 |
|
|---|
| 26 |
|
|---|
| 27 |
define( "WP_USE_MULTIPLE_DB", false ); |
|---|
| 28 |
|
|---|
| 29 |
|
|---|
| 30 |
|
|---|
| 31 |
define('ABSPATH', dirname(__FILE__).'/'); |
|---|
| 32 |
require_once(ABSPATH.'wp-settings.php'); |
|---|
| 33 |
?> |
|---|
| 34 |
|
|---|