Version Description
No Upgrade Notice available.
Download this release
Release Info
Developer | cageehv |
Plugin | Optimize Database after Deleting Revisions |
Version | 1.1.7 |
Comparing to | |
See all releases |
Code changes from version 1.1.6 to 1.1.7
- readme.txt +5 -3
- rvg-optimize-db.php +5 -5
readme.txt
CHANGED
@@ -9,8 +9,8 @@ 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 |
|
@@ -49,11 +49,13 @@ No Screenshots available.
|
|
49 |
<p><b>1.1.4</b> 09/01/2012 Something went wrong deploying 1.1.3, so I deployed it again as 1.1.4</p>
|
50 |
<p><b>1.1.5</b> 09/01/2012 Something went wrong deploying 1.1.4, so I deployed it again as 1.1.5. *sigh*</p>
|
51 |
<p><b>1.1.6</b> 09/01/2012 Fixed the link to the options page</p>
|
|
|
|
|
52 |
== Frequently Asked Questions ==
|
53 |
|
54 |
<p><b>Q:</b> <em>How can I change the settings of this plugin?</em></p>
|
55 |
<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>
|
56 |
<p><b>Q:</b> <em>How do I run this plugin?</em></p>
|
57 |
-
<p><b>A:</b> In the WordPress Dashboard go to '<b>
|
58 |
<p><b>Q:</b> <em>Why do I see 'Table does not support optimize, doing recreate + analyze instead' while optimizing my database?</em></p>
|
59 |
<p><b>A:</b> That is because the table type of that table is not 'MyISAM'</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.7
|
13 |
+
Version: 1.1.7
|
14 |
|
15 |
== Description ==
|
16 |
|
49 |
<p><b>1.1.4</b> 09/01/2012 Something went wrong deploying 1.1.3, so I deployed it again as 1.1.4</p>
|
50 |
<p><b>1.1.5</b> 09/01/2012 Something went wrong deploying 1.1.4, so I deployed it again as 1.1.5. *sigh*</p>
|
51 |
<p><b>1.1.6</b> 09/01/2012 Fixed the link to the options page</p>
|
52 |
+
<p><b>1.1.7</b> 09/03/2012 Some textual and link fixes</p>
|
53 |
+
|
54 |
== Frequently Asked Questions ==
|
55 |
|
56 |
<p><b>Q:</b> <em>How can I change the settings of this plugin?</em></p>
|
57 |
<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>
|
58 |
<p><b>Q:</b> <em>How do I run this plugin?</em></p>
|
59 |
+
<p><b>A:</b> In the WordPress Dashboard go to '<b>Tools</b>'. Click on '<b>Optimize Database</b>'. Et voila!</p>
|
60 |
<p><b>Q:</b> <em>Why do I see 'Table does not support optimize, doing recreate + analyze instead' while optimizing my database?</em></p>
|
61 |
<p><b>A:</b> That is because the table type of that table is not 'MyISAM'</p>
|
rvg-optimize-db.php
CHANGED
@@ -1,16 +1,16 @@
|
|
1 |
<?php
|
2 |
-
$version = '1.1.
|
3 |
-
$release_date = '09/
|
4 |
/**
|
5 |
* @package Optimize Database after Deleting Revisions
|
6 |
-
* @version 1.1.
|
7 |
*/
|
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>plug in options</strong></a>
|
12 |
Author: Rolf van Gelder, Eindhoven, The Netherlands
|
13 |
-
Version: 1.1.
|
14 |
Author URI: http://cagewebdev.com
|
15 |
*/
|
16 |
?>
|
@@ -74,7 +74,7 @@ function rvg_odb_options_page() {
|
|
74 |
<p>Below you can define the <u>maximum number</u> of - most recent - revisions you want to <u>keep</u> per post or page.</p>
|
75 |
<p>If you set the maximum number to '<strong>0</strong>' it means <strong>ALL REVISIONS</strong> will be deleted for all posts and pages.</p>
|
76 |
<p>To start the optimization:<br />
|
77 |
-
In the WordPress Dashboard go to ‘<strong>
|
78 |
Click on ‘<strong>Optimize Database</strong>‘. Et voila! </p>
|
79 |
<p>Plugin version:<br />
|
80 |
<strong>v<?php echo $version ?> (<?php echo $release_date?>)</strong> </p>
|
1 |
<?php
|
2 |
+
$version = '1.1.7';
|
3 |
+
$release_date = '09/03/2012';
|
4 |
/**
|
5 |
* @package Optimize Database after Deleting Revisions
|
6 |
+
* @version 1.1.7
|
7 |
*/
|
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>plug in options</strong></a>
|
12 |
Author: Rolf van Gelder, Eindhoven, The Netherlands
|
13 |
+
Version: 1.1.7
|
14 |
Author URI: http://cagewebdev.com
|
15 |
*/
|
16 |
?>
|
74 |
<p>Below you can define the <u>maximum number</u> of - most recent - revisions you want to <u>keep</u> per post or page.</p>
|
75 |
<p>If you set the maximum number to '<strong>0</strong>' it means <strong>ALL REVISIONS</strong> will be deleted for all posts and pages.</p>
|
76 |
<p>To start the optimization:<br />
|
77 |
+
In the WordPress Dashboard go to ‘<strong>Tools</strong>‘.<br />
|
78 |
Click on ‘<strong>Optimize Database</strong>‘. Et voila! </p>
|
79 |
<p>Plugin version:<br />
|
80 |
<strong>v<?php echo $version ?> (<?php echo $release_date?>)</strong> </p>
|