Version Description
No Upgrade Notice available.
Download this release
Release Info
Developer | cageehv |
Plugin | Optimize Database after Deleting Revisions |
Version | 1.0.1 |
Comparing to | |
See all releases |
Code changes from version 1.0 to 1.0.1
- readme.txt +8 -5
- rvg-optimize-db.php +3 -3
readme.txt
CHANGED
@@ -4,17 +4,18 @@ Contributors: Rolf van Gelder
|
|
4 |
Donate link: http://cagewebdev.com
|
5 |
Plugin Name: Optimize Database after Deleting Revisions
|
6 |
Plugin URI: http://cagewebdev.com/wp-plugins
|
7 |
-
Tags: wp, database, delete, revisions, optimize,
|
8 |
Author URI: http://cagewebdev.com
|
9 |
Author: Rolf van Gelder
|
10 |
Requires at least: 2.0
|
11 |
Tested up to: 3.2.1
|
12 |
-
Stable tag: 1.0
|
13 |
-
Version: 1.0
|
14 |
|
15 |
== Description ==
|
16 |
|
17 |
This plugin is a 'one click' database optimizer. It deletes the redundant revisions of posts and pages and then optimizes all Wordpress database tables.
|
|
|
18 |
|
19 |
== Installation ==
|
20 |
|
@@ -31,8 +32,10 @@ No Screenshots available.
|
|
31 |
|
32 |
== Changelog ==
|
33 |
|
34 |
-
1.0
|
|
|
35 |
|
36 |
== Frequently Asked Questions ==
|
37 |
|
38 |
-
|
|
4 |
Donate link: http://cagewebdev.com
|
5 |
Plugin Name: Optimize Database after Deleting Revisions
|
6 |
Plugin URI: http://cagewebdev.com/wp-plugins
|
7 |
+
Tags: wp, database, delete, revisions, optimize, posts, pages
|
8 |
Author URI: http://cagewebdev.com
|
9 |
Author: Rolf van Gelder
|
10 |
Requires at least: 2.0
|
11 |
Tested up to: 3.2.1
|
12 |
+
Stable tag: 1.0.1
|
13 |
+
Version: 1.0.1
|
14 |
|
15 |
== Description ==
|
16 |
|
17 |
This plugin is a 'one click' database optimizer. It deletes the redundant revisions of posts and pages and then optimizes all Wordpress database tables.
|
18 |
+
http://cagewebdev.com/
|
19 |
|
20 |
== Installation ==
|
21 |
|
32 |
|
33 |
== Changelog ==
|
34 |
|
35 |
+
1.0 11/22/2011 Initial release
|
36 |
+
1.0.1 11/24/2011 A few updates for the readme.txt file
|
37 |
|
38 |
== Frequently Asked Questions ==
|
39 |
|
40 |
+
Q: How do I run this plugin?
|
41 |
+
A: In the WordPress ADMIN panel go to 'Settings'. Click on 'Optimize Database'. Et voila!
|
rvg-optimize-db.php
CHANGED
@@ -1,14 +1,14 @@
|
|
1 |
<?php
|
2 |
/**
|
3 |
* @package Optimize Database after Deleting Revisions
|
4 |
-
* @version 1.0
|
5 |
*/
|
6 |
/*
|
7 |
Plugin Name: Optimize Database after Deleting Revisions
|
8 |
Plugin URI: http://cagewebdev.com
|
9 |
-
Description: Optimizes the Wordpress Database after Deleting Revisions
|
10 |
Author: Rolf van Gelder
|
11 |
-
Version: 1.0
|
12 |
Author URI: http://cagewebdev.com
|
13 |
*/
|
14 |
?>
|
1 |
<?php
|
2 |
/**
|
3 |
* @package Optimize Database after Deleting Revisions
|
4 |
+
* @version 1.0.1
|
5 |
*/
|
6 |
/*
|
7 |
Plugin Name: Optimize Database after Deleting Revisions
|
8 |
Plugin URI: http://cagewebdev.com
|
9 |
+
Description: Optimizes the Wordpress Database after Deleting Revisions
|
10 |
Author: Rolf van Gelder
|
11 |
+
Version: 1.0.1
|
12 |
Author URI: http://cagewebdev.com
|
13 |
*/
|
14 |
?>
|