root/tags/1.5-rc1/wp-config-sample.php

Revision 1218, 2.0 kB (checked in by donncha, 8 months ago)

Merged with WordPress? 2.5, unstable, only for testing

  • 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 // Change SECRET_KEY to a unique phrase.  You won't have to remember it later,
14 // so make it long and complicated.  You can visit https://www.grc.com/passwords.htm
15 // to get a phrase generated for you, or just make something up.
16 define('SECRET_KEY', 'put your unique phrase here'); // Change this to a unique phrase.
17 define('SECRET_SALT', 'put your unique phrase here'); // Change this to a unique phrase.
18
19 // double check $base
20 if( $base == 'BASE' )
21     die( 'Problem in wp-config.php - $base is set to BASE when it should be the path like "/" or "/blogs/"! Please fix it!' );
22 // You can have multiple installations in one database if you give each a unique prefix
23 $table_prefix  = 'wp_';   // Only numbers, letters, and underscores please!
24
25 // Change this to localize WordPress.  A corresponding MO file for the
26 // chosen language must be installed to wp-content/languages.
27 // For example, install de.mo to wp-content/languages and set WPLANG to 'de'
28 // to enable German language support.
29 define ('WPLANG', '');
30
31 // uncomment this to enable wp-content/sunrise.php support
32 //define( 'SUNRISE', 'on' );
33
34 // Uncomment and set this to a URL to redirect if a blog does not exist. (Useful if signup is disabled)
35 // Browser will redirect to constant( 'NOBLOGREDICT' ) . "?new=blogname" where blogname is the unknown blog
36 // define( 'NOBLOGREDIRECT', '' );
37
38 define( "WP_USE_MULTIPLE_DB", false );
39
40 /* That's all, stop editing! Happy blogging. */
41
42 define('ABSPATH', dirname(__FILE__).'/');
43 require_once(ABSPATH.'wp-settings.php');
44 ?>
45
Note: See TracBrowser for help on using the browser.