root/tags/1.3/wp-config-sample.php

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 /* Don't try to create this file by hand. Read the README.txt and run the installer. */
3 // ** MySQL settings ** //
4 define('DB_NAME', 'wordpress');    // The name of the database
5 define('DB_USER', 'username');     // Your MySQL username
6 define('DB_PASSWORD', 'password'); // ...and password
7 define('DB_HOST', 'localhost');    // 99% chance you won't need to change this value
8 define('DB_CHARSET', 'utf8');
9 define('DB_COLLATE', '');
10 define('VHOST', 'VHOSTSETTING');
11 $base = 'BASE';
12
13 // double check $base
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 // You can have multiple installations in one database if you give each a unique prefix
17 $table_prefix  = 'wp_';   // Only numbers, letters, and underscores please!
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 // uncomment this to enable wp-content/sunrise.php support
25 //define( 'SUNRISE', 'on' );
26
27 define( "WP_USE_MULTIPLE_DB", false );
28
29 /* That's all, stop editing! Happy blogging. */
30
31 define('ABSPATH', dirname(__FILE__).'/');
32 require_once(ABSPATH.'wp-settings.php');
33 ?>
34
Note: See TracBrowser for help on using the browser.