| | 1 | <?php |
| | 2 | |
| | 3 | define('WP_REPAIRING', true); |
| | 4 | |
| | 5 | require_once('../../wp-load.php'); |
| | 6 | |
| | 7 | header( 'Content-Type: text/html; charset=utf-8' ); |
| | 8 | ?> |
| | 9 | <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> |
| | 10 | <html xmlns="http://www.w3.org/1999/xhtml" <?php language_attributes(); ?>> |
| | 11 | <head> |
| | 12 | <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> |
| | 13 | <title><?php _e('WordPress › Database Repair'); ?></title> |
| | 14 | <?php wp_admin_css( 'install', true ); ?> |
| | 15 | </head> |
| | 16 | <body> |
| | 17 | <h1 id="logo"><img alt="WordPress" src="../images/wordpress-logo.png" /></h1> |
| | 18 | |
| | 19 | <?php |
| | 20 | |
| | 21 | if ( !defined('REPAIR') ) { |
| | 22 | _e("<p>To allow use of this page to automatically repair database problems, please add the following line to your wp-config.php file. Once this line is added to your config, reload this page.</p><code>define('REPAIR', true);</code>"); |
| | 23 | } elseif ( isset($_GET['repair']) ) { |
| | 24 | $problems = array(); |
| | 25 | check_admin_referer('repair_db'); |
| | 26 | |
| | 27 | // Loop over the WP tables, checking and repairing as needed. |
| | 28 | foreach ($wpdb->tables as $table) { |
| | 29 | if ( in_array($table, $wpdb->old_tables) ) |
| | 30 | continue; |
| | 31 | |
| | 32 | $check = $wpdb->get_row("CHECK TABLE {$wpdb->prefix}$table"); |
| | 33 | if ( 'OK' == $check->Msg_text ) { |
| | 34 | echo "<p>The {$wpdb->prefix}$table table is okay.</p>"; |
| | 35 | } else { |
| | 36 | echo "<p>The {$wpdb->prefix}$table table is not okay. It is reporting the following error: <code>$check->Msg_text</code>. WordPress will attempt to repair this table…<br/>"; |
| | 37 | $repair = $wpdb->get_row("REPAIR TABLE {$wpb->prefix}$table"); |
| | 38 | if ( 'OK' == $check->Msg_text ) { |
| | 39 | echo " Sucessfully repaired the {$wpb->prefix}$table table.<br />"; |
| | 40 | } else { |
| | 41 | echo " Failed to repair the {$wpdb->prefix}$table table. Error: $check->Msg_text<br />"; |
| | 42 | $problems["{$wpdb->prefix}$table"] = $check->Msg_text; |
| | 43 | } |
| | 44 | } |
| | 45 | } |
| | 46 | |
| | 47 | if ( !empty($problems) ) { |
| | 48 | 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/3'); |
| | 49 | $problem_output = array(); |
| | 50 | foreach ( $problems as $table => $problem ) |
| | 51 | $problem_output[] = "$table: $problem"; |
| | 52 | echo '<textarea name="errors" id="errors" rows="20" cols="60">' . format_to_edit(implode("\n", $problem_output)) . '</textarea>'; |
| | 53 | } else { |
| | 54 | _e("<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('REPAIR', true);</code>"); |
| | 55 | } |
| | 56 | } else { |
| | 57 | if ( isset($_GET['referrer']) && 'is_blog_installed' == $_GET['referrer'] ) |
| | 58 | _e('One or more database tables is unavailable. To allow WordPress to attempt to repair these tables, press the "Repair Database" button. Repairing can take awhile, so please be patient.'); |
| | 59 | else |
| | 60 | _e('WordPress can automatically look for some common database problems and repair them. Repairing can take awhile, so please be patient.') |
| | 61 | ?> |
| | 62 | <p class="step"><a class="button" href="<?php echo wp_nonce_url('repair.php?repair=1', 'repair_db') ?>"><?php _e( 'Repair Database' ); ?></a></p> |
| | 63 | <?php |
| | 64 | } |
| | 65 | |
| | 66 | ?> |
| | 67 | </body> |
| | 68 | </html> |
| | 69 | No newline at end of file |