PageRenderTime 25ms CodeModel.GetById 18ms RepoModel.GetById 0ms app.codeStats 0ms

/wp-admin/install.php

https://github.com/muskmelon/Greemo
PHP | 264 lines | 198 code | 26 blank | 40 comment | 23 complexity | f56defafb28e9770e7645e766b8c2aed 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 PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  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>
  18. <h1 id="logo"><img alt="WordPress" src="images/wordpress-logo.png" /></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( dirname( __FILE__ ) . '/includes/upgrade.php' );
  36. /** Load wpdb */
  37. require_once(dirname(dirname(__FILE__)) . '/wp-includes/wp-db.php');
  38. $step = isset( $_GET['step'] ) ? $_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 PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  50. <html xmlns="http://www.w3.org/1999/xhtml" <?php language_attributes(); ?>>
  51. <head>
  52. <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
  53. <title><?php _e( 'WordPress &rsaquo; Installation' ); ?></title>
  54. <?php wp_admin_css( 'install', true ); ?>
  55. </head>
  56. <body>
  57. <h1 id="logo"><img alt="WordPress" src="images/wordpress-logo.png" /></h1>
  58. <?php
  59. } // end display_header()
  60. /**
  61. * Display installer setup form.
  62. *
  63. * @since 2.8.0
  64. * @package WordPress
  65. * @subpackage Installer
  66. */
  67. function display_setup_form( $error = null ) {
  68. global $wpdb;
  69. $user_table = ( $wpdb->get_var("SHOW TABLES LIKE '$wpdb->users'") != null );
  70. // Ensure that Blogs appear in search engines by default
  71. $blog_public = 1;
  72. if ( ! empty( $_POST ) )
  73. $blog_public = isset( $_POST['blog_public'] );
  74. $weblog_title = isset( $_POST['weblog_title'] ) ? trim( stripslashes( $_POST['weblog_title'] ) ) : '';
  75. $user_name = isset($_POST['user_name']) ? trim( stripslashes( $_POST['user_name'] ) ) : 'admin';
  76. $admin_password = isset($_POST['admin_password']) ? trim( stripslashes( $_POST['admin_password'] ) ) : '';
  77. $admin_email = isset( $_POST['admin_email'] ) ? trim( stripslashes( $_POST['admin_email'] ) ) : '';
  78. if ( ! is_null( $error ) ) {
  79. ?>
  80. <p class="message"><?php printf( __( '<strong>ERROR</strong>: %s' ), $error ); ?></p>
  81. <?php } ?>
  82. <form id="setup" method="post" action="install.php?step=2">
  83. <table class="form-table">
  84. <tr>
  85. <th scope="row"><label for="weblog_title"><?php _e( 'Site Title' ); ?></label></th>
  86. <td><input name="weblog_title" type="text" id="weblog_title" size="25" value="<?php echo esc_attr( $weblog_title ); ?>" /></td>
  87. </tr>
  88. <tr>
  89. <th scope="row"><label for="user_name"><?php _e('Username'); ?></label></th>
  90. <td>
  91. <?php
  92. if ( $user_table ) {
  93. _e('User(s) already exists.');
  94. } else {
  95. ?><input name="user_name" type="text" id="user_login" size="25" value="<?php echo esc_attr( sanitize_user( $user_name, true ) ); ?>" />
  96. <p><?php _e( 'Usernames can have only alphanumeric characters, spaces, underscores, hyphens, periods and the @ symbol.' ); ?></p>
  97. <?php
  98. } ?>
  99. </td>
  100. </tr>
  101. <?php if ( ! $user_table ) : ?>
  102. <tr>
  103. <th scope="row">
  104. <label for="admin_password"><?php _e('Password, twice'); ?></label>
  105. <p><?php _e('A password will be automatically generated for you if you leave this blank.'); ?></p>
  106. </th>
  107. <td>
  108. <input name="admin_password" type="password" id="pass1" size="25" value="" />
  109. <p><input name="admin_password2" type="password" id="pass2" size="25" value="" /></p>
  110. <div id="pass-strength-result"><?php _e('Strength indicator'); ?></div>
  111. <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>
  112. </td>
  113. </tr>
  114. <?php endif; ?>
  115. <tr>
  116. <th scope="row"><label for="admin_email"><?php _e( 'Your E-mail' ); ?></label></th>
  117. <td><input name="admin_email" type="text" id="admin_email" size="25" value="<?php echo esc_attr( $admin_email ); ?>" />
  118. <p><?php _e( 'Double-check your email address before continuing.' ); ?></p></td>
  119. </tr>
  120. <tr>
  121. <td colspan="2"><label><input type="checkbox" name="blog_public" value="1" <?php checked( $blog_public ); ?> /> <?php _e( 'Allow my site to appear in search engines like Google and Technorati.' ); ?></label></td>
  122. </tr>
  123. </table>
  124. <p class="step"><input type="submit" name="Submit" value="<?php esc_attr_e( 'Install WordPress' ); ?>" class="button" /></p>
  125. </form>
  126. <?php
  127. } // end display_setup_form()
  128. // Let's check to make sure WP isn't already installed.
  129. if ( is_blog_installed() ) {
  130. display_header();
  131. 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>' );
  132. }
  133. $php_version = phpversion();
  134. $mysql_version = $wpdb->db_version();
  135. $php_compat = version_compare( $php_version, $required_php_version, '>=' );
  136. $mysql_compat = version_compare( $mysql_version, $required_mysql_version, '>=' ) || file_exists( WP_CONTENT_DIR . '/db.php' );
  137. if ( !$mysql_compat && !$php_compat )
  138. $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 );
  139. elseif ( !$php_compat )
  140. $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 );
  141. elseif ( !$mysql_compat )
  142. $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 );
  143. if ( !$mysql_compat || !$php_compat ) {
  144. display_header();
  145. die('<h1>' . __('Insufficient Requirements') . '</h1><p>' . $compat . '</p></body></html>');
  146. }
  147. switch($step) {
  148. case 0: // Step 1
  149. case 1: // Step 1, direct link.
  150. display_header();
  151. ?>
  152. <h1><?php _e( 'Welcome' ); ?></h1>
  153. <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>
  154. <h1><?php _e( 'Information needed' ); ?></h1>
  155. <p><?php _e( 'Please provide the following information. Don&#8217;t worry, you can always change these settings later.' ); ?></p>
  156. <?php
  157. display_setup_form();
  158. break;
  159. case 2:
  160. if ( ! empty( $wpdb->error ) )
  161. wp_die( $wpdb->error->get_error_message() );
  162. display_header();
  163. // Fill in the data we gathered
  164. $weblog_title = isset( $_POST['weblog_title'] ) ? trim( stripslashes( $_POST['weblog_title'] ) ) : '';
  165. $user_name = isset($_POST['user_name']) ? trim( stripslashes( $_POST['user_name'] ) ) : 'admin';
  166. $admin_password = isset($_POST['admin_password']) ? $_POST['admin_password'] : '';
  167. $admin_password_check = isset($_POST['admin_password2']) ? $_POST['admin_password2'] : '';
  168. $admin_email = isset( $_POST['admin_email'] ) ?trim( stripslashes( $_POST['admin_email'] ) ) : '';
  169. $public = isset( $_POST['blog_public'] ) ? (int) $_POST['blog_public'] : 0;
  170. // check e-mail address
  171. $error = false;
  172. if ( empty( $user_name ) ) {
  173. // TODO: poka-yoke
  174. display_setup_form( __('you must provide a valid username.') );
  175. $error = true;
  176. } elseif ( $user_name != sanitize_user( $user_name, true ) ) {
  177. display_setup_form( __('the username you provided has invalid characters.') );
  178. $error = true;
  179. } elseif ( $admin_password != $admin_password_check ) {
  180. // TODO: poka-yoke
  181. display_setup_form( __( 'your passwords do not match. Please try again' ) );
  182. $error = true;
  183. } else if ( empty( $admin_email ) ) {
  184. // TODO: poka-yoke
  185. display_setup_form( __( 'you must provide an e-mail address.' ) );
  186. $error = true;
  187. } elseif ( ! is_email( $admin_email ) ) {
  188. // TODO: poka-yoke
  189. display_setup_form( __( 'that isn&#8217;t a valid e-mail address. E-mail addresses look like: <code>username@example.com</code>' ) );
  190. $error = true;
  191. }
  192. if ( $error === false ) {
  193. $wpdb->show_errors();
  194. $result = wp_install($weblog_title, $user_name, $admin_email, $public, '', $admin_password);
  195. extract( $result, EXTR_SKIP );
  196. ?>
  197. <h1><?php _e( 'Success!' ); ?></h1>
  198. <p><?php _e( 'WordPress has been installed. Were you expecting more steps? Sorry to disappoint.' ); ?></p>
  199. <table class="form-table">
  200. <tr>
  201. <th><?php _e( 'Username' ); ?></th>
  202. <td><code><?php echo esc_html( sanitize_user( $user_name, true ) ); ?></code></td>
  203. </tr>
  204. <tr>
  205. <th><?php _e( 'Password' ); ?></th>
  206. <td><?php
  207. if ( ! empty( $password ) && empty($admin_password_check) )
  208. echo '<code>'. esc_html($password) .'</code><br />';
  209. echo "<p>$password_message</p>"; ?>
  210. </td>
  211. </tr>
  212. </table>
  213. <p class="step"><a href="../wp-login.php" class="button"><?php _e( 'Log In' ); ?></a></p>
  214. <?php
  215. }
  216. break;
  217. }
  218. ?>
  219. <script type="text/javascript">var t = document.getElementById('weblog_title'); if (t){ t.focus(); }</script>
  220. <script type="text/javascript" src="../wp-includes/js/jquery/jquery.js"></script>
  221. <script type="text/javascript" src="js/password-strength-meter.js"></script>
  222. <script type="text/javascript" src="js/user-profile.js"></script>
  223. <script type="text/javascript" src="../wp-includes/js/l10n.js"></script>
  224. <script type='text/javascript'>
  225. /* <![CDATA[ */
  226. var pwsL10n = {
  227. empty: "<?php echo esc_js( __( 'Strength indicator' ) ); ?>",
  228. short: "<?php echo esc_js( __( 'Very weak' ) ); ?>",
  229. bad: "<?php echo esc_js( __( 'Weak' ) ); ?>",
  230. good: "<?php echo esc_js( _x( 'Medium', 'password strength' ) ); ?>",
  231. strong: "<?php echo esc_js( __( 'Strong' ) ); ?>",
  232. mismatch: "<?php echo esc_js( __( 'Mismatch' ) ); ?>"
  233. };
  234. try{convertEntities(pwsL10n);}catch(e){};
  235. /* ]]> */
  236. </script>
  237. </body>
  238. </html>