Version Description
No Upgrade Notice available.
Download this release
Release Info
Developer | cageehv |
Plugin | Optimize Database after Deleting Revisions |
Version | 1.1.3 |
Comparing to | |
See all releases |
Code changes from version 1.1.2 to 1.1.3
- readme.txt +9 -5
- rvg-optimize-db.php +1 -1
readme.txt
CHANGED
@@ -9,21 +9,22 @@ Author URI: http://cagewebdev.com
|
|
9 |
Author: Rolf van Gelder, Eindhoven, The Netherlands
|
10 |
Requires at least: 2.0
|
11 |
Tested up to: 3.4.1
|
12 |
-
Stable tag: 1.1.
|
13 |
-
Version: 1.1.
|
14 |
|
15 |
== Description ==
|
16 |
|
17 |
<p>This plugin is a 'one click' database optimizer.</p>
|
18 |
<p>It deletes the redundant revisions of posts and pages and, after that, optimizes all database tables.</p>
|
19 |
<p>http://cagewebdev.com/index.php/optimize-database-after-deleting-revisions-wordpress-plugin</p>
|
|
|
20 |
|
21 |
== Installation ==
|
22 |
|
23 |
<ol>
|
24 |
<li>Upload `rvg-optimize-db.php` to the `/wp-content/plugins/` directory</li>
|
25 |
<li>Activate the plugin through the 'Plugins' menu in the WordPress Dashboard</li>
|
26 |
-
<li>Change the settings (if needed) through WordPress Dashboard,
|
27 |
</ol>
|
28 |
|
29 |
== Upgrade Notice ==
|
@@ -43,11 +44,14 @@ No Screenshots available.
|
|
43 |
<p><b>1.0.4</b> 06/06/2012 Now also works with non short_open_tag's</p>
|
44 |
<p><b>1.0.5</b> 08/21/2012 Depreciated item ('has_cap') replaced, abandoned line of code removed</p>
|
45 |
<p><b>1.1</b> 08/29/2012 Added: a new option page, in de plugins section, where you can define the maximum number of - most recent - revisions you want to keep per post or page</p>
|
46 |
-
<p><b>1.1.
|
|
|
47 |
|
48 |
== Frequently Asked Questions ==
|
49 |
|
50 |
<p><b>Q:</b> <em>How can I change the settings of this plugin?</em></p>
|
51 |
-
<p><b>A:</b> In the WordPress Dashboard go to '<b>
|
52 |
<p><b>Q:</b> <em>How do I run this plugin?</em></p>
|
53 |
<p><b>A:</b> In the WordPress Dashboard go to '<b>Settings</b>'. Click on '<b>Optimize Database</b>'. Et voila!</p>
|
|
|
|
9 |
Author: Rolf van Gelder, Eindhoven, The Netherlands
|
10 |
Requires at least: 2.0
|
11 |
Tested up to: 3.4.1
|
12 |
+
Stable tag: 1.1.3
|
13 |
+
Version: 1.1.3
|
14 |
|
15 |
== Description ==
|
16 |
|
17 |
<p>This plugin is a 'one click' database optimizer.</p>
|
18 |
<p>It deletes the redundant revisions of posts and pages and, after that, optimizes all database tables.</p>
|
19 |
<p>http://cagewebdev.com/index.php/optimize-database-after-deleting-revisions-wordpress-plugin</p>
|
20 |
+
<p>Author: Rolf van Gelder, Eindhoven, The Netherlands - http://cagewebdev.com</p>
|
21 |
|
22 |
== Installation ==
|
23 |
|
24 |
<ol>
|
25 |
<li>Upload `rvg-optimize-db.php` to the `/wp-content/plugins/` directory</li>
|
26 |
<li>Activate the plugin through the 'Plugins' menu in the WordPress Dashboard</li>
|
27 |
+
<li>Change the settings (if needed) through WordPress Dashboard, Settings, Optimize DB Options</li>
|
28 |
</ol>
|
29 |
|
30 |
== Upgrade Notice ==
|
44 |
<p><b>1.0.4</b> 06/06/2012 Now also works with non short_open_tag's</p>
|
45 |
<p><b>1.0.5</b> 08/21/2012 Depreciated item ('has_cap') replaced, abandoned line of code removed</p>
|
46 |
<p><b>1.1</b> 08/29/2012 Added: a new option page, in de plugins section, where you can define the maximum number of - most recent - revisions you want to keep per post or page</p>
|
47 |
+
<p><b>1.1.2</b> 08/30/2012 Minor bug fix for the new option page</p>
|
48 |
+
<p><b>1.1.3</b> 09/01/2012 Moved the 'Optimize DB Options' item to Dashboard 'Settings' Menu and the 'Optimize Database' item to the Dashboard 'Tools' Menu. That makes more sense!</p>
|
49 |
|
50 |
== Frequently Asked Questions ==
|
51 |
|
52 |
<p><b>Q:</b> <em>How can I change the settings of this plugin?</em></p>
|
53 |
+
<p><b>A:</b> In the WordPress Dashboard go to '<b>Settings / Optimize DB Options</b>'. There you can define the maximum number of - most recent - revisions you want to keep per post or page.</p>
|
54 |
<p><b>Q:</b> <em>How do I run this plugin?</em></p>
|
55 |
<p><b>A:</b> In the WordPress Dashboard go to '<b>Settings</b>'. Click on '<b>Optimize Database</b>'. Et voila!</p>
|
56 |
+
<p><b>Q:</b> <em>Why do I see 'Table does not support optimize, doing recreate + analyze instead' while optimizing my database?</em></p>
|
57 |
+
<p><b>A:</b> That is because the table type of that table is not 'MyISAM'</p>
|
rvg-optimize-db.php
CHANGED
@@ -8,7 +8,7 @@ $release_date = '08/30/2012';
|
|
8 |
/*
|
9 |
Plugin Name: Optimize Database after Deleting Revisions
|
10 |
Plugin URI: http://cagewebdev.com/index.php/optimize-database-after-deleting-revisions-wordpress-plugin/
|
11 |
-
Description: Optimizes the Wordpress Database after Deleting Revisions - <a href="plugins.php?page=rvg_odb_admin"><strong>
|
12 |
Author: Rolf van Gelder, Eindhoven, The Netherlands
|
13 |
Version: 1.1.2
|
14 |
Author URI: http://cagewebdev.com
|
8 |
/*
|
9 |
Plugin Name: Optimize Database after Deleting Revisions
|
10 |
Plugin URI: http://cagewebdev.com/index.php/optimize-database-after-deleting-revisions-wordpress-plugin/
|
11 |
+
Description: Optimizes the Wordpress Database after Deleting Revisions - <a href="plugins.php?page=rvg_odb_admin"><strong>plugin options</strong></a>
|
12 |
Author: Rolf van Gelder, Eindhoven, The Netherlands
|
13 |
Version: 1.1.2
|
14 |
Author URI: http://cagewebdev.com
|