Make WordPress Core

source: trunk/wp-config-sample.php @ 1330

Last change on this file since 1330 was 1330, checked in by rboren, 21 years ago

Fix spelling error.

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 993 bytes
Line 
1<?php
2/** WordPress's config file **/
3/** http://wordpress.org/   **/
4
5// ** MySQL settings ** //
6define('DB_NAME', 'wordpress');     // The name of the database
7define('DB_USER', 'username');     // Your MySQL username
8define('DB_PASSWORD', 'password'); // ...and password
9define('DB_HOST', 'localhost');     // 99% chance you won't need to change this value
10
11// Change the prefix if you want to have multiple blogs in a single database.
12
13$table_prefix  = 'wp_';   // example: 'wp_' or 'b2' or 'mylogin_'
14
15// Change this to localize WordPress.  A corresponding MO file for the
16// chosen language must be installed to wp-includes/languages.
17// For example, install de.mo to wp-includes/languages and set WPLANG to 'de'
18// to enable German language support.
19define ('WPLANG', '');
20
21/* Stop editing */
22
23$server = DB_HOST;
24$loginsql = DB_USER;
25$passsql = DB_PASSWORD;
26$base = DB_NAME;
27
28define('ABSPATH', dirname(__FILE__).'/');
29
30// Get everything else
31require_once(ABSPATH.'wp-settings.php');
32?>
Note: See TracBrowser for help on using the repository browser.