]> scripts.mit.edu Git - autoinstalls/wordpress.git/blob - wp-admin/maint/repair.php
Wordpress 3.3
[autoinstalls/wordpress.git] / wp-admin / maint / repair.php
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>
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 &rsaquo; 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('WP_ALLOW_REPAIR') ) {
22         echo '<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('WP_ALLOW_REPAIR', true);</code>";
23 } elseif ( isset($_GET['repair']) ) {
24         check_admin_referer('repair_db');
25
26         if ( 2 == $_GET['repair'] )
27                 $optimize = true;
28         else
29                 $optimize = false;
30
31         $okay = true;
32         $problems = array();
33
34         $tables = $wpdb->tables();
35
36         // Sitecategories may not exist if global terms are disabled.
37         if ( is_multisite() && ! $wpdb->get_var( "SHOW TABLES LIKE '$wpdb->sitecategories'" ) )
38                 unset( $tables['sitecategories'] );
39
40         $tables = array_merge( $tables, (array) apply_filters( 'tables_to_repair', array() ) ); // Return tables with table prefixes.
41
42         // Loop over the tables, checking and repairing as needed.
43         foreach ( $tables as $table ) {
44                 $check = $wpdb->get_row("CHECK TABLE $table");
45
46                 echo '<p>';
47                 if ( 'OK' == $check->Msg_text ) {
48                         /* translators: %s: table name */
49                         printf( __( 'The %s table is okay.' ), $table );
50                 } else {
51                         /* translators: 1: table name, 2: error message, */
52                         printf( __( 'The %1$s table is not okay. It is reporting the following error: %2$s.  WordPress will attempt to repair this table&hellip;' ) , $table, "<code>$check->Msg_text</code>" );
53
54                         $repair = $wpdb->get_row("REPAIR TABLE $table");
55
56                         echo '<br />&nbsp;&nbsp;&nbsp;&nbsp;';
57                         if ( 'OK' == $check->Msg_text ) {
58                                 /* translators: %s: table name */
59                                 printf( __( 'Successfully repaired the %s table.' ), $table );
60                         } else {
61                                 /* translators: 1: table name, 2: error message, */
62                                 echo sprintf( __( 'Failed to repair the  %1$s table. Error: %2$s' ), $table, "<code>$check->Msg_text</code>" ) . '<br />';
63                                 $problems[$table] = $check->Msg_text;
64                                 $okay = false;
65                         }
66                 }
67
68                 if ( $okay && $optimize ) {
69                         $check = $wpdb->get_row("ANALYZE TABLE $table");
70
71                         echo '<br />&nbsp;&nbsp;&nbsp;&nbsp';
72                         if ( 'Table is already up to date' == $check->Msg_text )  {
73                                 /* translators: %s: table name */
74                                 printf( __( 'The %s table is already optimized.' ), $table );
75                         } else {
76                                 $check = $wpdb->get_row("OPTIMIZE TABLE $table");
77
78                                 echo '<br />&nbsp;&nbsp;&nbsp;&nbsp';
79                                 if ( 'OK' == $check->Msg_text || 'Table is already up to date' == $check->Msg_text ) {
80                                         /* translators: %s: table name */
81                                         printf( __( 'Successfully optimized the %s table.' ), $table );
82                                 } else {
83                                         /* translators: 1: table name, 2: error message, */
84                                         printf( __( 'Failed to optimize the %1$s table. Error: %2$s' ), $table, "<code>$check->Msg_text</code>" );
85                                 }
86                         }
87                 }
88                 echo '</p>';
89         }
90
91         if ( !empty($problems) ) {
92                 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');
93                 $problem_output = array();
94                 foreach ( $problems as $table => $problem )
95                         $problem_output[] = "$table: $problem";
96                 echo '<textarea name="errors" id="errors" rows="20" cols="60">' . esc_textarea( implode("\n", $problem_output) ) . '</textarea>';
97         } else {
98                 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>";
99         }
100 } else {
101         if ( isset($_GET['referrer']) && 'is_blog_installed' == $_GET['referrer'] )
102                 _e('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.');
103         else
104                 _e('WordPress can automatically look for some common database problems and repair them.  Repairing can take a while, so please be patient.')
105 ?>
106         <p class="step"><a class="button" href="<?php echo wp_nonce_url('repair.php?repair=1', 'repair_db') ?>"><?php _e( 'Repair Database' ); ?></a></p>
107         <?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.'); ?>
108         <p class="step"><a class="button" href="<?php echo wp_nonce_url('repair.php?repair=2', 'repair_db') ?>"><?php _e( 'Repair and Optimize Database' ); ?></a></p>
109 <?php
110 }
111 ?>
112 </body>
113 </html>