<?php /** * Retrieves and creates the wp-config.php file. * * The permissions for the base directory must allow for writing files in order * for the wp-config.php to be created using this page. * * @package WordPress * @subpackage Administration */ /** * We are installing. * * @package WordPress */ define('WP_INSTALLING', true); /**#@+ * These three defines are required to allow us to use require_wp_db() to load * the database class while being wp-content/db.php aware. * @ignore */ define('ABSPATH', dirname(dirname(__FILE__)).'/'); define('WPINC', 'wp-includes'); define('WP_CONTENT_DIR', ABSPATH . 'wp-content'); /**#@-*/ require_once(ABSPATH . WPINC . '/compat.php'); require_once(ABSPATH . WPINC . '/functions.php'); require_once(ABSPATH . WPINC . '/classes.php'); if (!file_exists(ABSPATH . 'wp-config-sample.php')) wp_die('wp-config-sample.php が見つかりません。WordPress インストールファイルから再アップロードしてください。'); $configFile = file(ABSPATH . 'wp-config-sample.php'); if ( !is_writable(ABSPATH)) wp_die("インストールディレクトリに書き込めません。インストールするディレクトリの属性を変更するか、手動で wp-config.php を作成してください。"); // Check if wp-config.php has been created if (file_exists(ABSPATH . 'wp-config.php')) wp_die("<p>ファイル 'wp-config.php' は既に作成済みです。このファイル内の設定項目をリセットする必要があるのなら、まずこのファイルを削除してください。その後で <a href='install.php'>インストールを実行してください</a>。</p>"); // Check if wp-config.php exists above the root directory but is not part of another install if (file_exists(ABSPATH . '../wp-config.php') && ! file_exists(ABSPATH . '../wp-settings.php')) wp_die("<p>WordPress をインストールしたひとつ上のディレクトリにファイル 'wp-config.php' が既に存在しています。 このファイル内の設定項目をリセットする必要があるのなら、まずこのファイルを削除してください。その後で <a href='install.php'>インストールを実行してください</a>。</p>"); if (isset($_GET['step'])) $step = $_GET['step']; else $step = 0; /** * Display setup wp-config.php file header. * * @ignore * @since 2.3.0 * @package WordPress * @subpackage Installer_WP_Config */ function display_header() { header( 'Content-Type: text/html; charset=utf-8' ); ?> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <title>WordPress › セットアップ設定ファイル</title> <link rel="stylesheet" href="css/install.css" type="text/css" /> </head> <body> <h1 id="logo"><img alt="WordPress" src="images/wordpress-logo.png" /></h1> <?php }//end function display_header(); switch($step) { case 0: display_header(); ?> <p>WordPress へようこそ。あらかじめデータベースに関する若干の情報を用意してください。作業を進める前に以下のデータベース情報を知っている必要があります。</p> <ol> <li>データベース名</li> <li>データベースのユーザー名</li> <li>データベースのパスワード</li> <li>データベースのホスト名</li> <li>テーブル接頭辞 (1 つのデータベースに複数の WordPress を構築する場合) </li> </ol> <p><strong>もし何かが原因で自動ファイル生成が動作しなくても心配しないでください。この機能は設定ファイルにデータベース情報を記入するだけです。テキストエディタで <code>wp-config-sample.php</code> を開き、データベース接続の詳細を記入してこのファイルの名前を <code>wp-config.php</code> として保存します。</strong></p> <p>これらのデータベース情報はホスティング先から提供されます。データベース情報がわからない場合、作業を続行する前にホスティング先と連絡を取ってください。すべての準備が整っているなら…</p> <p class="step"><a href="setup-config.php?step=1" class="button">次に進みましょう !</a></p> <?php break; case 1: display_header(); ?> <form method="post" action="setup-config.php?step=2"> <p>以下にデータベース接続のためのデータを入力してください。これらのデータについて分からない点があれば、ホストに連絡を取ってください。</p> <table class="form-table"> <tr> <th scope="row"><label for="dbname">データベース名</label></th> <td><input name="dbname" id="dbname" type="text" size="25" value="wordpress" /></td> <td>WP を稼動させたいデータベースの名前。</td> </tr> <tr> <th scope="row"><label for="uname">ユーザー名</label></th> <td><input name="uname" id="uname" type="text" size="25" value="username" /></td> <td>MySQL のユーザー名</td> </tr> <tr> <th scope="row"><label for="pwd">パスワード</label></th> <td><input name="pwd" id="pwd" type="text" size="25" value="password" /></td> <td>MySQL のパスワード</td> </tr> <tr> <th scope="row"><label for="dbhost">データベースのホスト名</label></th> <td><input name="dbhost" id="dbhost" type="text" size="25" value="localhost" /></td> <td>この値は 99% 変える必要はないでしょう。</td> </tr> <tr> <th scope="row"><label for="prefix">テーブル接頭辞</label></th> <td><input name="prefix" id="prefix" type="text" id="prefix" value="wp_" size="25" /></td> <td>1 つのデータベースで複数の WordPress を動かすときに変更します。</td> </tr> </table> <p class="step"><input name="submit" type="submit" value="作成する" class="button" /></p> </form> <?php break; case 2: $dbname = trim($_POST['dbname']); $uname = trim($_POST['uname']); $passwrd = trim($_POST['pwd']); $dbhost = trim($_POST['dbhost']); $prefix = trim($_POST['prefix']); if (empty($prefix)) $prefix = 'wp_'; // Test the db connection. /**#@+ * @ignore */ define('DB_NAME', $dbname); define('DB_USER', $uname); define('DB_PASSWORD', $passwrd); define('DB_HOST', $dbhost); /**#@-*/ // We'll fail here if the values are no good. require_wp_db(); if ( !empty($wpdb->error) ) wp_die($wpdb->error->get_error_message()); $handle = fopen(ABSPATH . 'wp-config.php', 'w'); foreach ($configFile as $line_num => $line) { switch (substr($line,0,16)) { case "define('DB_NAME'": fwrite($handle, str_replace("putyourdbnamehere", $dbname, $line)); break; case "define('DB_USER'": fwrite($handle, str_replace("'usernamehere'", "'$uname'", $line)); break; case "define('DB_PASSW": fwrite($handle, str_replace("'yourpasswordhere'", "'$passwrd'", $line)); break; case "define('DB_HOST'": fwrite($handle, str_replace("localhost", $dbhost, $line)); break; case '$table_prefix =': fwrite($handle, str_replace('wp_', $prefix, $line)); break; default: fwrite($handle, $line); } } fclose($handle); chmod(ABSPATH . 'wp-config.php', 0666); display_header(); ?> <p>この部分のインストールは無事完了しました。WordPress は現在データベースと通信できる状態にあります。準備ができているなら…</p> <p class="step"><a href="install.php" class="button">インストールを実行しましょう !</a></p> <?php break; } ?> </body> </html>