wp/wp-admin/maint/repair.php
author ymh <ymh.work@gmail.com>
Fri, 08 Nov 2013 12:04:48 +0000
changeset 2 a899d1822525
parent 0 d970ebf37754
child 5 5e2f62d02dcd
permissions -rw-r--r--
add unfiltered-mu plugin to allow administrator to add scripts and iframes
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
0
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
     1
<?php
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
     2
/**
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
     3
 * Database Repair and Optimization Script.
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
     4
 *
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
     5
 * @package WordPress
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
     6
 * @subpackage Database
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
     7
 */
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
     8
define('WP_REPAIRING', true);
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
     9
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
    10
require_once( dirname( dirname( dirname( __FILE__ ) ) ) . '/wp-load.php' );
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
    11
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
    12
header( 'Content-Type: text/html; charset=utf-8' );
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
    13
?>
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
    14
<!DOCTYPE html>
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
    15
<html xmlns="http://www.w3.org/1999/xhtml" <?php language_attributes(); ?>>
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
    16
<head>
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
    17
	<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
    18
	<title><?php _e( 'WordPress &rsaquo; Database Repair' ); ?></title>
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
    19
	<?php
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
    20
	wp_admin_css( 'install', true );
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
    21
	?>
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
    22
</head>
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
    23
<body class="wp-core-ui">
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
    24
<h1 id="logo"><a href="<?php echo esc_url( __( 'http://wordpress.org/' ) ); ?>"><?php _e( 'WordPress' ); ?></a></h1>
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
    25
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
    26
<?php
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
    27
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
    28
if ( ! defined( 'WP_ALLOW_REPAIR' ) ) {
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
    29
	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>";
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
    30
} elseif ( isset( $_GET['repair'] ) ) {
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
    31
	$optimize = 2 == $_GET['repair'];
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
    32
	$okay = true;
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
    33
	$problems = array();
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
    34
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
    35
	$tables = $wpdb->tables();
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
    36
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
    37
	// Sitecategories may not exist if global terms are disabled.
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
    38
	if ( is_multisite() && ! $wpdb->get_var( "SHOW TABLES LIKE '$wpdb->sitecategories'" ) )
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
    39
		unset( $tables['sitecategories'] );
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
    40
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
    41
	/**
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
    42
	 * Filter additional database tables to repair.
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
    43
	 *
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
    44
	 * @since 3.0.0
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
    45
	 *
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
    46
	 * @param array $tables Array of prefixed table names to be repaired.
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
    47
	 */
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
    48
	$tables = array_merge( $tables, (array) apply_filters( 'tables_to_repair', array() ) );
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
    49
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
    50
	// Loop over the tables, checking and repairing as needed.
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
    51
	foreach ( $tables as $table ) {
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
    52
		$check = $wpdb->get_row( "CHECK TABLE $table" );
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
    53
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
    54
		echo '<p>';
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
    55
		if ( 'OK' == $check->Msg_text ) {
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
    56
			/* translators: %s: table name */
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
    57
			printf( __( 'The %s table is okay.' ), "<code>$table</code>" );
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
    58
		} else {
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
    59
			/* translators: 1: table name, 2: error message, */
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
    60
			printf( __( 'The %1$s table is not okay. It is reporting the following error: %2$s. WordPress will attempt to repair this table&hellip;' ) , "<code>$table</code>", "<code>$check->Msg_text</code>" );
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
    61
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
    62
			$repair = $wpdb->get_row( "REPAIR TABLE $table" );
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
    63
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
    64
			echo '<br />&nbsp;&nbsp;&nbsp;&nbsp;';
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
    65
			if ( 'OK' == $check->Msg_text ) {
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
    66
				/* translators: %s: table name */
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
    67
				printf( __( 'Successfully repaired the %s table.' ), "<code>$table</code>" );
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
    68
			} else {
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
    69
				/* translators: 1: table name, 2: error message, */
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
    70
				echo sprintf( __( 'Failed to repair the %1$s table. Error: %2$s' ), "<code>$table</code>", "<code>$check->Msg_text</code>" ) . '<br />';
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
    71
				$problems[$table] = $check->Msg_text;
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
    72
				$okay = false;
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
    73
			}
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
    74
		}
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
    75
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
    76
		if ( $okay && $optimize ) {
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
    77
			$check = $wpdb->get_row( "ANALYZE TABLE $table" );
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
    78
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
    79
			echo '<br />&nbsp;&nbsp;&nbsp;&nbsp;';
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
    80
			if ( 'Table is already up to date' == $check->Msg_text )  {
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
    81
				/* translators: %s: table name */
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
    82
				printf( __( 'The %s table is already optimized.' ), "<code>$table</code>" );
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
    83
			} else {
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
    84
				$check = $wpdb->get_row( "OPTIMIZE TABLE $table" );
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
    85
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
    86
				echo '<br />&nbsp;&nbsp;&nbsp;&nbsp;';
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
    87
				if ( 'OK' == $check->Msg_text || 'Table is already up to date' == $check->Msg_text ) {
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
    88
					/* translators: %s: table name */
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
    89
					printf( __( 'Successfully optimized the %s table.' ), "<code>$table</code>" );
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
    90
				} else {
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
    91
					/* translators: 1: table name, 2: error message, */
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
    92
					printf( __( 'Failed to optimize the %1$s table. Error: %2$s' ), "<code>$table</code>", "<code>$check->Msg_text</code>" );
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
    93
				}
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
    94
			}
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
    95
		}
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
    96
		echo '</p>';
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
    97
	}
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
    98
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
    99
	if ( $problems ) {
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   100
		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' ) );
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   101
		$problem_output = '';
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   102
		foreach ( $problems as $table => $problem )
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   103
			$problem_output .= "$table: $problem\n";
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   104
		echo '<p><textarea name="errors" id="errors" rows="20" cols="60">' . esc_textarea( $problem_output ) . '</textarea></p>';
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   105
	} else {
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   106
		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>";
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   107
	}
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   108
} else {
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   109
	if ( isset( $_GET['referrer'] ) && 'is_blog_installed' == $_GET['referrer'] )
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   110
		echo '<p>' . __( 'One or more database tables are unavailable. To allow WordPress to attempt to repair these tables, press the &#8220;Repair Database&#8221; button. Repairing can take a while, so please be patient.' ) . '</p>';
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   111
	else
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   112
		echo '<p>' . __( 'WordPress can automatically look for some common database problems and repair them. Repairing can take a while, so please be patient.' ) . '</p>';
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   113
?>
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   114
	<p class="step"><a class="button button-large" href="repair.php?repair=1"><?php _e( 'Repair Database' ); ?></a></p>
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   115
	<p><?php _e( 'WordPress can also attempt to optimize the database. This improves performance in some situations. Repairing and optimizing the database can take a long time and the database will be locked while optimizing.' ); ?></p>
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   116
	<p class="step"><a class="button button-large" href="repair.php?repair=2"><?php _e( 'Repair and Optimize Database' ); ?></a></p>
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   117
<?php
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   118
}
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   119
?>
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   120
</body>
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   121
</html>