PageRenderTime 42ms CodeModel.GetById 11ms RepoModel.GetById 0ms app.codeStats 0ms

/wp-admin/install.php

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