4 * |
4 * |
5 * @package WordPress |
5 * @package WordPress |
6 * @subpackage Administration |
6 * @subpackage Administration |
7 */ |
7 */ |
8 |
8 |
|
9 // Sanity check. |
|
10 if ( false ) { |
|
11 ?> |
|
12 <!DOCTYPE html> |
|
13 <html xmlns="http://www.w3.org/1999/xhtml"> |
|
14 <head> |
|
15 <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> |
|
16 <title>Error: PHP is not running</title> |
|
17 </head> |
|
18 <body> |
|
19 <h1 id="logo"><img alt="WordPress" src="images/wordpress-logo.png?ver=20120216" /></h1> |
|
20 <h2>Error: PHP is not running</h2> |
|
21 <p>WordPress requires that your web server is running PHP. Your server does not have PHP installed, or PHP is turned off.</p> |
|
22 </body> |
|
23 </html> |
|
24 <?php |
|
25 } |
|
26 |
9 /** |
27 /** |
10 * We are installing WordPress. |
28 * We are installing WordPress. |
11 * |
29 * |
12 * @since unknown |
30 * @since 1.5.1 |
13 * @var bool |
31 * @var bool |
14 */ |
32 */ |
15 define('WP_INSTALLING', true); |
33 define( 'WP_INSTALLING', true ); |
16 |
34 |
17 /** Load WordPress Bootstrap */ |
35 /** Load WordPress Bootstrap */ |
18 require_once(dirname(dirname(__FILE__)) . '/wp-load.php'); |
36 require_once( dirname( dirname( __FILE__ ) ) . '/wp-load.php' ); |
19 |
37 |
20 /** Load WordPress Administration Upgrade API */ |
38 /** Load WordPress Administration Upgrade API */ |
21 require_once(dirname(__FILE__) . '/includes/upgrade.php'); |
39 require_once( dirname( __FILE__ ) . '/includes/upgrade.php' ); |
22 |
40 |
23 if (isset($_GET['step'])) |
41 /** Load wpdb */ |
24 $step = $_GET['step']; |
42 require_once(dirname(dirname(__FILE__)) . '/wp-includes/wp-db.php'); |
25 else |
43 |
26 $step = 0; |
44 $step = isset( $_GET['step'] ) ? (int) $_GET['step'] : 0; |
27 |
45 |
28 /** |
46 /** |
29 * Display install header. |
47 * Display install header. |
30 * |
48 * |
31 * @since unknown |
49 * @since 2.5.0 |
32 * @package WordPress |
50 * @package WordPress |
33 * @subpackage Installer |
51 * @subpackage Installer |
34 */ |
52 */ |
35 function display_header() { |
53 function display_header() { |
36 header( 'Content-Type: text/html; charset=utf-8' ); |
54 header( 'Content-Type: text/html; charset=utf-8' ); |
37 ?> |
55 ?> |
38 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> |
56 <!DOCTYPE html> |
39 <html xmlns="http://www.w3.org/1999/xhtml" <?php language_attributes(); ?>> |
57 <html xmlns="http://www.w3.org/1999/xhtml" <?php language_attributes(); ?>> |
40 <head> |
58 <head> |
41 <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> |
59 <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> |
42 <title><?php _e('WordPress › Installation'); ?></title> |
60 <title><?php _e( 'WordPress › Installation' ); ?></title> |
43 <?php wp_admin_css( 'install', true ); ?> |
61 <?php wp_admin_css( 'install', true ); ?> |
44 </head> |
62 </head> |
45 <body> |
63 <body<?php if ( is_rtl() ) echo ' class="rtl"'; ?>> |
46 <h1 id="logo"><img alt="WordPress" src="images/wordpress-logo.png" /></h1> |
64 <h1 id="logo"><img alt="WordPress" src="images/wordpress-logo.png?ver=20120216" /></h1> |
47 |
65 |
48 <?php |
66 <?php |
49 }//end function display_header(); |
67 } // end display_header() |
50 |
68 |
|
69 /** |
|
70 * Display installer setup form. |
|
71 * |
|
72 * @since 2.8.0 |
|
73 * @package WordPress |
|
74 * @subpackage Installer |
|
75 */ |
51 function display_setup_form( $error = null ) { |
76 function display_setup_form( $error = null ) { |
|
77 global $wpdb; |
|
78 $user_table = ( $wpdb->get_var("SHOW TABLES LIKE '$wpdb->users'") != null ); |
|
79 |
52 // Ensure that Blogs appear in search engines by default |
80 // Ensure that Blogs appear in search engines by default |
53 $blog_public = 1; |
81 $blog_public = 1; |
54 if ( isset($_POST) && !empty($_POST) ) { |
82 if ( ! empty( $_POST ) ) |
55 $blog_public = isset($_POST['blog_public']); |
83 $blog_public = isset( $_POST['blog_public'] ); |
56 } |
84 |
|
85 $weblog_title = isset( $_POST['weblog_title'] ) ? trim( stripslashes( $_POST['weblog_title'] ) ) : ''; |
|
86 $user_name = isset($_POST['user_name']) ? trim( stripslashes( $_POST['user_name'] ) ) : 'admin'; |
|
87 $admin_password = isset($_POST['admin_password']) ? trim( stripslashes( $_POST['admin_password'] ) ) : ''; |
|
88 $admin_email = isset( $_POST['admin_email'] ) ? trim( stripslashes( $_POST['admin_email'] ) ) : ''; |
57 |
89 |
58 if ( ! is_null( $error ) ) { |
90 if ( ! is_null( $error ) ) { |
59 ?> |
91 ?> |
60 <p><?php printf( __('<strong>ERROR</strong>: %s'), $error); ?></p> |
92 <p class="message"><?php printf( __( '<strong>ERROR</strong>: %s' ), $error ); ?></p> |
61 <?php } ?> |
93 <?php } ?> |
62 <form id="setup" method="post" action="install.php?step=2"> |
94 <form id="setup" method="post" action="install.php?step=2"> |
63 <table class="form-table"> |
95 <table class="form-table"> |
64 <tr> |
96 <tr> |
65 <th scope="row"><label for="weblog_title"><?php _e('Blog Title'); ?></label></th> |
97 <th scope="row"><label for="weblog_title"><?php _e( 'Site Title' ); ?></label></th> |
66 <td><input name="weblog_title" type="text" id="weblog_title" size="25" value="<?php echo ( isset($_POST['weblog_title']) ? esc_attr($_POST['weblog_title']) : '' ); ?>" /></td> |
98 <td><input name="weblog_title" type="text" id="weblog_title" size="25" value="<?php echo esc_attr( $weblog_title ); ?>" /></td> |
67 </tr> |
99 </tr> |
68 <tr> |
100 <tr> |
69 <th scope="row"><label for="admin_email"><?php _e('Your E-mail'); ?></label></th> |
101 <th scope="row"><label for="user_name"><?php _e('Username'); ?></label></th> |
70 <td><input name="admin_email" type="text" id="admin_email" size="25" value="<?php echo ( isset($_POST['admin_email']) ? esc_attr($_POST['admin_email']) : '' ); ?>" /><br /> |
102 <td> |
71 <?php _e('Double-check your email address before continuing.'); ?></td> |
103 <?php |
72 </tr> |
104 if ( $user_table ) { |
73 <tr> |
105 _e('User(s) already exists.'); |
74 <td colspan="2"><label><input type="checkbox" name="blog_public" value="1" <?php checked($blog_public); ?> /> <?php _e('Allow my blog to appear in search engines like Google and Technorati.'); ?></label></td> |
106 } else { |
|
107 ?><input name="user_name" type="text" id="user_login" size="25" value="<?php echo esc_attr( sanitize_user( $user_name, true ) ); ?>" /> |
|
108 <p><?php _e( 'Usernames can have only alphanumeric characters, spaces, underscores, hyphens, periods and the @ symbol.' ); ?></p> |
|
109 <?php |
|
110 } ?> |
|
111 </td> |
|
112 </tr> |
|
113 <?php if ( ! $user_table ) : ?> |
|
114 <tr> |
|
115 <th scope="row"> |
|
116 <label for="admin_password"><?php _e('Password, twice'); ?></label> |
|
117 <p><?php _e('A password will be automatically generated for you if you leave this blank.'); ?></p> |
|
118 </th> |
|
119 <td> |
|
120 <input name="admin_password" type="password" id="pass1" size="25" value="" /> |
|
121 <p><input name="admin_password2" type="password" id="pass2" size="25" value="" /></p> |
|
122 <div id="pass-strength-result"><?php _e('Strength indicator'); ?></div> |
|
123 <p><?php _e('Hint: The password should be at least seven characters long. To make it stronger, use upper and lower case letters, numbers and symbols like ! " ? $ % ^ & ).'); ?></p> |
|
124 </td> |
|
125 </tr> |
|
126 <?php endif; ?> |
|
127 <tr> |
|
128 <th scope="row"><label for="admin_email"><?php _e( 'Your E-mail' ); ?></label></th> |
|
129 <td><input name="admin_email" type="text" id="admin_email" size="25" value="<?php echo esc_attr( $admin_email ); ?>" /> |
|
130 <p><?php _e( 'Double-check your email address before continuing.' ); ?></p></td> |
|
131 </tr> |
|
132 <tr> |
|
133 <th scope="row"><label for="blog_public"><?php _e( 'Privacy' ); ?></label></th> |
|
134 <td colspan="2"><label><input type="checkbox" name="blog_public" value="1" <?php checked( $blog_public ); ?> /> <?php _e( 'Allow search engines to index this site.' ); ?></label></td> |
75 </tr> |
135 </tr> |
76 </table> |
136 </table> |
77 <p class="step"><input type="submit" name="Submit" value="<?php esc_attr_e('Install WordPress'); ?>" class="button" /></p> |
137 <p class="step"><input type="submit" name="Submit" value="<?php esc_attr_e( 'Install WordPress' ); ?>" class="button" /></p> |
78 </form> |
138 </form> |
79 <?php |
139 <?php |
80 } |
140 } // end display_setup_form() |
81 |
141 |
82 // Let's check to make sure WP isn't already installed. |
142 // Let's check to make sure WP isn't already installed. |
83 if ( is_blog_installed() ) {display_header(); die('<h1>'.__('Already Installed').'</h1><p>'.__('You appear to have already installed WordPress. To reinstall please clear your old database tables first.').'</p></body></html>');} |
143 if ( is_blog_installed() ) { |
|
144 display_header(); |
|
145 die( '<h1>' . __( 'Already Installed' ) . '</h1><p>' . __( 'You appear to have already installed WordPress. To reinstall please clear your old database tables first.' ) . '</p><p class="step"><a href="../wp-login.php" class="button">' . __('Log In') . '</a></p></body></html>' ); |
|
146 } |
84 |
147 |
85 $php_version = phpversion(); |
148 $php_version = phpversion(); |
86 $mysql_version = $wpdb->db_version(); |
149 $mysql_version = $wpdb->db_version(); |
87 $php_compat = version_compare( $php_version, $required_php_version, '>=' ); |
150 $php_compat = version_compare( $php_version, $required_php_version, '>=' ); |
88 $mysql_compat = version_compare( $mysql_version, $required_mysql_version, '>=' ) || file_exists( WP_CONTENT_DIR . '/db.php' ); |
151 $mysql_compat = version_compare( $mysql_version, $required_mysql_version, '>=' ) || file_exists( WP_CONTENT_DIR . '/db.php' ); |
89 |
152 |
90 if ( !$mysql_compat && !$php_compat ) |
153 if ( !$mysql_compat && !$php_compat ) |
91 $compat = sprintf( __('You cannot install because WordPress %1$s requires PHP version %2$s or higher and MySQL version %3$s or higher. You are running PHP version %4$s and MySQL version %5$s.'), $wp_version, $required_php_version, $required_mysql_version, $php_version, $mysql_version ); |
154 $compat = sprintf( __( 'You cannot install because <a href="http://codex.wordpress.org/Version_%1$s">WordPress %1$s</a> requires PHP version %2$s or higher and MySQL version %3$s or higher. You are running PHP version %4$s and MySQL version %5$s.' ), $wp_version, $required_php_version, $required_mysql_version, $php_version, $mysql_version ); |
92 elseif ( !$php_compat ) |
155 elseif ( !$php_compat ) |
93 $compat = sprintf( __('You cannot install because WordPress %1$s requires PHP version %2$s or higher. You are running version %3$s.'), $wp_version, $required_php_version, $php_version ); |
156 $compat = sprintf( __( 'You cannot install because <a href="http://codex.wordpress.org/Version_%1$s">WordPress %1$s</a> requires PHP version %2$s or higher. You are running version %3$s.' ), $wp_version, $required_php_version, $php_version ); |
94 elseif ( !$mysql_compat ) |
157 elseif ( !$mysql_compat ) |
95 $compat = sprintf( __('You cannot install because WordPress %1$s requires MySQL version %2$s or higher. You are running version %3$s.'), $wp_version, $required_mysql_version, $mysql_version ); |
158 $compat = sprintf( __( 'You cannot install because <a href="http://codex.wordpress.org/Version_%1$s">WordPress %1$s</a> requires MySQL version %2$s or higher. You are running version %3$s.' ), $wp_version, $required_mysql_version, $mysql_version ); |
96 |
159 |
97 if ( !$mysql_compat || !$php_compat ) { |
160 if ( !$mysql_compat || !$php_compat ) { |
98 display_header(); |
161 display_header(); |
99 die('<h1>' . __('Insufficient Requirements') . '</h1><p>' . $compat . '</p></body></html>'); |
162 die( '<h1>' . __( 'Insufficient Requirements' ) . '</h1><p>' . $compat . '</p></body></html>' ); |
|
163 } |
|
164 |
|
165 if ( ! is_string( $wpdb->base_prefix ) || '' === $wpdb->base_prefix ) { |
|
166 display_header(); |
|
167 die( '<h1>' . __( 'Configuration Error' ) . '</h1><p>' . __( 'Your <code>wp-config.php</code> file has an empty database table prefix, which is not supported.' ) . '</p></body></html>' ); |
100 } |
168 } |
101 |
169 |
102 switch($step) { |
170 switch($step) { |
103 case 0: |
171 case 0: // Step 1 |
104 case 1: // in case people are directly linking to this |
172 case 1: // Step 1, direct link. |
105 display_header(); |
173 display_header(); |
106 ?> |
174 ?> |
107 <h1><?php _e('Welcome'); ?></h1> |
175 <h1><?php _ex( 'Welcome', 'Howdy' ); ?></h1> |
108 <p><?php printf(__('Welcome to the famous five minute WordPress installation process! You may want to browse the <a href="%s">ReadMe documentation</a> at your leisure. Otherwise, just fill in the information below and you’ll be on your way to using the most extendable and powerful personal publishing platform in the world.'), '../readme.html'); ?></p> |
176 <p><?php printf( __( 'Welcome to the famous five minute WordPress installation process! You may want to browse the <a href="%s">ReadMe documentation</a> at your leisure. Otherwise, just fill in the information below and you’ll be on your way to using the most extendable and powerful personal publishing platform in the world.' ), '../readme.html' ); ?></p> |
109 <!--<h2 class="step"><a href="install.php?step=1"><?php _e('First Step'); ?></a></h2>--> |
177 |
110 |
178 <h1><?php _e( 'Information needed' ); ?></h1> |
111 <h1><?php _e('Information needed'); ?></h1> |
179 <p><?php _e( 'Please provide the following information. Don’t worry, you can always change these settings later.' ); ?></p> |
112 <p><?php _e('Please provide the following information. Don’t worry, you can always change these settings later.'); ?></p> |
|
113 |
|
114 |
|
115 |
180 |
116 <?php |
181 <?php |
117 display_setup_form(); |
182 display_setup_form(); |
118 break; |
183 break; |
119 case 2: |
184 case 2: |
120 if ( !empty($wpdb->error) ) |
185 if ( ! empty( $wpdb->error ) ) |
121 wp_die($wpdb->error->get_error_message()); |
186 wp_die( $wpdb->error->get_error_message() ); |
122 |
187 |
123 display_header(); |
188 display_header(); |
124 // Fill in the data we gathered |
189 // Fill in the data we gathered |
125 $weblog_title = isset($_POST['weblog_title']) ? stripslashes($_POST['weblog_title']) : ''; |
190 $weblog_title = isset( $_POST['weblog_title'] ) ? trim( stripslashes( $_POST['weblog_title'] ) ) : ''; |
126 $admin_email = isset($_POST['admin_email']) ? stripslashes($_POST['admin_email']) : ''; |
191 $user_name = isset($_POST['user_name']) ? trim( stripslashes( $_POST['user_name'] ) ) : 'admin'; |
127 $public = isset($_POST['blog_public']) ? (int) $_POST['blog_public'] : 0; |
192 $admin_password = isset($_POST['admin_password']) ? $_POST['admin_password'] : ''; |
|
193 $admin_password_check = isset($_POST['admin_password2']) ? $_POST['admin_password2'] : ''; |
|
194 $admin_email = isset( $_POST['admin_email'] ) ?trim( stripslashes( $_POST['admin_email'] ) ) : ''; |
|
195 $public = isset( $_POST['blog_public'] ) ? (int) $_POST['blog_public'] : 0; |
128 // check e-mail address |
196 // check e-mail address |
129 $error = false; |
197 $error = false; |
130 if (empty($admin_email)) { |
198 if ( empty( $user_name ) ) { |
131 // TODO: poka-yoke |
199 // TODO: poka-yoke |
132 display_setup_form( __('you must provide an e-mail address.') ); |
200 display_setup_form( __('you must provide a valid username.') ); |
133 $error = true; |
201 $error = true; |
134 } else if (!is_email($admin_email)) { |
202 } elseif ( $user_name != sanitize_user( $user_name, true ) ) { |
135 // TODO: poka-yoke |
203 display_setup_form( __('the username you provided has invalid characters.') ); |
136 display_setup_form( __('that isn’t a valid e-mail address. E-mail addresses look like: <code>username@example.com</code>') ); |
204 $error = true; |
|
205 } elseif ( $admin_password != $admin_password_check ) { |
|
206 // TODO: poka-yoke |
|
207 display_setup_form( __( 'your passwords do not match. Please try again' ) ); |
|
208 $error = true; |
|
209 } else if ( empty( $admin_email ) ) { |
|
210 // TODO: poka-yoke |
|
211 display_setup_form( __( 'you must provide an e-mail address.' ) ); |
|
212 $error = true; |
|
213 } elseif ( ! is_email( $admin_email ) ) { |
|
214 // TODO: poka-yoke |
|
215 display_setup_form( __( 'that isn’t a valid e-mail address. E-mail addresses look like: <code>username@example.com</code>' ) ); |
137 $error = true; |
216 $error = true; |
138 } |
217 } |
139 |
218 |
140 if ( $error === false ) { |
219 if ( $error === false ) { |
141 $wpdb->show_errors(); |
220 $wpdb->show_errors(); |
142 $result = wp_install($weblog_title, 'admin', $admin_email, $public); |
221 $result = wp_install($weblog_title, $user_name, $admin_email, $public, '', $admin_password); |
143 extract($result, EXTR_SKIP); |
222 extract( $result, EXTR_SKIP ); |
144 ?> |
223 ?> |
145 |
224 |
146 <h1><?php _e('Success!'); ?></h1> |
225 <h1><?php _e( 'Success!' ); ?></h1> |
147 |
226 |
148 <p><?php printf(__('WordPress has been installed. Were you expecting more steps? Sorry to disappoint.'), ''); ?></p> |
227 <p><?php _e( 'WordPress has been installed. Were you expecting more steps? Sorry to disappoint.' ); ?></p> |
149 |
228 |
150 <table class="form-table"> |
229 <table class="form-table install-success"> |
151 <tr> |
230 <tr> |
152 <th><?php _e('Username'); ?></th> |
231 <th><?php _e( 'Username' ); ?></th> |
153 <td><code>admin</code></td> |
232 <td><?php echo esc_html( sanitize_user( $user_name, true ) ); ?></td> |
154 </tr> |
233 </tr> |
155 <tr> |
234 <tr> |
156 <th><?php _e('Password'); ?></th> |
235 <th><?php _e( 'Password' ); ?></th> |
157 <td><?php if ( !empty( $password ) ) { |
236 <td><?php |
158 echo '<code>'. $password .'</code><br />'; |
237 if ( ! empty( $password ) && empty($admin_password_check) ) |
159 } |
238 echo '<code>'. esc_html($password) .'</code><br />'; |
160 echo '<p>'. $password_message .'</p>'; ?></td> |
239 echo "<p>$password_message</p>"; ?> |
|
240 </td> |
161 </tr> |
241 </tr> |
162 </table> |
242 </table> |
163 |
243 |
164 <p class="step"><a href="../wp-login.php" class="button"><?php _e('Log In'); ?></a></p> |
244 <p class="step"><a href="../wp-login.php" class="button"><?php _e( 'Log In' ); ?></a></p> |
165 |
245 |
166 <?php |
246 <?php |
167 } |
247 } |
168 break; |
248 break; |
169 } |
249 } |
170 ?> |
250 ?> |
171 <script type="text/javascript">var t = document.getElementById('weblog_title'); if (t){ t.focus(); }</script> |
251 <script type="text/javascript">var t = document.getElementById('weblog_title'); if (t){ t.focus(); }</script> |
|
252 <?php wp_print_scripts( 'user-profile' ); ?> |
172 </body> |
253 </body> |
173 </html> |
254 </html> |