Create New Item
Item Type
File
Folder
Item Name
Search file in folder and subfolders...
Are you sure want to rename?
File Manager
/
save_bvnghean.vn
/
wp-content
/
plugins
/
backupbuddy
/
controllers
/
ajax
:
db_repair.php
Advanced Search
Upload
New Item
Settings
Back
Back Up
Advanced Editor
Save
<?php backupbuddy_core::verifyAjaxAccess(); // Repair db integrity of a table. /* db_repair() * * Repair specific table. Used on server info page. * * @return null */ $table = base64_decode( pb_backupbuddy::_GET( 'table' ) ); global $wpdb; pb_backupbuddy::$ui->ajax_header(); echo '<h2>Database Table Repair</h2>'; echo 'Repairing table `' . $table . '`...<br><br>'; $rows = $wpdb->get_results( "REPAIR TABLE `" . backupbuddy_core::dbEscape( $table ) . "`", ARRAY_A ); echo '<b>Results:</b><br><br>'; echo '<table class="widefat">'; foreach( $rows as $row ) { echo '<tr>'; echo '<td>' . $row['Msg_type'] . '</td>'; echo '<td>' . $row['Msg_text'] . '</td>'; echo '</tr>'; } unset( $rows ); echo '</table>'; pb_backupbuddy::$ui->ajax_footer(); die();