]> scripts.mit.edu Git - autoinstalls/wordpress.git/blob - wp-admin/setup-config.php
WordPress 4.3.1
[autoinstalls/wordpress.git] / wp-admin / setup-config.php
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 define('WP_INSTALLING', true);
18
19 /**
20  * We are blissfully unaware of anything.
21  */
22 define('WP_SETUP_CONFIG', true);
23
24 /**
25  * Disable error reporting
26  *
27  * Set this to error_reporting( -1 ) for debugging
28  */
29 error_reporting(0);
30
31 define( 'ABSPATH', dirname( dirname( __FILE__ ) ) . '/' );
32
33 require( ABSPATH . 'wp-settings.php' );
34
35 /** Load WordPress Administration Upgrade API */
36 require_once( ABSPATH . 'wp-admin/includes/upgrade.php' );
37
38 /** Load WordPress Translation Install API */
39 require_once( ABSPATH . 'wp-admin/includes/translation-install.php' );
40
41 nocache_headers();
42
43 // Support wp-config-sample.php one level up, for the develop repo.
44 if ( file_exists( ABSPATH . 'wp-config-sample.php' ) )
45         $config_file = file( ABSPATH . 'wp-config-sample.php' );
46 elseif ( file_exists( dirname( ABSPATH ) . '/wp-config-sample.php' ) )
47         $config_file = file( dirname( ABSPATH ) . '/wp-config-sample.php' );
48 else
49         wp_die( __( 'Sorry, I need a wp-config-sample.php file to work from. Please re-upload this file from your WordPress installation.' ) );
50
51 // Check if wp-config.php has been created
52 if ( file_exists( ABSPATH . 'wp-config.php' ) )
53         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>' );
54
55 // Check if wp-config.php exists above the root directory but is not part of another install
56 if ( file_exists(ABSPATH . '../wp-config.php' ) && ! file_exists( ABSPATH . '../wp-settings.php' ) )
57         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>' );
58
59 $step = isset( $_GET['step'] ) ? (int) $_GET['step'] : -1;
60
61 /**
62  * Display setup wp-config.php file header.
63  *
64  * @ignore
65  * @since 2.3.0
66  *
67  * @global string    $wp_local_package
68  * @global WP_Locale $wp_locale
69  *
70  * @param string|array $body_classes
71  */
72 function setup_config_display_header( $body_classes = array() ) {
73         $body_classes = (array) $body_classes;
74         $body_classes[] = 'wp-core-ui';
75         if ( is_rtl() ) {
76                 $body_classes[] = 'rtl';
77         }
78
79         header( 'Content-Type: text/html; charset=utf-8' );
80 ?>
81 <!DOCTYPE html>
82 <html xmlns="http://www.w3.org/1999/xhtml"<?php if ( is_rtl() ) echo ' dir="rtl"'; ?>>
83 <head>
84         <meta name="viewport" content="width=device-width" />
85         <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
86         <title><?php _e( 'WordPress &rsaquo; Setup Configuration File' ); ?></title>
87         <?php wp_admin_css( 'install', true ); ?>
88 </head>
89 <body class="<?php echo implode( ' ', $body_classes ); ?>">
90 <h1 id="logo"><a href="<?php esc_attr_e( 'https://wordpress.org/' ); ?>" tabindex="-1"><?php _e( 'WordPress' ); ?></a></h1>
91 <?php
92 } // end function setup_config_display_header();
93
94 $language = '';
95 if ( ! empty( $_REQUEST['language'] ) ) {
96         $language = preg_replace( '/[^a-zA-Z_]/', '', $_REQUEST['language'] );
97 } elseif ( isset( $GLOBALS['wp_local_package'] ) ) {
98         $language = $GLOBALS['wp_local_package'];
99 }
100
101 switch($step) {
102         case -1:
103                 if ( wp_can_install_language_pack() && empty( $language ) && ( $languages = wp_get_available_translations() ) ) {
104                         setup_config_display_header( 'language-chooser' );
105                         echo '<form id="setup" method="post" action="?step=0">';
106                         wp_install_language_form( $languages );
107                         echo '</form>';
108                         break;
109                 }
110
111                 // Deliberately fall through if we can't reach the translations API.
112
113         case 0:
114                 if ( ! empty( $language ) ) {
115                         $loaded_language = wp_download_language_pack( $language );
116                         if ( $loaded_language ) {
117                                 load_default_textdomain( $loaded_language );
118                                 $GLOBALS['wp_locale'] = new WP_Locale();
119                         }
120                 }
121
122                 setup_config_display_header();
123                 $step_1 = 'setup-config.php?step=1';
124                 if ( isset( $_REQUEST['noapi'] ) ) {
125                         $step_1 .= '&amp;noapi';
126                 }
127                 if ( ! empty( $loaded_language ) ) {
128                         $step_1 .= '&amp;language=' . $loaded_language;
129                 }
130 ?>
131
132 <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>
133 <ol>
134         <li><?php _e( 'Database name' ); ?></li>
135         <li><?php _e( 'Database username' ); ?></li>
136         <li><?php _e( 'Database password' ); ?></li>
137         <li><?php _e( 'Database host' ); ?></li>
138         <li><?php _e( 'Table prefix (if you want to run more than one WordPress in a single database)' ); ?></li>
139 </ol>
140 <p>
141         <?php _e( 'We&#8217;re going to use this information to create a <code>wp-config.php</code> file.' ); ?>
142         <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>
143         <?php _e( "Need more help? <a href='https://codex.wordpress.org/Editing_wp-config.php'>We got it</a>." ); ?>
144 </p>
145 <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>
146
147 <p class="step"><a href="<?php echo $step_1; ?>" class="button button-large"><?php _e( 'Let&#8217;s go!' ); ?></a></p>
148 <?php
149         break;
150
151         case 1:
152                 load_default_textdomain( $language );
153                 $GLOBALS['wp_locale'] = new WP_Locale();
154
155                 setup_config_display_header();
156         ?>
157 <form method="post" action="setup-config.php?step=2">
158         <p><?php _e( "Below you should enter your database connection details. If you&#8217;re not sure about these, contact your host." ); ?></p>
159         <table class="form-table">
160                 <tr>
161                         <th scope="row"><label for="dbname"><?php _e( 'Database Name' ); ?></label></th>
162                         <td><input name="dbname" id="dbname" type="text" size="25" value="wordpress" /></td>
163                         <td><?php _e( 'The name of the database you want to run WP in.' ); ?></td>
164                 </tr>
165                 <tr>
166                         <th scope="row"><label for="uname"><?php _e( 'User Name' ); ?></label></th>
167                         <td><input name="uname" id="uname" type="text" size="25" value="<?php echo htmlspecialchars( _x( 'username', 'example username' ), ENT_QUOTES ); ?>" /></td>
168                         <td><?php _e( 'Your MySQL username' ); ?></td>
169                 </tr>
170                 <tr>
171                         <th scope="row"><label for="pwd"><?php _e( 'Password' ); ?></label></th>
172                         <td><input name="pwd" id="pwd" type="text" size="25" value="<?php echo htmlspecialchars( _x( 'password', 'example password' ), ENT_QUOTES ); ?>" autocomplete="off" /></td>
173                         <td><?php _e( '&hellip;and your MySQL password.' ); ?></td>
174                 </tr>
175                 <tr>
176                         <th scope="row"><label for="dbhost"><?php _e( 'Database Host' ); ?></label></th>
177                         <td><input name="dbhost" id="dbhost" type="text" size="25" value="localhost" /></td>
178                         <td><?php _e( 'You should be able to get this info from your web host, if <code>localhost</code> does not work.' ); ?></td>
179                 </tr>
180                 <tr>
181                         <th scope="row"><label for="prefix"><?php _e( 'Table Prefix' ); ?></label></th>
182                         <td><input name="prefix" id="prefix" type="text" value="wp_" size="25" /></td>
183                         <td><?php _e( 'If you want to run multiple WordPress installations in a single database, change this.' ); ?></td>
184                 </tr>
185         </table>
186         <?php if ( isset( $_GET['noapi'] ) ) { ?><input name="noapi" type="hidden" value="1" /><?php } ?>
187         <input type="hidden" name="language" value="<?php echo esc_attr( $language ); ?>" />
188         <p class="step"><input name="submit" type="submit" value="<?php echo htmlspecialchars( __( 'Submit' ), ENT_QUOTES ); ?>" class="button button-large" /></p>
189 </form>
190 <?php
191         break;
192
193         case 2:
194         load_default_textdomain( $language );
195         $GLOBALS['wp_locale'] = new WP_Locale();
196
197         $dbname = trim( wp_unslash( $_POST[ 'dbname' ] ) );
198         $uname = trim( wp_unslash( $_POST[ 'uname' ] ) );
199         $pwd = trim( wp_unslash( $_POST[ 'pwd' ] ) );
200         $dbhost = trim( wp_unslash( $_POST[ 'dbhost' ] ) );
201         $prefix = trim( wp_unslash( $_POST[ 'prefix' ] ) );
202
203         $step_1 = 'setup-config.php?step=1';
204         $install = 'install.php';
205         if ( isset( $_REQUEST['noapi'] ) ) {
206                 $step_1 .= '&amp;noapi';
207         }
208
209         if ( ! empty( $language ) ) {
210                 $step_1 .= '&amp;language=' . $language;
211                 $install .= '?language=' . $language;
212         } else {
213                 $install .= '?language=en_US';
214         }
215
216         $tryagain_link = '</p><p class="step"><a href="' . $step_1 . '" onclick="javascript:history.go(-1);return false;" class="button button-large">' . __( 'Try again' ) . '</a>';
217
218         if ( empty( $prefix ) )
219                 wp_die( __( '<strong>ERROR</strong>: "Table Prefix" must not be empty.' . $tryagain_link ) );
220
221         // Validate $prefix: it can only contain letters, numbers and underscores.
222         if ( preg_match( '|[^a-z0-9_]|i', $prefix ) )
223                 wp_die( __( '<strong>ERROR</strong>: "Table Prefix" can only contain numbers, letters, and underscores.' . $tryagain_link ) );
224
225         // Test the db connection.
226         /**#@+
227          * @ignore
228          */
229         define('DB_NAME', $dbname);
230         define('DB_USER', $uname);
231         define('DB_PASSWORD', $pwd);
232         define('DB_HOST', $dbhost);
233         /**#@-*/
234
235         // Re-construct $wpdb with these new values.
236         unset( $wpdb );
237         require_wp_db();
238
239         /*
240          * The wpdb constructor bails when WP_SETUP_CONFIG is set, so we must
241          * fire this manually. We'll fail here if the values are no good.
242          */
243         $wpdb->db_connect();
244
245         if ( ! empty( $wpdb->error ) )
246                 wp_die( $wpdb->error->get_error_message() . $tryagain_link );
247
248         // Fetch or generate keys and salts.
249         $no_api = isset( $_POST['noapi'] );
250         if ( ! $no_api ) {
251                 $secret_keys = wp_remote_get( 'https://api.wordpress.org/secret-key/1.1/salt/' );
252         }
253
254         if ( $no_api || is_wp_error( $secret_keys ) ) {
255                 $secret_keys = array();
256                 for ( $i = 0; $i < 8; $i++ ) {
257                         $secret_keys[] = wp_generate_password( 64, true, true );
258                 }
259         } else {
260                 $secret_keys = explode( "\n", wp_remote_retrieve_body( $secret_keys ) );
261                 foreach ( $secret_keys as $k => $v ) {
262                         $secret_keys[$k] = substr( $v, 28, 64 );
263                 }
264         }
265
266         $key = 0;
267         // Not a PHP5-style by-reference foreach, as this file must be parseable by PHP4.
268         foreach ( $config_file as $line_num => $line ) {
269                 if ( '$table_prefix  =' == substr( $line, 0, 16 ) ) {
270                         $config_file[ $line_num ] = '$table_prefix  = \'' . addcslashes( $prefix, "\\'" ) . "';\r\n";
271                         continue;
272                 }
273
274                 if ( ! preg_match( '/^define\(\'([A-Z_]+)\',([ ]+)/', $line, $match ) )
275                         continue;
276
277                 $constant = $match[1];
278                 $padding  = $match[2];
279
280                 switch ( $constant ) {
281                         case 'DB_NAME'     :
282                         case 'DB_USER'     :
283                         case 'DB_PASSWORD' :
284                         case 'DB_HOST'     :
285                                 $config_file[ $line_num ] = "define('" . $constant . "'," . $padding . "'" . addcslashes( constant( $constant ), "\\'" ) . "');\r\n";
286                                 break;
287                         case 'DB_CHARSET'  :
288                                 if ( 'utf8mb4' === $wpdb->charset || ( ! $wpdb->charset && $wpdb->has_cap( 'utf8mb4' ) ) ) {
289                                         $config_file[ $line_num ] = "define('" . $constant . "'," . $padding . "'utf8mb4');\r\n";
290                                 }
291                                 break;
292                         case 'AUTH_KEY'         :
293                         case 'SECURE_AUTH_KEY'  :
294                         case 'LOGGED_IN_KEY'    :
295                         case 'NONCE_KEY'        :
296                         case 'AUTH_SALT'        :
297                         case 'SECURE_AUTH_SALT' :
298                         case 'LOGGED_IN_SALT'   :
299                         case 'NONCE_SALT'       :
300                                 $config_file[ $line_num ] = "define('" . $constant . "'," . $padding . "'" . $secret_keys[$key++] . "');\r\n";
301                                 break;
302                 }
303         }
304         unset( $line );
305
306         if ( ! is_writable(ABSPATH) ) :
307                 setup_config_display_header();
308 ?>
309 <p><?php _e( "Sorry, but I can&#8217;t write the <code>wp-config.php</code> file." ); ?></p>
310 <p><?php _e( 'You can create the <code>wp-config.php</code> manually and paste the following text into it.' ); ?></p>
311 <textarea id="wp-config" cols="98" rows="15" class="code" readonly="readonly"><?php
312                 foreach( $config_file as $line ) {
313                         echo htmlentities($line, ENT_COMPAT, 'UTF-8');
314                 }
315 ?></textarea>
316 <p><?php _e( 'After you&#8217;ve done that, click &#8220;Run the install.&#8221;' ); ?></p>
317 <p class="step"><a href="<?php echo $install; ?>" class="button button-large"><?php _e( 'Run the install' ); ?></a></p>
318 <script>
319 (function(){
320 if ( ! /iPad|iPod|iPhone/.test( navigator.userAgent ) ) {
321         var el = document.getElementById('wp-config');
322         el.focus();
323         el.select();
324 }
325 })();
326 </script>
327 <?php
328         else :
329                 /*
330                  * If this file doesn't exist, then we are using the wp-config-sample.php
331                  * file one level up, which is for the develop repo.
332                  */
333                 if ( file_exists( ABSPATH . 'wp-config-sample.php' ) )
334                         $path_to_wp_config = ABSPATH . 'wp-config.php';
335                 else
336                         $path_to_wp_config = dirname( ABSPATH ) . '/wp-config.php';
337
338                 $handle = fopen( $path_to_wp_config, 'w' );
339                 foreach( $config_file as $line ) {
340                         fwrite( $handle, $line );
341                 }
342                 fclose( $handle );
343                 chmod( $path_to_wp_config, 0666 );
344                 setup_config_display_header();
345 ?>
346 <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>
347
348 <p class="step"><a href="<?php echo $install; ?>" class="button button-large"><?php _e( 'Run the install' ); ?></a></p>
349 <?php
350         endif;
351         break;
352 }
353 ?>
354 <?php wp_print_scripts( 'language-chooser' ); ?>
355 </body>
356 </html>