Files
WordPress/wp-config-sample.php
T

26 lines
718 B
PHP
Raw Normal View History

2003-12-11 00:22:36 +00:00
<?php
/** WordPress's config file **/
/** http://wordpress.org/ **/
// ** MySQL settings ** //
define('DB_NAME', 'wordpress'); // The name of the database
define('DB_USER', 'username'); // Your MySQL username
define('DB_PASSWORD', 'password'); // ...and password
define('DB_HOST', 'localhost'); // 99% chance you won't need to change this value
// Change the prefix if you want to have multiple blogs in a single database.
$table_prefix = 'wp_'; // example: 'wp_' or 'b2' or 'mylogin_'
/* Stop editing */
$server = DB_HOST;
$loginsql = DB_USER;
$passsql = DB_PASSWORD;
$base = DB_NAME;
2003-12-18 09:36:13 +00:00
define('ABSPATH', dirname(__FILE__).'/');
2003-12-11 00:22:36 +00:00
// Get everything else
2003-12-18 09:36:13 +00:00
require_once(ABSPATH.'wp-settings.php');
2003-12-11 00:22:36 +00:00
?>