]> scripts.mit.edu Git - autoinstalls/wordpress.git/blob - wp-admin/maint/repair.php
WordPress 4.3-scripts
[autoinstalls/wordpress.git] / wp-admin / maint / repair.php
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
32         $default_key     = 'put your unique phrase here';
33         $missing_key     = false;
34         $duplicated_keys = array();
35
36         foreach ( array( 'AUTH_KEY', 'SECURE_AUTH_KEY', 'LOGGED_IN_KEY', 'NONCE_KEY', 'AUTH_SALT', 'SECURE_AUTH_SALT', 'LOGGED_IN_SALT', 'NONCE_SALT' ) as $key ) {
37                 if ( defined( $key ) ) {
38                         // Check for unique values of each key.
39                         $duplicated_keys[ constant( $key ) ] = isset( $duplicated_keys[ constant( $key ) ] );
40                 } else {
41                         // If a constant is not defined, it's missing.
42                         $missing_key = true;
43                 }
44         }
45
46         // If at least one key uses the default value, consider it duplicated.
47         if ( isset( $duplicated_keys[ $default_key ] ) ) {
48                 $duplicated_keys[ $default_key ] = true;
49         }
50
51         // Weed out all unique, non-default values.
52         $duplicated_keys = array_filter( $duplicated_keys );
53
54         if ( $duplicated_keys || $missing_key ) {
55                 // Translators: 1: wp-config.php; 2: Secret key service URL.
56                 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>';
57         }
58
59 } elseif ( isset( $_GET['repair'] ) ) {
60         $optimize = 2 == $_GET['repair'];
61         $okay = true;
62         $problems = array();
63
64         $tables = $wpdb->tables();
65
66         // Sitecategories may not exist if global terms are disabled.
67         $query = $wpdb->prepare( "SHOW TABLES LIKE %s", $wpdb->esc_like( $wpdb->sitecategories ) );
68         if ( is_multisite() && ! $wpdb->get_var( $query ) ) {
69                 unset( $tables['sitecategories'] );
70         }
71
72         /**
73          * Filter additional database tables to repair.
74          *
75          * @since 3.0.0
76          *
77          * @param array $tables Array of prefixed table names to be repaired.
78          */
79         $tables = array_merge( $tables, (array) apply_filters( 'tables_to_repair', array() ) );
80
81         // Loop over the tables, checking and repairing as needed.
82         foreach ( $tables as $table ) {
83                 $check = $wpdb->get_row( "CHECK TABLE $table" );
84
85                 echo '<p>';
86                 if ( 'OK' == $check->Msg_text ) {
87                         /* translators: %s: table name */
88                         printf( __( 'The %s table is okay.' ), "<code>$table</code>" );
89                 } else {
90                         /* translators: 1: table name, 2: error message, */
91                         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>" );
92
93                         $repair = $wpdb->get_row( "REPAIR TABLE $table" );
94
95                         echo '<br />&nbsp;&nbsp;&nbsp;&nbsp;';
96                         if ( 'OK' == $check->Msg_text ) {
97                                 /* translators: %s: table name */
98                                 printf( __( 'Successfully repaired the %s table.' ), "<code>$table</code>" );
99                         } else {
100                                 /* translators: 1: table name, 2: error message, */
101                                 echo sprintf( __( 'Failed to repair the %1$s table. Error: %2$s' ), "<code>$table</code>", "<code>$check->Msg_text</code>" ) . '<br />';
102                                 $problems[$table] = $check->Msg_text;
103                                 $okay = false;
104                         }
105                 }
106
107                 if ( $okay && $optimize ) {
108                         $check = $wpdb->get_row( "ANALYZE TABLE $table" );
109
110                         echo '<br />&nbsp;&nbsp;&nbsp;&nbsp;';
111                         if ( 'Table is already up to date' == $check->Msg_text )  {
112                                 /* translators: %s: table name */
113                                 printf( __( 'The %s table is already optimized.' ), "<code>$table</code>" );
114                         } else {
115                                 $check = $wpdb->get_row( "OPTIMIZE TABLE $table" );
116
117                                 echo '<br />&nbsp;&nbsp;&nbsp;&nbsp;';
118                                 if ( 'OK' == $check->Msg_text || 'Table is already up to date' == $check->Msg_text ) {
119                                         /* translators: %s: table name */
120                                         printf( __( 'Successfully optimized the %s table.' ), "<code>$table</code>" );
121                                 } else {
122                                         /* translators: 1: table name, 2: error message, */
123                                         printf( __( 'Failed to optimize the %1$s table. Error: %2$s' ), "<code>$table</code>", "<code>$check->Msg_text</code>" );
124                                 }
125                         }
126                 }
127                 echo '</p>';
128         }
129
130         if ( $problems ) {
131                 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' ) );
132                 $problem_output = '';
133                 foreach ( $problems as $table => $problem )
134                         $problem_output .= "$table: $problem\n";
135                 echo '<p><textarea name="errors" id="errors" rows="20" cols="60">' . esc_textarea( $problem_output ) . '</textarea></p>';
136         } else {
137                 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>";
138         }
139 } else {
140         if ( isset( $_GET['referrer'] ) && 'is_blog_installed' == $_GET['referrer'] )
141                 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>';
142         else
143                 echo '<p>' . __( 'WordPress can automatically look for some common database problems and repair them. Repairing can take a while, so please be patient.' ) . '</p>';
144 ?>
145         <p class="step"><a class="button button-large" href="repair.php?repair=1"><?php _e( 'Repair Database' ); ?></a></p>
146         <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>
147         <p class="step"><a class="button button-large" href="repair.php?repair=2"><?php _e( 'Repair and Optimize Database' ); ?></a></p>
148 <?php
149 }
150 ?>
151 </body>
152 </html>