<?php
/** WordPress ME's config file **/
/** http://wordpress.org/   **/
/** http://wordpress.xwd.jp/   **/

// It is influenced by environment.
// mb_language("Japanese");
// mb_internal_encoding("EUC-JP");

// ** MySQL settings ** //
define('DB_NAME', 'wordpress');  // The name of the database
define('DB_USER', 'www');        // Your MySQL username
define('DB_PASSWORD', 'mayumi88');       // ...and password
//define('DB_HOST', 'pgsl.ki.nu');       // 99% chance you won't need to change this value
define('DB_HOST', 'catania.i.ki.nu');    // 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  = 'mk_';   // example: 'wp_' or 'b2' or 'mylogin_'

// Change this to localize WordPress.
// For example, define('WPLANG', 'lang_ja.php');
// to enable Japanese language support.

define('WPLANG', 'lang_ja.php');

/* Stop editing */

$server = DB_HOST;
$loginsql = DB_USER;
$passsql = DB_PASSWORD;
$base = DB_NAME;

define('ABSPATH', dirname(__FILE__).'/');
// Get everything else
require_once(ABSPATH.'wp-lang'.'/'.WPLANG);
require_once(ABSPATH.'wp-settings.php');
?>
