~canonical-sysadmins/wordpress/4.7.4

« back to all changes in this revision

Viewing changes to wp-admin/setup-config.php

  • Committer: Jacek Nykis
  • Date: 2015-01-05 16:17:05 UTC
  • Revision ID: jacek.nykis@canonical.com-20150105161705-w544l1h5mcg7u4w9
Initial commit

Show diffs side-by-side

added added

removed removed

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