author | ymh <ymh.work@gmail.com> |
Wed, 16 Oct 2019 11:23:38 +0200 | |
changeset 14 | 00ac8f60d73f |
parent 9 | 177826044cd9 |
child 16 | a86126ab1dd4 |
permissions | -rw-r--r-- |
0 | 1 |
<?php |
2 |
/** |
|
3 |
* Database Repair and Optimization Script. |
|
4 |
* |
|
5 |
* @package WordPress |
|
6 |
* @subpackage Database |
|
7 |
*/ |
|
9 | 8 |
define( 'WP_REPAIRING', true ); |
0 | 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> |
|
5 | 17 |
<meta name="viewport" content="width=device-width" /> |
0 | 18 |
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
19 |
<meta name="robots" content="noindex,nofollow" /> |
0 | 20 |
<title><?php _e( 'WordPress › Database Repair' ); ?></title> |
9 | 21 |
<?php wp_admin_css( 'install', true ); ?> |
0 | 22 |
</head> |
23 |
<body class="wp-core-ui"> |
|
9 | 24 |
<p id="logo"><a href="<?php echo esc_url( __( 'https://wordpress.org/' ) ); ?>"><?php _e( 'WordPress' ); ?></a></p> |
0 | 25 |
|
26 |
<?php |
|
27 |
||
9 | 28 |
if ( ! defined( 'WP_ALLOW_REPAIR' ) || ! WP_ALLOW_REPAIR ) { |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
29 |
|
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
30 |
echo '<h1 class="screen-reader-text">' . __( 'Allow automatic database repair' ) . '</h1>'; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
31 |
|
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
32 |
echo '<p>'; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
33 |
printf( |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
34 |
/* translators: %s: wp-config.php */ |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
35 |
__( 'To allow use of this page to automatically repair database problems, please add the following line to your %s file. Once this line is added to your config, reload this page.' ), |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
36 |
'<code>wp-config.php</code>' |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
37 |
); |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
38 |
echo "</p><p><code>define('WP_ALLOW_REPAIR', true);</code></p>"; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
39 |
|
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
40 |
$default_key = 'put your unique phrase here'; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
41 |
$missing_key = false; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
42 |
$duplicated_keys = array(); |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
43 |
|
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
44 |
foreach ( array( 'AUTH_KEY', 'SECURE_AUTH_KEY', 'LOGGED_IN_KEY', 'NONCE_KEY', 'AUTH_SALT', 'SECURE_AUTH_SALT', 'LOGGED_IN_SALT', 'NONCE_SALT' ) as $key ) { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
45 |
if ( defined( $key ) ) { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
46 |
// Check for unique values of each key. |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
47 |
$duplicated_keys[ constant( $key ) ] = isset( $duplicated_keys[ constant( $key ) ] ); |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
48 |
} else { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
49 |
// If a constant is not defined, it's missing. |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
50 |
$missing_key = true; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
51 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
52 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
53 |
|
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
54 |
// If at least one key uses the default value, consider it duplicated. |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
55 |
if ( isset( $duplicated_keys[ $default_key ] ) ) { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
56 |
$duplicated_keys[ $default_key ] = true; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
57 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
58 |
|
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
59 |
// Weed out all unique, non-default values. |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
60 |
$duplicated_keys = array_filter( $duplicated_keys ); |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
61 |
|
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
62 |
if ( $duplicated_keys || $missing_key ) { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
63 |
|
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
64 |
echo '<h2 class="screen-reader-text">' . __( 'Check secret keys' ) . '</h2>'; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
65 |
|
9 | 66 |
/* translators: 1: wp-config.php, 2: secret key service URL */ |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
67 |
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>'; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
68 |
} |
0 | 69 |
} elseif ( isset( $_GET['repair'] ) ) { |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
70 |
|
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
71 |
echo '<h1 class="screen-reader-text">' . __( 'Database repair results' ) . '</h1>'; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
72 |
|
0 | 73 |
$optimize = 2 == $_GET['repair']; |
9 | 74 |
$okay = true; |
0 | 75 |
$problems = array(); |
76 |
||
77 |
$tables = $wpdb->tables(); |
|
78 |
||
79 |
// Sitecategories may not exist if global terms are disabled. |
|
9 | 80 |
$query = $wpdb->prepare( 'SHOW TABLES LIKE %s', $wpdb->esc_like( $wpdb->sitecategories ) ); |
5 | 81 |
if ( is_multisite() && ! $wpdb->get_var( $query ) ) { |
0 | 82 |
unset( $tables['sitecategories'] ); |
5 | 83 |
} |
0 | 84 |
|
85 |
/** |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
86 |
* Filters additional database tables to repair. |
0 | 87 |
* |
88 |
* @since 3.0.0 |
|
89 |
* |
|
9 | 90 |
* @param string[] $tables Array of prefixed table names to be repaired. |
0 | 91 |
*/ |
92 |
$tables = array_merge( $tables, (array) apply_filters( 'tables_to_repair', array() ) ); |
|
93 |
||
94 |
// Loop over the tables, checking and repairing as needed. |
|
95 |
foreach ( $tables as $table ) { |
|
96 |
$check = $wpdb->get_row( "CHECK TABLE $table" ); |
|
97 |
||
98 |
echo '<p>'; |
|
99 |
if ( 'OK' == $check->Msg_text ) { |
|
100 |
/* translators: %s: table name */ |
|
101 |
printf( __( 'The %s table is okay.' ), "<code>$table</code>" ); |
|
102 |
} else { |
|
103 |
/* translators: 1: table name, 2: error message, */ |
|
9 | 104 |
printf( __( 'The %1$s table is not okay. It is reporting the following error: %2$s. WordPress will attempt to repair this table…' ), "<code>$table</code>", "<code>$check->Msg_text</code>" ); |
0 | 105 |
|
106 |
$repair = $wpdb->get_row( "REPAIR TABLE $table" ); |
|
107 |
||
108 |
echo '<br /> '; |
|
109 |
if ( 'OK' == $check->Msg_text ) { |
|
110 |
/* translators: %s: table name */ |
|
111 |
printf( __( 'Successfully repaired the %s table.' ), "<code>$table</code>" ); |
|
112 |
} else { |
|
113 |
/* translators: 1: table name, 2: error message, */ |
|
114 |
echo sprintf( __( 'Failed to repair the %1$s table. Error: %2$s' ), "<code>$table</code>", "<code>$check->Msg_text</code>" ) . '<br />'; |
|
9 | 115 |
$problems[ $table ] = $check->Msg_text; |
116 |
$okay = false; |
|
0 | 117 |
} |
118 |
} |
|
119 |
||
120 |
if ( $okay && $optimize ) { |
|
121 |
$check = $wpdb->get_row( "ANALYZE TABLE $table" ); |
|
122 |
||
123 |
echo '<br /> '; |
|
9 | 124 |
if ( 'Table is already up to date' == $check->Msg_text ) { |
0 | 125 |
/* translators: %s: table name */ |
126 |
printf( __( 'The %s table is already optimized.' ), "<code>$table</code>" ); |
|
127 |
} else { |
|
128 |
$check = $wpdb->get_row( "OPTIMIZE TABLE $table" ); |
|
129 |
||
130 |
echo '<br /> '; |
|
131 |
if ( 'OK' == $check->Msg_text || 'Table is already up to date' == $check->Msg_text ) { |
|
132 |
/* translators: %s: table name */ |
|
133 |
printf( __( 'Successfully optimized the %s table.' ), "<code>$table</code>" ); |
|
134 |
} else { |
|
135 |
/* translators: 1: table name, 2: error message, */ |
|
136 |
printf( __( 'Failed to optimize the %1$s table. Error: %2$s' ), "<code>$table</code>", "<code>$check->Msg_text</code>" ); |
|
137 |
} |
|
138 |
} |
|
139 |
} |
|
140 |
echo '</p>'; |
|
141 |
} |
|
142 |
||
143 |
if ( $problems ) { |
|
9 | 144 |
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' ) ); |
0 | 145 |
$problem_output = ''; |
9 | 146 |
foreach ( $problems as $table => $problem ) { |
0 | 147 |
$problem_output .= "$table: $problem\n"; |
9 | 148 |
} |
0 | 149 |
echo '<p><textarea name="errors" id="errors" rows="20" cols="60">' . esc_textarea( $problem_output ) . '</textarea></p>'; |
150 |
} else { |
|
5 | 151 |
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>"; |
0 | 152 |
} |
153 |
} else { |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
154 |
|
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
155 |
echo '<h1 class="screen-reader-text">' . __( 'WordPress database repair' ) . '</h1>'; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
156 |
|
9 | 157 |
if ( isset( $_GET['referrer'] ) && 'is_blog_installed' == $_GET['referrer'] ) { |
0 | 158 |
echo '<p>' . __( 'One or more database tables are unavailable. To allow WordPress to attempt to repair these tables, press the “Repair Database” button. Repairing can take a while, so please be patient.' ) . '</p>'; |
9 | 159 |
} else { |
0 | 160 |
echo '<p>' . __( 'WordPress can automatically look for some common database problems and repair them. Repairing can take a while, so please be patient.' ) . '</p>'; |
9 | 161 |
} |
162 |
?> |
|
0 | 163 |
<p class="step"><a class="button button-large" href="repair.php?repair=1"><?php _e( 'Repair Database' ); ?></a></p> |
164 |
<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> |
|
165 |
<p class="step"><a class="button button-large" href="repair.php?repair=2"><?php _e( 'Repair and Optimize Database' ); ?></a></p> |
|
9 | 166 |
<?php |
0 | 167 |
} |
168 |
?> |
|
169 |
</body> |
|
170 |
</html> |