~canonical-sysadmins/wordpress/4.7.4

« back to all changes in this revision

Viewing changes to wp-admin/maint/repair.php

  • Committer: Jacek Nykis
  • Date: 2015-01-05 16:17:05 UTC
  • Revision ID: jacek.nykis@canonical.com-20150105161705-w544l1h5mcg7u4w9
Initial commit

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
<?php
 
2
/**
 
3
 * Database Repair and Optimization Script.
 
4
 *
 
5
 * @package WordPress
 
6
 * @subpackage Database
 
7
 */
 
8
define('WP_REPAIRING', true);
 
9
 
 
10
require_once( dirname( dirname( dirname( __FILE__ ) ) ) . '/wp-load.php' );
 
11
 
 
12
header( 'Content-Type: text/html; charset=utf-8' );
 
13
?>
 
14
<!DOCTYPE html>
 
15
<html xmlns="http://www.w3.org/1999/xhtml" <?php language_attributes(); ?>>
 
16
<head>
 
17
        <meta name="viewport" content="width=device-width" />
 
18
        <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
 
19
        <title><?php _e( 'WordPress &rsaquo; Database Repair' ); ?></title>
 
20
        <?php
 
21
        wp_admin_css( 'install', true );
 
22
        ?>
 
23
</head>
 
24
<body class="wp-core-ui">
 
25
<h1 id="logo"><a href="<?php echo esc_url( __( 'https://wordpress.org/' ) ); ?>" tabindex="-1"><?php _e( 'WordPress' ); ?></a></h1>
 
26
 
 
27
<?php
 
28
 
 
29
if ( ! defined( 'WP_ALLOW_REPAIR' ) ) {
 
30
        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>";
 
31
} elseif ( isset( $_GET['repair'] ) ) {
 
32
        $optimize = 2 == $_GET['repair'];
 
33
        $okay = true;
 
34
        $problems = array();
 
35
 
 
36
        $tables = $wpdb->tables();
 
37
 
 
38
        // Sitecategories may not exist if global terms are disabled.
 
39
        $query = $wpdb->prepare( "SHOW TABLES LIKE %s", $wpdb->esc_like( $wpdb->sitecategories ) );
 
40
        if ( is_multisite() && ! $wpdb->get_var( $query ) ) {
 
41
                unset( $tables['sitecategories'] );
 
42
        }
 
43
 
 
44
        /**
 
45
         * Filter additional database tables to repair.
 
46
         *
 
47
         * @since 3.0.0
 
48
         *
 
49
         * @param array $tables Array of prefixed table names to be repaired.
 
50
         */
 
51
        $tables = array_merge( $tables, (array) apply_filters( 'tables_to_repair', array() ) );
 
52
 
 
53
        // Loop over the tables, checking and repairing as needed.
 
54
        foreach ( $tables as $table ) {
 
55
                $check = $wpdb->get_row( "CHECK TABLE $table" );
 
56
 
 
57
                echo '<p>';
 
58
                if ( 'OK' == $check->Msg_text ) {
 
59
                        /* translators: %s: table name */
 
60
                        printf( __( 'The %s table is okay.' ), "<code>$table</code>" );
 
61
                } else {
 
62
                        /* translators: 1: table name, 2: error message, */
 
63
                        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>" );
 
64
 
 
65
                        $repair = $wpdb->get_row( "REPAIR TABLE $table" );
 
66
 
 
67
                        echo '<br />&nbsp;&nbsp;&nbsp;&nbsp;';
 
68
                        if ( 'OK' == $check->Msg_text ) {
 
69
                                /* translators: %s: table name */
 
70
                                printf( __( 'Successfully repaired the %s table.' ), "<code>$table</code>" );
 
71
                        } else {
 
72
                                /* translators: 1: table name, 2: error message, */
 
73
                                echo sprintf( __( 'Failed to repair the %1$s table. Error: %2$s' ), "<code>$table</code>", "<code>$check->Msg_text</code>" ) . '<br />';
 
74
                                $problems[$table] = $check->Msg_text;
 
75
                                $okay = false;
 
76
                        }
 
77
                }
 
78
 
 
79
                if ( $okay && $optimize ) {
 
80
                        $check = $wpdb->get_row( "ANALYZE TABLE $table" );
 
81
 
 
82
                        echo '<br />&nbsp;&nbsp;&nbsp;&nbsp;';
 
83
                        if ( 'Table is already up to date' == $check->Msg_text )  {
 
84
                                /* translators: %s: table name */
 
85
                                printf( __( 'The %s table is already optimized.' ), "<code>$table</code>" );
 
86
                        } else {
 
87
                                $check = $wpdb->get_row( "OPTIMIZE TABLE $table" );
 
88
 
 
89
                                echo '<br />&nbsp;&nbsp;&nbsp;&nbsp;';
 
90
                                if ( 'OK' == $check->Msg_text || 'Table is already up to date' == $check->Msg_text ) {
 
91
                                        /* translators: %s: table name */
 
92
                                        printf( __( 'Successfully optimized the %s table.' ), "<code>$table</code>" );
 
93
                                } else {
 
94
                                        /* translators: 1: table name, 2: error message, */
 
95
                                        printf( __( 'Failed to optimize the %1$s table. Error: %2$s' ), "<code>$table</code>", "<code>$check->Msg_text</code>" );
 
96
                                }
 
97
                        }
 
98
                }
 
99
                echo '</p>';
 
100
        }
 
101
 
 
102
        if ( $problems ) {
 
103
                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' ) );
 
104
                $problem_output = '';
 
105
                foreach ( $problems as $table => $problem )
 
106
                        $problem_output .= "$table: $problem\n";
 
107
                echo '<p><textarea name="errors" id="errors" rows="20" cols="60">' . esc_textarea( $problem_output ) . '</textarea></p>';
 
108
        } else {
 
109
                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>";
 
110
        }
 
111
} else {
 
112
        if ( isset( $_GET['referrer'] ) && 'is_blog_installed' == $_GET['referrer'] )
 
113
                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>';
 
114
        else
 
115
                echo '<p>' . __( 'WordPress can automatically look for some common database problems and repair them. Repairing can take a while, so please be patient.' ) . '</p>';
 
116
?>
 
117
        <p class="step"><a class="button button-large" href="repair.php?repair=1"><?php _e( 'Repair Database' ); ?></a></p>
 
118
        <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>
 
119
        <p class="step"><a class="button button-large" href="repair.php?repair=2"><?php _e( 'Repair and Optimize Database' ); ?></a></p>
 
120
<?php
 
121
}
 
122
?>
 
123
</body>
 
124
</html>