PageRenderTime 51ms CodeModel.GetById 21ms RepoModel.GetById 0ms app.codeStats 0ms

/wp-admin/install.php

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