2003-05-23 07:07:05 -04:00
< ? php
2008-08-14 02:30:38 -04:00
/**
* WordPress Installer
*
* @ package WordPress
* @ subpackage Administration
*/
2010-02-26 01:31:40 -05:00
// Sanity check.
if ( false ) {
?>
2011-07-21 20:25:41 -04:00
<! DOCTYPE html >
2012-02-08 01:05:35 -05:00
< html xmlns = " http://www.w3.org/1999/xhtml " >
2010-03-11 15:45:24 -05:00
< head >
< meta http - equiv = " Content-Type " content = " text/html; charset=utf-8 " />
< title > Error : PHP is not running </ title >
</ head >
< body >
2012-02-16 23:57:56 -05:00
< h1 id = " logo " >< img alt = " WordPress " src = " images/wordpress-logo.png?ver=20120216 " /></ h1 >
2010-03-11 15:45:24 -05:00
< h2 > Error : PHP is not running </ h2 >
< p > WordPress requires that your web server is running PHP . Your server does not have PHP installed , or PHP is turned off .</ p >
</ body >
</ html >
2010-02-26 01:31:40 -05:00
< ? php
}
2008-08-14 02:30:38 -04:00
/**
* We are installing WordPress .
*
2010-02-13 15:40:42 -05:00
* @ since 1.5 . 1
2008-08-14 02:30:38 -04:00
* @ var bool
*/
2010-02-13 15:40:42 -05:00
define ( 'WP_INSTALLING' , true );
2004-07-23 04:45:55 -04:00
2008-08-14 02:30:38 -04:00
/** Load WordPress Bootstrap */
2010-02-13 15:40:42 -05:00
require_once ( dirname ( dirname ( __FILE__ ) ) . '/wp-load.php' );
2008-08-14 02:30:38 -04:00
/** Load WordPress Administration Upgrade API */
2010-02-13 15:40:42 -05:00
require_once ( dirname ( __FILE__ ) . '/includes/upgrade.php' );
2003-05-23 07:07:05 -04:00
2010-02-13 22:07:47 -05:00
/** Load wpdb */
require_once ( dirname ( dirname ( __FILE__ )) . '/wp-includes/wp-db.php' );
2010-02-13 15:40:42 -05:00
$step = isset ( $_GET [ 'step' ] ) ? $_GET [ 'step' ] : 0 ;
2008-08-14 02:30:38 -04:00
/**
* Display install header .
*
2010-02-13 15:40:42 -05:00
* @ since 2.5 . 0
2008-08-14 02:30:38 -04:00
* @ package WordPress
* @ subpackage Installer
*/
function display_header () {
2010-02-13 15:40:42 -05:00
header ( 'Content-Type: text/html; charset=utf-8' );
2003-05-23 07:07:05 -04:00
?>
2011-07-21 20:25:41 -04:00
<! DOCTYPE html >
2006-09-28 13:35:59 -04:00
< html xmlns = " http://www.w3.org/1999/xhtml " < ? php language_attributes (); ?> >
2004-06-11 12:09:18 -04:00
< head >
2004-07-23 04:45:55 -04:00
< meta http - equiv = " Content-Type " content = " text/html; charset=utf-8 " />
2010-02-13 15:40:42 -05:00
< title >< ? php _e ( 'WordPress › Installation' ); ?> </title>
2008-05-21 20:06:41 -04:00
< ? php wp_admin_css ( 'install' , true ); ?>
2003-05-23 07:07:05 -04:00
</ head >
2011-08-29 23:55:40 -04:00
< body < ? php if ( is_rtl () ) echo ' class="rtl"' ; ?> >
2012-02-16 23:57:56 -05:00
< h1 id = " logo " >< img alt = " WordPress " src = " images/wordpress-logo.png?ver=20120216 " /></ h1 >
2007-12-19 21:10:09 -05:00
2003-05-23 07:07:05 -04:00
< ? php
2010-02-13 15:40:42 -05:00
} // end display_header()
2007-12-19 21:10:09 -05:00
2010-02-13 15:40:42 -05:00
/**
* Display installer setup form .
*
* @ since 2.8 . 0
* @ package WordPress
* @ subpackage Installer
*/
2009-02-15 07:58:10 -05:00
function display_setup_form ( $error = null ) {
2010-02-13 22:07:47 -05:00
global $wpdb ;
2010-03-19 17:15:00 -04:00
$user_table = ( $wpdb -> get_var ( " SHOW TABLES LIKE ' $wpdb->users ' " ) != null );
2010-02-13 22:07:47 -05:00
2009-08-16 05:01:39 -04:00
// Ensure that Blogs appear in search engines by default
$blog_public = 1 ;
2010-03-19 17:29:21 -04:00
if ( ! empty ( $_POST ) )
2010-02-13 15:40:42 -05:00
$blog_public = isset ( $_POST [ 'blog_public' ] );
2009-09-14 10:03:32 -04:00
2010-02-13 22:07:47 -05:00
$weblog_title = isset ( $_POST [ 'weblog_title' ] ) ? trim ( stripslashes ( $_POST [ 'weblog_title' ] ) ) : '' ;
$user_name = isset ( $_POST [ 'user_name' ]) ? trim ( stripslashes ( $_POST [ 'user_name' ] ) ) : 'admin' ;
$admin_password = isset ( $_POST [ 'admin_password' ]) ? trim ( stripslashes ( $_POST [ 'admin_password' ] ) ) : '' ;
$admin_email = isset ( $_POST [ 'admin_email' ] ) ? trim ( stripslashes ( $_POST [ 'admin_email' ] ) ) : '' ;
2009-02-15 07:58:10 -05:00
if ( ! is_null ( $error ) ) {
2003-05-23 07:07:05 -04:00
?>
2010-05-24 04:18:48 -04:00
< p class = " message " >< ? php printf ( __ ( '<strong>ERROR</strong>: %s' ), $error ); ?> </p>
2009-02-15 07:58:10 -05:00
< ? php } ?>
2005-01-24 02:44:38 -05:00
< form id = " setup " method = " post " action = " install.php?step=2 " >
2011-10-05 19:42:11 -04:00
< table class = " form-table " >
< tr >
< th scope = " row " >< label for = " weblog_title " >< ? php _e ( 'Site Title' ); ?> </label></th>
< td >< input name = " weblog_title " type = " text " id = " weblog_title " size = " 25 " value = " <?php echo esc_attr( $weblog_title ); ?> " /></ td >
</ tr >
< tr >
< th scope = " row " >< label for = " user_name " >< ? php _e ( 'Username' ); ?> </label></th>
< td >
2010-02-13 22:07:47 -05:00
< ? php
if ( $user_table ) {
_e ( 'User(s) already exists.' );
} else {
2010-04-27 22:17:19 -04:00
?> <input name="user_name" type="text" id="user_login" size="25" value="<?php echo esc_attr( sanitize_user( $user_name, true ) ); ?>" />
< p >< ? php _e ( 'Usernames can have only alphanumeric characters, spaces, underscores, hyphens, periods and the @ symbol.' ); ?> </p>
< ? php
2010-02-13 22:07:47 -05:00
} ?>
2011-10-05 19:42:11 -04:00
</ td >
</ tr >
2010-02-13 22:07:47 -05:00
< ? php if ( ! $user_table ) : ?>
2011-10-05 19:42:11 -04:00
< tr >
< th scope = " row " >
2010-03-13 21:30:50 -05:00
< label for = " admin_password " >< ? php _e ( 'Password, twice' ); ?> </label>
< p >< ? php _e ( 'A password will be automatically generated for you if you leave this blank.' ); ?> </p>
2011-10-05 19:42:11 -04:00
</ th >
< td >
2010-03-13 21:30:50 -05:00
< input name = " admin_password " type = " password " id = " pass1 " size = " 25 " value = " " />
2010-03-05 07:25:30 -05:00
< p >< input name = " admin_password2 " type = " password " id = " pass2 " size = " 25 " value = " " /></ p >
< div id = " pass-strength-result " >< ? php _e ( 'Strength indicator' ); ?> </div>
2010-03-13 21:30:50 -05:00
< 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>
2011-10-05 19:42:11 -04:00
</ td >
</ tr >
2010-02-13 22:07:47 -05:00
< ? php endif ; ?>
2011-10-05 19:42:11 -04:00
< tr >
< th scope = " row " >< label for = " admin_email " >< ? php _e ( 'Your E-mail' ); ?> </label></th>
< td >< input name = " admin_email " type = " text " id = " admin_email " size = " 25 " value = " <?php echo esc_attr( $admin_email ); ?> " />
< p >< ? php _e ( 'Double-check your email address before continuing.' ); ?> </p></td>
</ tr >
< tr >
2011-11-15 10:47:07 -05:00
< th scope = " row " >< label for = " blog_public " >< ? php _e ( 'Privacy' ); ?> </label></th>
2012-01-30 15:51:00 -05:00
< 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>
2011-10-05 19:42:11 -04:00
</ tr >
</ table >
2010-10-28 20:31:27 -04:00
< p class = " step " >< input type = " submit " name = " Submit " value = " <?php esc_attr_e( 'Install WordPress' ); ?> " class = " button " /></ p >
2004-07-23 04:45:55 -04:00
</ form >
2009-02-15 07:58:10 -05:00
< ? php
2010-02-13 15:40:42 -05:00
} // end display_setup_form()
2009-02-15 07:58:10 -05:00
// Let's check to make sure WP isn't already installed.
2010-02-13 15:40:42 -05:00
if ( is_blog_installed () ) {
display_header ();
2010-02-23 20:58:27 -05:00
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>' );
2010-02-13 15:40:42 -05:00
}
2009-02-15 07:58:10 -05:00
2009-12-29 17:07:35 -05:00
$php_version = phpversion ();
$mysql_version = $wpdb -> db_version ();
$php_compat = version_compare ( $php_version , $required_php_version , '>=' );
$mysql_compat = version_compare ( $mysql_version , $required_mysql_version , '>=' ) || file_exists ( WP_CONTENT_DIR . '/db.php' );
if ( ! $mysql_compat && ! $php_compat )
2010-02-20 07:28:10 -05:00
$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 );
2009-12-29 17:07:35 -05:00
elseif ( ! $php_compat )
2010-02-20 07:28:10 -05:00
$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 );
2009-12-29 17:07:35 -05:00
elseif ( ! $mysql_compat )
2010-02-20 07:28:10 -05:00
$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 );
2009-12-29 17:07:35 -05:00
if ( ! $mysql_compat || ! $php_compat ) {
display_header ();
die ( '<h1>' . __ ( 'Insufficient Requirements' ) . '</h1><p>' . $compat . '</p></body></html>' );
}
2009-02-15 07:58:10 -05:00
switch ( $step ) {
2010-02-13 15:40:42 -05:00
case 0 : // Step 1
case 1 : // Step 1, direct link.
2009-02-15 07:58:10 -05:00
display_header ();
?>
2012-02-01 09:49:41 -05:00
< h1 >< ? php _ex ( 'Welcome' , 'Howdy' ); ?> </h1>
2010-02-13 15:40:42 -05:00
< 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>
2009-02-15 07:58:10 -05:00
2010-02-13 15:40:42 -05:00
< h1 >< ? php _e ( 'Information needed' ); ?> </h1>
< p >< ? php _e ( 'Please provide the following information. Don’t worry, you can always change these settings later.' ); ?> </p>
2004-07-23 04:45:55 -04:00
< ? php
2009-02-15 07:58:10 -05:00
display_setup_form ();
2006-09-28 13:35:59 -04:00
break ;
2004-07-23 04:45:55 -04:00
case 2 :
2010-02-13 15:40:42 -05:00
if ( ! empty ( $wpdb -> error ) )
wp_die ( $wpdb -> error -> get_error_message () );
2007-12-22 12:45:30 -05:00
2008-02-05 01:47:27 -05:00
display_header ();
2006-09-28 13:35:59 -04:00
// Fill in the data we gathered
2010-02-13 22:07:47 -05:00
$weblog_title = isset ( $_POST [ 'weblog_title' ] ) ? trim ( stripslashes ( $_POST [ 'weblog_title' ] ) ) : '' ;
$user_name = isset ( $_POST [ 'user_name' ]) ? trim ( stripslashes ( $_POST [ 'user_name' ] ) ) : 'admin' ;
2010-05-31 06:53:02 -04:00
$admin_password = isset ( $_POST [ 'admin_password' ]) ? $_POST [ 'admin_password' ] : '' ;
$admin_password_check = isset ( $_POST [ 'admin_password2' ]) ? $_POST [ 'admin_password2' ] : '' ;
2010-02-13 22:07:47 -05:00
$admin_email = isset ( $_POST [ 'admin_email' ] ) ? trim ( stripslashes ( $_POST [ 'admin_email' ] ) ) : '' ;
2010-02-13 15:40:42 -05:00
$public = isset ( $_POST [ 'blog_public' ] ) ? ( int ) $_POST [ 'blog_public' ] : 0 ;
2006-09-28 13:35:59 -04:00
// check e-mail address
2009-02-15 07:58:10 -05:00
$error = false ;
2010-02-13 22:07:47 -05:00
if ( empty ( $user_name ) ) {
// TODO: poka-yoke
2010-04-20 13:40:08 -04:00
display_setup_form ( __ ( 'you must provide a valid username.' ) );
2010-02-13 22:07:47 -05:00
$error = true ;
2010-04-27 22:20:32 -04:00
} elseif ( $user_name != sanitize_user ( $user_name , true ) ) {
display_setup_form ( __ ( 'the username you provided has invalid characters.' ) );
$error = true ;
2010-03-05 07:25:30 -05:00
} elseif ( $admin_password != $admin_password_check ) {
// TODO: poka-yoke
display_setup_form ( __ ( 'your passwords do not match. Please try again' ) );
$error = true ;
2010-02-13 22:07:47 -05:00
} else if ( empty ( $admin_email ) ) {
2007-08-02 21:08:59 -04:00
// TODO: poka-yoke
2010-02-13 15:40:42 -05:00
display_setup_form ( __ ( 'you must provide an e-mail address.' ) );
2009-02-15 07:58:10 -05:00
$error = true ;
2010-02-13 15:40:42 -05:00
} elseif ( ! is_email ( $admin_email ) ) {
2007-08-02 21:08:59 -04:00
// TODO: poka-yoke
2011-12-13 18:45:31 -05:00
display_setup_form ( __ ( 'that isn’t a valid e-mail address. E-mail addresses look like: <code>username@example.com</code>' ) );
2009-02-15 07:58:10 -05:00
$error = true ;
2006-09-28 13:35:59 -04:00
}
2006-02-12 02:53:23 -05:00
2009-02-15 07:58:10 -05:00
if ( $error === false ) {
$wpdb -> show_errors ();
2010-02-13 22:07:47 -05:00
$result = wp_install ( $weblog_title , $user_name , $admin_email , $public , '' , $admin_password );
2010-02-13 15:40:42 -05:00
extract ( $result , EXTR_SKIP );
2003-05-23 07:07:05 -04:00
?>
2010-02-13 15:40:42 -05:00
< h1 >< ? php _e ( 'Success!' ); ?> </h1>
2003-05-23 07:07:05 -04:00
2010-02-13 15:40:42 -05:00
< p >< ? php _e ( 'WordPress has been installed. Were you expecting more steps? Sorry to disappoint.' ); ?> </p>
2006-09-28 13:35:59 -04:00
2011-11-15 10:47:07 -05:00
< table class = " form-table install-success " >
2011-10-05 19:42:11 -04:00
< tr >
< th >< ? php _e ( 'Username' ); ?> </th>
2011-11-15 10:47:07 -05:00
< td >< ? php echo esc_html ( sanitize_user ( $user_name , true ) ); ?> </td>
2011-10-05 19:42:11 -04:00
</ tr >
< tr >
< th >< ? php _e ( 'Password' ); ?> </th>
< td >< ? php
2010-03-05 07:25:30 -05:00
if ( ! empty ( $password ) && empty ( $admin_password_check ) )
2010-02-13 22:07:47 -05:00
echo '<code>' . esc_html ( $password ) . '</code><br />' ;
2010-02-13 15:40:42 -05:00
echo " <p> $password_message </p> " ; ?>
2011-10-05 19:42:11 -04:00
</ td >
</ tr >
</ table >
2008-02-21 18:55:11 -05:00
2010-02-13 15:40:42 -05:00
< p class = " step " >< a href = " ../wp-login.php " class = " button " >< ? php _e ( 'Log In' ); ?> </a></p>
2006-09-28 13:35:59 -04:00
2003-05-23 07:07:05 -04:00
< ? php
2009-02-15 07:58:10 -05:00
}
2006-09-28 13:35:59 -04:00
break ;
2003-05-23 07:07:05 -04:00
}
?>
2008-03-14 14:22:19 -04:00
< script type = " text/javascript " > var t = document . getElementById ( 'weblog_title' ); if ( t ){ t . focus (); } </ script >
2011-08-13 14:01:26 -04:00
< ? php wp_print_scripts ( 'user-profile' ); ?>
2003-05-23 07:07:05 -04:00
</ body >
2008-03-14 14:22:19 -04:00
</ html >