]> scripts.mit.edu Git - autoinstalls/wordpress.git/blobdiff - wp-admin/maint/repair.php
WordPress 4.3
[autoinstalls/wordpress.git] / wp-admin / maint / repair.php
index 2880169408b0a5fa686d140274d8e7c3de815038..791450258b29f3c7eaa85f3b2931d761bc8c6078 100644 (file)
@@ -7,13 +7,14 @@
  */
 define('WP_REPAIRING', true);
 
-require_once('../../wp-load.php');
+require_once( dirname( dirname( dirname( __FILE__ ) ) ) . '/wp-load.php' );
 
 header( 'Content-Type: text/html; charset=utf-8' );
 ?>
 <!DOCTYPE html>
 <html xmlns="http://www.w3.org/1999/xhtml" <?php language_attributes(); ?>>
 <head>
+       <meta name="viewport" content="width=device-width" />
        <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
        <title><?php _e( 'WordPress &rsaquo; Database Repair' ); ?></title>
        <?php
@@ -21,12 +22,40 @@ header( 'Content-Type: text/html; charset=utf-8' );
        ?>
 </head>
 <body class="wp-core-ui">
-<h1 id="logo"><a href="<?php esc_attr_e( 'http://wordpress.org/' ); ?>"><?php _e( 'WordPress' ); ?></a></h1>
+<h1 id="logo"><a href="<?php echo esc_url( __( 'https://wordpress.org/' ) ); ?>" tabindex="-1"><?php _e( 'WordPress' ); ?></a></h1>
 
 <?php
 
 if ( ! defined( 'WP_ALLOW_REPAIR' ) ) {
-       echo '<p>' . __( 'To allow use of this page to automatically repair database problems, please add the following line to your <code>wp-config.php</code> file. Once this line is added to your config, reload this page.' ) . "</p><code>define('WP_ALLOW_REPAIR', true);</code>";
+       echo '<p>' . __( 'To allow use of this page to automatically repair database problems, please add the following line to your <code>wp-config.php</code> file. Once this line is added to your config, reload this page.' ) . "</p><p><code>define('WP_ALLOW_REPAIR', true);</code></p>";
+
+       $default_key     = 'put your unique phrase here';
+       $missing_key     = false;
+       $duplicated_keys = array();
+
+       foreach ( array( 'AUTH_KEY', 'SECURE_AUTH_KEY', 'LOGGED_IN_KEY', 'NONCE_KEY', 'AUTH_SALT', 'SECURE_AUTH_SALT', 'LOGGED_IN_SALT', 'NONCE_SALT' ) as $key ) {
+               if ( defined( $key ) ) {
+                       // Check for unique values of each key.
+                       $duplicated_keys[ constant( $key ) ] = isset( $duplicated_keys[ constant( $key ) ] );
+               } else {
+                       // If a constant is not defined, it's missing.
+                       $missing_key = true;
+               }
+       }
+
+       // If at least one key uses the default value, consider it duplicated.
+       if ( isset( $duplicated_keys[ $default_key ] ) ) {
+               $duplicated_keys[ $default_key ] = true;
+       }
+
+       // Weed out all unique, non-default values.
+       $duplicated_keys = array_filter( $duplicated_keys );
+
+       if ( $duplicated_keys || $missing_key ) {
+               // Translators: 1: wp-config.php; 2: Secret key service URL.
+               echo '<p>' . sprintf( __( 'While you are editing your %1$s file, take a moment to make sure you have all 8 keys and that they are unique. You can generate these using the <a href="%2$s">WordPress.org secret key service</a>.' ), '<code>wp-config.php</code>', 'https://api.wordpress.org/secret-key/1.1/salt/' ) . '</p>';
+       }
+
 } elseif ( isset( $_GET['repair'] ) ) {
        $optimize = 2 == $_GET['repair'];
        $okay = true;
@@ -35,10 +64,19 @@ if ( ! defined( 'WP_ALLOW_REPAIR' ) ) {
        $tables = $wpdb->tables();
 
        // Sitecategories may not exist if global terms are disabled.
-       if ( is_multisite() && ! $wpdb->get_var( "SHOW TABLES LIKE '$wpdb->sitecategories'" ) )
+       $query = $wpdb->prepare( "SHOW TABLES LIKE %s", $wpdb->esc_like( $wpdb->sitecategories ) );
+       if ( is_multisite() && ! $wpdb->get_var( $query ) ) {
                unset( $tables['sitecategories'] );
+       }
 
-       $tables = array_merge( $tables, (array) apply_filters( 'tables_to_repair', array() ) ); // Return tables with table prefixes.
+       /**
+        * Filter additional database tables to repair.
+        *
+        * @since 3.0.0
+        *
+        * @param array $tables Array of prefixed table names to be repaired.
+        */
+       $tables = array_merge( $tables, (array) apply_filters( 'tables_to_repair', array() ) );
 
        // Loop over the tables, checking and repairing as needed.
        foreach ( $tables as $table ) {
@@ -90,13 +128,13 @@ if ( ! defined( 'WP_ALLOW_REPAIR' ) ) {
        }
 
        if ( $problems ) {
-               printf( '<p>' . __('Some database problems could not be repaired. Please copy-and-paste the following list of errors to the <a href="%s">WordPress support forums</a> to get additional assistance.') . '</p>', __( 'http://wordpress.org/support/forum/how-to-and-troubleshooting' ) );
+               printf( '<p>' . __('Some database problems could not be repaired. Please copy-and-paste the following list of errors to the <a href="%s">WordPress support forums</a> to get additional assistance.') . '</p>', __( 'https://wordpress.org/support/forum/how-to-and-troubleshooting' ) );
                $problem_output = '';
                foreach ( $problems as $table => $problem )
                        $problem_output .= "$table: $problem\n";
                echo '<p><textarea name="errors" id="errors" rows="20" cols="60">' . esc_textarea( $problem_output ) . '</textarea></p>';
        } else {
-               echo '<p>' . __( 'Repairs complete. Please remove the following line from wp-config.php to prevent this page from being used by unauthorized users.' ) . "</p><code>define('WP_ALLOW_REPAIR', true);</code>";
+               echo '<p>' . __( 'Repairs complete. Please remove the following line from wp-config.php to prevent this page from being used by unauthorized users.' ) . "</p><p><code>define('WP_ALLOW_REPAIR', true);</code></p>";
        }
 } else {
        if ( isset( $_GET['referrer'] ) && 'is_blog_installed' == $_GET['referrer'] )