PluginProbe
Database Reset / 3.17
Database Reset v3.17
2.3.2 3.0 3.0.1 3.0.2 3.1 3.15 3.16 3.17 3.18 3.19 3.20 3.21 3.22 3.23 3.24 3.25 trunk 1.0 1.2 1.2.1 1.2.2 1.3 1.4 2.0 2.1 All 27 releases
wordpress-database-reset / readme.txt

readme.txt in Database Reset 3.17, at readme.txt

166 lines 5.9 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 === WP Database Reset ===
2 Contributors: WebFactory
3 Tags: database, reset, restore, database reset, wp reset, reset wp, developer, development
4 Requires at least: 4.2
5 Requires PHP: 5.2
6 Tested up to: 5.6
7 Stable tag: 3.17
8 License: GPLv2 or later
9 License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
11 Skip reinstalling WP to reset it & reset the WordPress database back to its original state with 1-click.
12
13 == Description ==
14
15 The WordPress Database Reset plugin allows you to **reset the database** (all tables or the ones you choose) back to its default settings without having to go through the WordPress 5 minute installation or having to modify any files.
16
17 > Need more reset tools? To individually reset plugins, themes, transients or media? Or perhaps database snapshots so you can restore your WP site with one click if you made a mistake? Then check out our free sister plugin - <a href="https://wordpress.org/plugins/wp-reset/">WP Reset</a>.
18
19 **Features**
20
21 * Extremely fast one click process to reset the WordPress database tables
22 * Choose to reset the entire database or specific database tables
23 * Secure and super simple to use
24 * Safe - it's not possible to accidentally click reset
25 * Prefer the command line? Reset the database in one command
26 * Excellent for theme and plugin developers who need to clean the database of any unnecessary content
27
28 **Command Line**
29
30 Once activated, you can use the WordPress Database Reset plugin with [WordPress CLI](http://wp-cli.org/). List of WP-CLI commands:
31
32 Reset all tables:
33
34 `wp reset database`
35
36 Specify a list of tables to reset:
37
38 `wp reset database --tables='users, posts, comments, options'`
39
40 The current theme and plugins will be reactivated by default. You can disable them like so:
41
42 `wp reset database --no-reactivate`
43
44 List table names:
45
46 `wp reset list`
47
48
49 **Support**
50
51 Create a new post in the [WordPress Database Reset support forum](https://wordpress.org/support/plugin/wordpress-database-reset).
52
53 **Want to help out?**
54
55 * Provide new <a href="https://translate.wordpress.org/projects/wp-plugins/wordpress-database-reset">language translations</a>
56 * Want to help others that might be having issues? [Answer questions on the support forum](https://wordpress.org/support/plugin/wordpress-database-reset).
57 * Rate the plugin - <a href="https://wordpress.org/support/plugin/wordpress-database-reset/reviews/#new-post">rate it</a>
58
59
60 WP Database Reset was originally developed in October 2011 by <a href="https://github.com/chrisberthe">Chris Berthe</a>. Please do not send him any support questions. If you need assistance the <a href="https://wordpress.org/support/plugin/wordpress-database-reset/">official forum</a> is the best and fastest way to get it.
61
62
63 == Screenshots ==
64 1. The WP Database Reset plugin page
65
66 == Changelog ==
67
68 = 3.17 =
69 * 2020/10/06
70 * license fix
71 * added promo for WP 301 Redirects
72
73 = 3.16 =
74 * 2020/09/01
75 * fixed an issue with select tables element
76
77 = 3.15 =
78 * 2020/01/14
79 * security fixes - thanks to Chloe from Wordfence
80 * 80k installations; 761,300 downloads
81
82 = 3.1 =
83 * 2019/08/13
84 * WebFactory took over development
85 * minor improvements in GUI and messaging
86 * fixed a nasty bug related to admin user ID not being 1
87 * 70k installations; 665,500 downloads
88
89 = 3.0.2 =
90 * Fix for plugin page not showing up in tools menu (on some hosting providers)
91 * Update how session tokens were being restored
92 * Remove unnecessary nonce
93 * Bump 'requires at least' to version 4.2
94 * Change 'theme_data' to 'theme_plugin_data'
95
96 = 3.0.1 =
97 * Fix plugin disabled after update, thanks to Ulrich Pogson
98 * Update the pot file
99
100 = 3.0.0 =
101 * Completely re-written from scratch
102 * Add extended WP_CLI command class
103 * Clean up admin interface
104 * Remove unnecessary help tabs
105 * Submit button is now deactivated until user inputs security code
106 * Add PayPal donation button
107 * Remove outdated localization files
108 * Update the text domain to match slug for translate.wordpress.org
109
110 = 2.3.2 =
111 * Add option to keep active theme, thanks to Ulrich Pogson
112 * Adhere to WordPress PHP coding syntax standards
113 * Delete the user session and recreate it
114 * Separate the backup_tables method into two new methods
115 * Reset only WP tables and not custom tables
116 * French language updates, thanks to Fx Benard
117 * Fix for undefined variable: backup_tables
118
119 = 2.3.1 =
120 * Fixed bug where reactivate plugins div was not displaying on 'options' table select
121
122 = 2.3 =
123 * Removed deprecated function $wpdb->escape(), replaced with esc_sql()
124 * Add German translation, thanks to Ulrich Pogson
125 * Updated screenshot-1.png
126 * Renamed default localization file
127 * Fixed broken if conditional during code clean up for version 2.2
128
129 = 2.2 =
130 * Fixed scripts and styles to only load on plugin page
131 * Formatted code to meet WordPress syntax standards
132
133 = 2.1 =
134 * Replaced 3.3 deprecated get_userdatabylogin() with get_user_by()
135 * Updated deprecated add_contextual_help() with add_help_tab()
136 * Small change in condition check for backup tables
137 * Removed custom _rand_string() with core wp_generate_password()
138 * Added Portuguese translation - thanks to Fernando Lopes
139
140 = 2.0 =
141 * Added functionality to be able to select which tables you want to reset, rather than having to reset the entire database.
142 * Added bsmSelect for the multiple select.
143 * Modified screenshot-1.png.
144 * Fixed redirect bug
145 * 'Reactivate current plugins after reset' only shows if the options table is selected from the dropdown.
146
147 = 1.4 =
148 * Made quite a few changes to the translation files
149 * Renamed French translation file for plugin format, not theme format
150 * Optimized (until potential version 2.0)
151
152 = 1.3 =
153 * Replaced reactivation option for all currently active plugins (not just this plugin)
154 * Updated language files
155
156 = 1.2 =
157 * Added capability to manually select whether or not plugin should be reactivated upon reset
158 * Modified class name to avoid potential conflicts with WordPress core
159 * Modified wp_mail override
160 * Removed deprecated user level for WordPress 3.0+
161 * Fixed small bug where if admin user did not have admin capabilities, it would tell the user they did
162
163 = 1.0 =
164 * First version
165 * 2011-10-04
166