root/branches/2.2/wp-config-sample.php

Revision 5456, 0.9 kB (checked in by matt, 1 year 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 // ** MySQL settings ** //
3 define('DB_NAME', 'putyourdbnamehere');    // The name of the database
4 define('DB_USER', 'usernamehere');     // Your MySQL username
5 define('DB_PASSWORD', 'yourpasswordhere'); // ...and password
6 define('DB_HOST', 'localhost');    // 99% chance you won't need to change this value
7 define('DB_CHARSET', 'utf8');
8 define('DB_COLLATE', '');
9
10 // You can have multiple installations in one database if you give each a unique prefix
11 $table_prefix  = 'wp_';   // Only numbers, letters, and underscores please!
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 /* That's all, stop editing! Happy blogging. */
20
21 define('ABSPATH', dirname(__FILE__).'/');
22 require_once(ABSPATH.'wp-settings.php');
23 ?>
24
Note: See TracBrowser for help on using the browser.