Changeset 419837
- Timestamp:
- 08/05/2011 05:05:06 PM (15 years ago)
- Location:
- wp-database-optimizer-tools/trunk
- Files:
-
- 3 edited
-
readme.txt (modified) (3 diffs)
-
repairDB.php (modified) (2 diffs)
-
wp-database-optimizer-tools.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
wp-database-optimizer-tools/trunk/readme.txt
r416502 r419837 5 5 Requires at least: 3.1 6 6 Tested up to: 3.2.1 7 Stable tag: 0. 17 Stable tag: 0.2 8 8 9 9 == Description == … … 25 25 Se puede hacer un backup de la base de datos ( mas adelante pondra opcion para enviar por email el backup) 26 26 27 28 29 30 Released under the terms of the GNU GPL, version 2.31 http://www.fsf.org/licensing/licenses/gpl.html32 33 NO WARRANTY.34 35 Copyright (c) 2011 Moyo36 27 37 28 == Installation == … … 73 64 Plugin created 74 65 66 =0.2= 67 Fixed Bugs 75 68 76 69 == Screenshots == -
wp-database-optimizer-tools/trunk/repairDB.php
r413851 r419837 1 1 <?php 2 2 /* 3 Filename: backup.php4 Description: Backuptables from the database3 Filename: repairDB.php 4 Description: repair tables from the database 5 5 Author: Moyo 6 6 Change Log: … … 37 37 $text = '<font color="red">'.__('No Tables Selected').'</font>'; 38 38 } 39 40 41 39 42 $selected_tables = substr($tables_string, 2); 40 $selected_tables .= '`'; 43 //$selected_tables .= '`'; 44 45 $selected_tables = mysql_escape_string($selected_tables); 41 46 if(!empty($selected_tables)) { 42 47 $repair2 = $wpdb->query("REPAIR TABLE $selected_tables"); -
wp-database-optimizer-tools/trunk/wp-database-optimizer-tools.php
r418167 r419837 4 4 Plugin URI: http://xtremenews.info/wordpress-plugins/wp-database-optimizer-tools/ 5 5 Description: This plugin will help you to optimize your wordpress database. 6 Version: 0. 16 Version: 0.2 7 7 Author: Moyo 8 8 Author URI: http://xtremenews.info
Note: See TracChangeset
for help on using the changeset viewer.