wp/wp-admin/setup-config.php
changeset 0 d970ebf37754
child 5 5e2f62d02dcd
equal deleted inserted replaced
-1:000000000000 0:d970ebf37754
       
     1 <?php
       
     2 /**
       
     3  * Retrieves and creates the wp-config.php file.
       
     4  *
       
     5  * The permissions for the base directory must allow for writing files in order
       
     6  * for the wp-config.php to be created using this page.
       
     7  *
       
     8  * @internal This file must be parsable by PHP4.
       
     9  *
       
    10  * @package WordPress
       
    11  * @subpackage Administration
       
    12  */
       
    13 
       
    14 /**
       
    15  * We are installing.
       
    16  *
       
    17  * @package WordPress
       
    18  */
       
    19 define('WP_INSTALLING', true);
       
    20 
       
    21 /**
       
    22  * We are blissfully unaware of anything.
       
    23  */
       
    24 define('WP_SETUP_CONFIG', true);
       
    25 
       
    26 /**
       
    27  * Disable error reporting
       
    28  *
       
    29  * Set this to error_reporting( E_ALL ) or error_reporting( E_ALL | E_STRICT ) for debugging
       
    30  */
       
    31 error_reporting(0);
       
    32 
       
    33 /**#@+
       
    34  * These three defines are required to allow us to use require_wp_db() to load
       
    35  * the database class while being wp-content/db.php aware.
       
    36  * @ignore
       
    37  */
       
    38 define('ABSPATH', dirname(dirname(__FILE__)).'/');
       
    39 define('WPINC', 'wp-includes');
       
    40 define('WP_CONTENT_DIR', ABSPATH . 'wp-content');
       
    41 define('WP_DEBUG', false);
       
    42 /**#@-*/
       
    43 
       
    44 require(ABSPATH . WPINC . '/load.php');
       
    45 require(ABSPATH . WPINC . '/version.php');
       
    46 
       
    47 // Check for the required PHP version and for the MySQL extension or a database drop-in.
       
    48 wp_check_php_mysql_versions();
       
    49 
       
    50 require_once(ABSPATH . WPINC . '/functions.php');
       
    51 
       
    52 // Also loads plugin.php, l10n.php, pomo/mo.php (all required by setup-config.php)
       
    53 wp_load_translations_early();
       
    54 
       
    55 // Turn register_globals off.
       
    56 wp_unregister_GLOBALS();
       
    57 
       
    58 // Standardize $_SERVER variables across setups.
       
    59 wp_fix_server_vars();
       
    60 
       
    61 require_once(ABSPATH . WPINC . '/compat.php');
       
    62 require_once(ABSPATH . WPINC . '/class-wp-error.php');
       
    63 require_once(ABSPATH . WPINC . '/formatting.php');
       
    64 
       
    65 // Add magic quotes and set up $_REQUEST ( $_GET + $_POST )
       
    66 wp_magic_quotes();
       
    67 
       
    68 // Support wp-config-sample.php one level up, for the develop repo.
       
    69 if ( file_exists( ABSPATH . 'wp-config-sample.php' ) )
       
    70 	$config_file = file( ABSPATH . 'wp-config-sample.php' );
       
    71 elseif ( file_exists( dirname( ABSPATH ) . '/wp-config-sample.php' ) )
       
    72 	$config_file = file( dirname( ABSPATH ) . '/wp-config-sample.php' );
       
    73 else
       
    74 	wp_die( __( 'Sorry, I need a wp-config-sample.php file to work from. Please re-upload this file from your WordPress installation.' ) );
       
    75 
       
    76 // Check if wp-config.php has been created
       
    77 if ( file_exists( ABSPATH . 'wp-config.php' ) )
       
    78 	wp_die( '<p>' . sprintf( __( "The file 'wp-config.php' already exists. If you need to reset any of the configuration items in this file, please delete it first. You may try <a href='%s'>installing now</a>." ), 'install.php' ) . '</p>' );
       
    79 
       
    80 // Check if wp-config.php exists above the root directory but is not part of another install
       
    81 if ( file_exists(ABSPATH . '../wp-config.php' ) && ! file_exists( ABSPATH . '../wp-settings.php' ) )
       
    82 	wp_die( '<p>' . sprintf( __( "The file 'wp-config.php' already exists one level above your WordPress installation. If you need to reset any of the configuration items in this file, please delete it first. You may try <a href='install.php'>installing now</a>."), 'install.php' ) . '</p>' );
       
    83 
       
    84 $step = isset( $_GET['step'] ) ? (int) $_GET['step'] : 0;
       
    85 
       
    86 /**
       
    87  * Display setup wp-config.php file header.
       
    88  *
       
    89  * @ignore
       
    90  * @since 2.3.0
       
    91  * @package WordPress
       
    92  * @subpackage Installer_WP_Config
       
    93  */
       
    94 function setup_config_display_header() {
       
    95 	global $wp_version;
       
    96 
       
    97 	header( 'Content-Type: text/html; charset=utf-8' );
       
    98 ?>
       
    99 <!DOCTYPE html>
       
   100 <html xmlns="http://www.w3.org/1999/xhtml"<?php if ( is_rtl() ) echo ' dir="rtl"'; ?>>
       
   101 <head>
       
   102 <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
       
   103 <title><?php _e( 'WordPress &rsaquo; Setup Configuration File' ); ?></title>
       
   104 <link rel="stylesheet" href="css/install.css?ver=<?php echo preg_replace( '/[^0-9a-z\.-]/i', '', $wp_version ); ?>" type="text/css" />
       
   105 <link rel="stylesheet" href="../wp-includes/css/buttons.css?ver=<?php echo preg_replace( '/[^0-9a-z\.-]/i', '', $wp_version ); ?>" type="text/css" />
       
   106 
       
   107 </head>
       
   108 <body class="wp-core-ui<?php if ( is_rtl() ) echo ' rtl'; ?>">
       
   109 <h1 id="logo"><a href="<?php esc_attr_e( 'http://wordpress.org/' ); ?>"><?php _e( 'WordPress' ); ?></a></h1>
       
   110 <?php
       
   111 } // end function setup_config_display_header();
       
   112 
       
   113 switch($step) {
       
   114 	case 0:
       
   115 		setup_config_display_header();
       
   116 ?>
       
   117 
       
   118 <p><?php _e( 'Welcome to WordPress. Before getting started, we need some information on the database. You will need to know the following items before proceeding.' ) ?></p>
       
   119 <ol>
       
   120 	<li><?php _e( 'Database name' ); ?></li>
       
   121 	<li><?php _e( 'Database username' ); ?></li>
       
   122 	<li><?php _e( 'Database password' ); ?></li>
       
   123 	<li><?php _e( 'Database host' ); ?></li>
       
   124 	<li><?php _e( 'Table prefix (if you want to run more than one WordPress in a single database)' ); ?></li>
       
   125 </ol>
       
   126 <p><strong><?php _e( "If for any reason this automatic file creation doesn&#8217;t work, don&#8217;t worry. All this does is fill in the database information to a configuration file. You may also simply open <code>wp-config-sample.php</code> in a text editor, fill in your information, and save it as <code>wp-config.php</code>." ); ?></strong></p>
       
   127 <p><?php _e( "In all likelihood, these items were supplied to you by your Web Host. If you do not have this information, then you will need to contact them before you can continue. If you&#8217;re all ready&hellip;" ); ?></p>
       
   128 
       
   129 <p class="step"><a href="setup-config.php?step=1<?php if ( isset( $_GET['noapi'] ) ) echo '&amp;noapi'; ?>" class="button button-large"><?php _e( 'Let&#8217;s go!' ); ?></a></p>
       
   130 <?php
       
   131 	break;
       
   132 
       
   133 	case 1:
       
   134 		setup_config_display_header();
       
   135 	?>
       
   136 <form method="post" action="setup-config.php?step=2">
       
   137 	<p><?php _e( "Below you should enter your database connection details. If you&#8217;re not sure about these, contact your host." ); ?></p>
       
   138 	<table class="form-table">
       
   139 		<tr>
       
   140 			<th scope="row"><label for="dbname"><?php _e( 'Database Name' ); ?></label></th>
       
   141 			<td><input name="dbname" id="dbname" type="text" size="25" value="wordpress" /></td>
       
   142 			<td><?php _e( 'The name of the database you want to run WP in.' ); ?></td>
       
   143 		</tr>
       
   144 		<tr>
       
   145 			<th scope="row"><label for="uname"><?php _e( 'User Name' ); ?></label></th>
       
   146 			<td><input name="uname" id="uname" type="text" size="25" value="<?php echo htmlspecialchars( _x( 'username', 'example username' ), ENT_QUOTES ); ?>" /></td>
       
   147 			<td><?php _e( 'Your MySQL username' ); ?></td>
       
   148 		</tr>
       
   149 		<tr>
       
   150 			<th scope="row"><label for="pwd"><?php _e( 'Password' ); ?></label></th>
       
   151 			<td><input name="pwd" id="pwd" type="text" size="25" value="<?php echo htmlspecialchars( _x( 'password', 'example password' ), ENT_QUOTES ); ?>" /></td>
       
   152 			<td><?php _e( '&hellip;and your MySQL password.' ); ?></td>
       
   153 		</tr>
       
   154 		<tr>
       
   155 			<th scope="row"><label for="dbhost"><?php _e( 'Database Host' ); ?></label></th>
       
   156 			<td><input name="dbhost" id="dbhost" type="text" size="25" value="localhost" /></td>
       
   157 			<td><?php _e( 'You should be able to get this info from your web host, if <code>localhost</code> does not work.' ); ?></td>
       
   158 		</tr>
       
   159 		<tr>
       
   160 			<th scope="row"><label for="prefix"><?php _e( 'Table Prefix' ); ?></label></th>
       
   161 			<td><input name="prefix" id="prefix" type="text" value="wp_" size="25" /></td>
       
   162 			<td><?php _e( 'If you want to run multiple WordPress installations in a single database, change this.' ); ?></td>
       
   163 		</tr>
       
   164 	</table>
       
   165 	<?php if ( isset( $_GET['noapi'] ) ) { ?><input name="noapi" type="hidden" value="1" /><?php } ?>
       
   166 	<p class="step"><input name="submit" type="submit" value="<?php echo htmlspecialchars( __( 'Submit' ), ENT_QUOTES ); ?>" class="button button-large" /></p>
       
   167 </form>
       
   168 <?php
       
   169 	break;
       
   170 
       
   171 	case 2:
       
   172 	foreach ( array( 'dbname', 'uname', 'pwd', 'dbhost', 'prefix' ) as $key )
       
   173 		$$key = trim( wp_unslash( $_POST[ $key ] ) );
       
   174 
       
   175 	$tryagain_link = '</p><p class="step"><a href="setup-config.php?step=1" onclick="javascript:history.go(-1);return false;" class="button button-large">' . __( 'Try again' ) . '</a>';
       
   176 
       
   177 	if ( empty( $prefix ) )
       
   178 		wp_die( __( '<strong>ERROR</strong>: "Table Prefix" must not be empty.' . $tryagain_link ) );
       
   179 
       
   180 	// Validate $prefix: it can only contain letters, numbers and underscores.
       
   181 	if ( preg_match( '|[^a-z0-9_]|i', $prefix ) )
       
   182 		wp_die( __( '<strong>ERROR</strong>: "Table Prefix" can only contain numbers, letters, and underscores.' . $tryagain_link ) );
       
   183 
       
   184 	// Test the db connection.
       
   185 	/**#@+
       
   186 	 * @ignore
       
   187 	 */
       
   188 	define('DB_NAME', $dbname);
       
   189 	define('DB_USER', $uname);
       
   190 	define('DB_PASSWORD', $pwd);
       
   191 	define('DB_HOST', $dbhost);
       
   192 	/**#@-*/
       
   193 
       
   194 	// We'll fail here if the values are no good.
       
   195 	require_wp_db();
       
   196 	if ( ! empty( $wpdb->error ) )
       
   197 		wp_die( $wpdb->error->get_error_message() . $tryagain_link );
       
   198 
       
   199 	// Fetch or generate keys and salts.
       
   200 	$no_api = isset( $_POST['noapi'] );
       
   201 	if ( ! $no_api ) {
       
   202 		require_once( ABSPATH . WPINC . '/class-http.php' );
       
   203 		require_once( ABSPATH . WPINC . '/http.php' );
       
   204 		/**#@+
       
   205 		 * @ignore
       
   206 		 */
       
   207 		function get_bloginfo() {
       
   208 			return wp_guess_url();
       
   209 		}
       
   210 		/**#@-*/
       
   211 		$secret_keys = wp_remote_get( 'https://api.wordpress.org/secret-key/1.1/salt/' );
       
   212 	}
       
   213 
       
   214 	if ( $no_api || is_wp_error( $secret_keys ) ) {
       
   215 		$secret_keys = array();
       
   216 		require_once( ABSPATH . WPINC . '/pluggable.php' );
       
   217 		for ( $i = 0; $i < 8; $i++ ) {
       
   218 			$secret_keys[] = wp_generate_password( 64, true, true );
       
   219 		}
       
   220 	} else {
       
   221 		$secret_keys = explode( "\n", wp_remote_retrieve_body( $secret_keys ) );
       
   222 		foreach ( $secret_keys as $k => $v ) {
       
   223 			$secret_keys[$k] = substr( $v, 28, 64 );
       
   224 		}
       
   225 	}
       
   226 
       
   227 	$key = 0;
       
   228 	// Not a PHP5-style by-reference foreach, as this file must be parseable by PHP4.
       
   229 	foreach ( $config_file as $line_num => $line ) {
       
   230 		if ( '$table_prefix  =' == substr( $line, 0, 16 ) ) {
       
   231 			$config_file[ $line_num ] = '$table_prefix  = \'' . addcslashes( $prefix, "\\'" ) . "';\r\n";
       
   232 			continue;
       
   233 		}
       
   234 
       
   235 		if ( ! preg_match( '/^define\(\'([A-Z_]+)\',([ ]+)/', $line, $match ) )
       
   236 			continue;
       
   237 
       
   238 		$constant = $match[1];
       
   239 		$padding  = $match[2];
       
   240 
       
   241 		switch ( $constant ) {
       
   242 			case 'DB_NAME'     :
       
   243 			case 'DB_USER'     :
       
   244 			case 'DB_PASSWORD' :
       
   245 			case 'DB_HOST'     :
       
   246 				$config_file[ $line_num ] = "define('" . $constant . "'," . $padding . "'" . addcslashes( constant( $constant ), "\\'" ) . "');\r\n";
       
   247 				break;
       
   248 			case 'AUTH_KEY'         :
       
   249 			case 'SECURE_AUTH_KEY'  :
       
   250 			case 'LOGGED_IN_KEY'    :
       
   251 			case 'NONCE_KEY'        :
       
   252 			case 'AUTH_SALT'        :
       
   253 			case 'SECURE_AUTH_SALT' :
       
   254 			case 'LOGGED_IN_SALT'   :
       
   255 			case 'NONCE_SALT'       :
       
   256 				$config_file[ $line_num ] = "define('" . $constant . "'," . $padding . "'" . $secret_keys[$key++] . "');\r\n";
       
   257 				break;
       
   258 		}
       
   259 	}
       
   260 	unset( $line );
       
   261 
       
   262 	if ( ! is_writable(ABSPATH) ) :
       
   263 		setup_config_display_header();
       
   264 ?>
       
   265 <p><?php _e( "Sorry, but I can&#8217;t write the <code>wp-config.php</code> file." ); ?></p>
       
   266 <p><?php _e( 'You can create the <code>wp-config.php</code> manually and paste the following text into it.' ); ?></p>
       
   267 <textarea id="wp-config" cols="98" rows="15" class="code" readonly="readonly"><?php
       
   268 		foreach( $config_file as $line ) {
       
   269 			echo htmlentities($line, ENT_COMPAT, 'UTF-8');
       
   270 		}
       
   271 ?></textarea>
       
   272 <p><?php _e( 'After you&#8217;ve done that, click &#8220;Run the install.&#8221;' ); ?></p>
       
   273 <p class="step"><a href="install.php" class="button button-large"><?php _e( 'Run the install' ); ?></a></p>
       
   274 <script>
       
   275 (function(){
       
   276 var el=document.getElementById('wp-config');
       
   277 el.focus();
       
   278 el.select();
       
   279 })();
       
   280 </script>
       
   281 <?php
       
   282 	else :
       
   283 		// If this file doesn't exist, then we are using the wp-config-sample.php
       
   284 		// file one level up, which is for the develop repo.
       
   285 		if ( file_exists( ABSPATH . 'wp-config-sample.php' ) )
       
   286 			$path_to_wp_config = ABSPATH . 'wp-config.php';
       
   287 		else
       
   288 			$path_to_wp_config = dirname( ABSPATH ) . '/wp-config.php';
       
   289 
       
   290 		$handle = fopen( $path_to_wp_config, 'w' );
       
   291 		foreach( $config_file as $line ) {
       
   292 			fwrite( $handle, $line );
       
   293 		}
       
   294 		fclose( $handle );
       
   295 		chmod( $path_to_wp_config, 0666 );
       
   296 		setup_config_display_header();
       
   297 ?>
       
   298 <p><?php _e( "All right, sparky! You&#8217;ve made it through this part of the installation. WordPress can now communicate with your database. If you are ready, time now to&hellip;" ); ?></p>
       
   299 
       
   300 <p class="step"><a href="install.php" class="button button-large"><?php _e( 'Run the install' ); ?></a></p>
       
   301 <?php
       
   302 	endif;
       
   303 	break;
       
   304 }
       
   305 ?>
       
   306 </body>
       
   307 </html>