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