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

Revision 7809, 1.3 kB (checked in by ryan, 6 months ago)

Typo fix

  • 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 // Change SECRET_KEY to a unique phrase.  You won't have to remember it later,
11 // so make it long and complicated.  You can visit http://api.wordpress.org/secret-key/1.0/
12 // to get a secret key generated for you, or just make something up.
13 define('SECRET_KEY', 'put your unique phrase here'); // Change this to a unique phrase.
14
15 // You can have multiple installations in one database if you give each a unique prefix
16 $table_prefix  = 'wp_';   // Only numbers, letters, and underscores please!
17
18 // Change this to localize WordPress.  A corresponding MO file for the
19 // chosen language must be installed to wp-content/languages.
20 // For example, install de.mo to wp-content/languages and set WPLANG to 'de'
21 // to enable German language support.
22 define ('WPLANG', '');
23
24 /* That's all, stop editing! Happy blogging. */
25
26 define('ABSPATH', dirname(__FILE__).'/');
27 require_once(ABSPATH.'wp-settings.php');
28 ?>
29
Note: See TracBrowser for help on using the browser.