]> scripts.mit.edu Git - autoinstalls/wordpress.git/blob - wp-admin/setup-config.php
Wordpress 3.2.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  * @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_once(ABSPATH . WPINC . '/load.php');
45 require_once(ABSPATH . WPINC . '/version.php');
46 wp_check_php_mysql_versions();
47
48 require_once(ABSPATH . WPINC . '/compat.php');
49 require_once(ABSPATH . WPINC . '/functions.php');
50 require_once(ABSPATH . WPINC . '/class-wp-error.php');
51
52 if (!file_exists(ABSPATH . 'wp-config-sample.php'))
53         wp_die('Sorry, I need a wp-config-sample.php file to work from. Please re-upload this file from your WordPress installation.');
54
55 $configFile = file(ABSPATH . 'wp-config-sample.php');
56
57 // Check if wp-config.php has been created
58 if (file_exists(ABSPATH . 'wp-config.php'))
59         wp_die("<p>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='install.php'>installing now</a>.</p>");
60
61 // Check if wp-config.php exists above the root directory but is not part of another install
62 if (file_exists(ABSPATH . '../wp-config.php') && ! file_exists(ABSPATH . '../wp-settings.php'))
63         wp_die("<p>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>.</p>");
64
65 if (isset($_GET['step']))
66         $step = $_GET['step'];
67 else
68         $step = 0;
69
70 /**
71  * Display setup wp-config.php file header.
72  *
73  * @ignore
74  * @since 2.3.0
75  * @package WordPress
76  * @subpackage Installer_WP_Config
77  */
78 function display_header() {
79         header( 'Content-Type: text/html; charset=utf-8' );
80 ?>
81 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
82 <html xmlns="http://www.w3.org/1999/xhtml">
83 <head>
84 <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
85 <title>WordPress &rsaquo; Setup Configuration File</title>
86 <link rel="stylesheet" href="css/install.css" type="text/css" />
87
88 </head>
89 <body>
90 <h1 id="logo"><img alt="WordPress" src="images/wordpress-logo.png" /></h1>
91 <?php
92 }//end function display_header();
93
94 switch($step) {
95         case 0:
96                 display_header();
97 ?>
98
99 <p>Welcome to WordPress. Before getting started, we need some information on the database. You will need to know the following items before proceeding.</p>
100 <ol>
101         <li>Database name</li>
102         <li>Database username</li>
103         <li>Database password</li>
104         <li>Database host</li>
105         <li>Table prefix (if you want to run more than one WordPress in a single database) </li>
106 </ol>
107 <p><strong>If for any reason this automatic file creation doesn't work, don'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>
108 <p>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>
109
110 <p class="step"><a href="setup-config.php?step=1<?php if ( isset( $_GET['noapi'] ) ) echo '&amp;noapi'; ?>" class="button">Let&#8217;s go!</a></p>
111 <?php
112         break;
113
114         case 1:
115                 display_header();
116         ?>
117 <form method="post" action="setup-config.php?step=2">
118         <p>Below you should enter your database connection details. If you're not sure about these, contact your host. </p>
119         <table class="form-table">
120                 <tr>
121                         <th scope="row"><label for="dbname">Database Name</label></th>
122                         <td><input name="dbname" id="dbname" type="text" size="25" value="wordpress" /></td>
123                         <td>The name of the database you want to run WP in. </td>
124                 </tr>
125                 <tr>
126                         <th scope="row"><label for="uname">User Name</label></th>
127                         <td><input name="uname" id="uname" type="text" size="25" value="username" /></td>
128                         <td>Your MySQL username</td>
129                 </tr>
130                 <tr>
131                         <th scope="row"><label for="pwd">Password</label></th>
132                         <td><input name="pwd" id="pwd" type="text" size="25" value="password" /></td>
133                         <td>...and MySQL password.</td>
134                 </tr>
135                 <tr>
136                         <th scope="row"><label for="dbhost">Database Host</label></th>
137                         <td><input name="dbhost" id="dbhost" type="text" size="25" value="localhost" /></td>
138                         <td>You should be able to get this info from your web host, if <code>localhost</code> does not work.</td>
139                 </tr>
140                 <tr>
141                         <th scope="row"><label for="prefix">Table Prefix</label></th>
142                         <td><input name="prefix" id="prefix" type="text" id="prefix" value="wp_" size="25" /></td>
143                         <td>If you want to run multiple WordPress installations in a single database, change this.</td>
144                 </tr>
145         </table>
146         <?php if ( isset( $_GET['noapi'] ) ) { ?><input name="noapi" type="hidden" value="true" /><?php } ?>
147         <p class="step"><input name="submit" type="submit" value="Submit" class="button" /></p>
148 </form>
149 <?php
150         break;
151
152         case 2:
153         $dbname  = trim($_POST['dbname']);
154         $uname   = trim($_POST['uname']);
155         $passwrd = trim($_POST['pwd']);
156         $dbhost  = trim($_POST['dbhost']);
157         $prefix  = trim($_POST['prefix']);
158         if ( empty($prefix) )
159                 $prefix = 'wp_';
160
161         // Validate $prefix: it can only contain letters, numbers and underscores
162         if ( preg_match( '|[^a-z0-9_]|i', $prefix ) )
163                 wp_die( /*WP_I18N_BAD_PREFIX*/'<strong>ERROR</strong>: "Table Prefix" can only contain numbers, letters, and underscores.'/*/WP_I18N_BAD_PREFIX*/ );
164
165         // Test the db connection.
166         /**#@+
167          * @ignore
168          */
169         define('DB_NAME', $dbname);
170         define('DB_USER', $uname);
171         define('DB_PASSWORD', $passwrd);
172         define('DB_HOST', $dbhost);
173         /**#@-*/
174
175         // We'll fail here if the values are no good.
176         require_wp_db();
177         if ( ! empty( $wpdb->error ) ) {
178                 $back = '<p class="step"><a href="setup-config.php?step=1" onclick="javascript:history.go(-1);return false;" class="button">Try Again</a></p>';
179                 wp_die( $wpdb->error->get_error_message() . $back );
180         }
181
182         // Fetch or generate keys and salts.
183         $no_api = isset( $_POST['noapi'] );
184         require_once( ABSPATH . WPINC . '/plugin.php' );
185         require_once( ABSPATH . WPINC . '/l10n.php' );
186         require_once( ABSPATH . WPINC . '/pomo/translations.php' );
187         if ( ! $no_api ) {
188                 require_once( ABSPATH . WPINC . '/class-http.php' );
189                 require_once( ABSPATH . WPINC . '/http.php' );
190                 wp_fix_server_vars();
191                 /**#@+
192                  * @ignore
193                  */
194                 function get_bloginfo() {
195                         return ( ( is_ssl() ? 'https://' : 'http://' ) . $_SERVER['HTTP_HOST'] . str_replace( $_SERVER['PHP_SELF'], '/wp-admin/setup-config.php', '' ) );
196                 }
197                 /**#@-*/
198                 $secret_keys = wp_remote_get( 'https://api.wordpress.org/secret-key/1.1/salt/' );
199         }
200
201         if ( $no_api || is_wp_error( $secret_keys ) ) {
202                 $secret_keys = array();
203                 require_once( ABSPATH . WPINC . '/pluggable.php' );
204                 for ( $i = 0; $i < 8; $i++ ) {
205                         $secret_keys[] = wp_generate_password( 64, true, true );
206                 }
207         } else {
208                 $secret_keys = explode( "\n", wp_remote_retrieve_body( $secret_keys ) );
209                 foreach ( $secret_keys as $k => $v ) {
210                         $secret_keys[$k] = substr( $v, 28, 64 );
211                 }
212         }
213         $key = 0;
214
215         foreach ($configFile as $line_num => $line) {
216                 switch (substr($line,0,16)) {
217                         case "define('DB_NAME'":
218                                 $configFile[$line_num] = str_replace("database_name_here", $dbname, $line);
219                                 break;
220                         case "define('DB_USER'":
221                                 $configFile[$line_num] = str_replace("'username_here'", "'$uname'", $line);
222                                 break;
223                         case "define('DB_PASSW":
224                                 $configFile[$line_num] = str_replace("'password_here'", "'$passwrd'", $line);
225                                 break;
226                         case "define('DB_HOST'":
227                                 $configFile[$line_num] = str_replace("localhost", $dbhost, $line);
228                                 break;
229                         case '$table_prefix  =':
230                                 $configFile[$line_num] = str_replace('wp_', $prefix, $line);
231                                 break;
232                         case "define('AUTH_KEY":
233                         case "define('SECURE_A":
234                         case "define('LOGGED_I":
235                         case "define('NONCE_KE":
236                         case "define('AUTH_SAL":
237                         case "define('SECURE_A":
238                         case "define('LOGGED_I":
239                         case "define('NONCE_SA":
240                                 $configFile[$line_num] = str_replace('put your unique phrase here', $secret_keys[$key++], $line );
241                                 break;
242                 }
243         }
244         if ( ! is_writable(ABSPATH) ) :
245                 display_header();
246 ?>
247 <p>Sorry, but I can't write the <code>wp-config.php</code> file.</p>
248 <p>You can create the <code>wp-config.php</code> manually and paste the following text into it.</p>
249 <textarea cols="98" rows="15" class="code"><?php
250                 foreach( $configFile as $line ) {
251                         echo htmlentities($line, ENT_COMPAT, 'UTF-8');
252                 }
253 ?></textarea>
254 <p>After you've done that, click "Run the install."</p>
255 <p class="step"><a href="install.php" class="button">Run the install</a></p>
256 <?php
257         else :
258                 $handle = fopen(ABSPATH . 'wp-config.php', 'w');
259                 foreach( $configFile as $line ) {
260                         fwrite($handle, $line);
261                 }
262                 fclose($handle);
263                 chmod(ABSPATH . 'wp-config.php', 0666);
264                 display_header();
265 ?>
266 <p>All right sparky! You'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>
267
268 <p class="step"><a href="install.php" class="button">Run the install</a></p>
269 <?php
270         endif;
271         break;
272 }
273 ?>
274 </body>
275 </html>