Version Description
Download this release
Release Info
Developer | donncha |
Plugin | WP Super Cache |
Version | 0.9.4.3 |
Comparing to | |
See all releases |
Code changes from version 0.9.4.2 to 0.9.4.3
- Changelog.txt +22 -0
- readme.txt +3 -2
- wp-cache-phase2.php +1 -1
- wp-cache.php +1 -1
Changelog.txt
CHANGED
@@ -1,3 +1,25 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
2009-04-21 19:53 donncha
|
2 |
|
3 |
* readme.txt, wp-cache.php: Bumped version to 0.9.4.1
|
1 |
+
2009-04-25 06:30 donncha
|
2 |
+
|
3 |
+
* readme.txt, wp-cache.php: Bumped version number to 0.9.4.3
|
4 |
+
|
5 |
+
2009-04-23 20:04 donncha
|
6 |
+
|
7 |
+
* wp-cache-phase2.php: Move mutex init above actions again
|
8 |
+
|
9 |
+
2009-04-22 11:34 donncha
|
10 |
+
|
11 |
+
* readme.txt, wp-cache.php: Bump version number to 0.9.4.2
|
12 |
+
|
13 |
+
2009-04-22 11:06 donncha
|
14 |
+
|
15 |
+
* wp-cache-phase2.php: Move check for logged in user after actions
|
16 |
+
are defined, otherwise cache files aren't updated. See
|
17 |
+
http://wordpress.org/support/topic/264090?replies=2
|
18 |
+
|
19 |
+
2009-04-21 19:53 donncha
|
20 |
+
|
21 |
+
* Changelog.txt: Updated changelog
|
22 |
+
|
23 |
2009-04-21 19:53 donncha
|
24 |
|
25 |
* readme.txt, wp-cache.php: Bumped version to 0.9.4.1
|
readme.txt
CHANGED
@@ -2,7 +2,7 @@
|
|
2 |
Contributors: donncha
|
3 |
Tags: performance,caching,wp-cache,wp-super-cache,cache
|
4 |
Tested up to: 2.7.1
|
5 |
-
Stable tag: 0.9.4.
|
6 |
Requires at least: 2.6
|
7 |
Donate link: http://ocaoimh.ie/wordpress-plugins/gifts-and-donations/
|
8 |
|
@@ -17,7 +17,8 @@ This plugin generates static html files from your dynamic WordPress blog. After
|
|
17 |
2. Display file size stats on admin page.
|
18 |
3. Clear the cache when profile page is updated.
|
19 |
4. Don't cache post previews.
|
20 |
-
5. Added backslashes to rejected URI regex list
|
|
|
21 |
|
22 |
The static html files will be served to the vast majority of your users, but because a user's details are displayed in the comment form after they leave a comment those requests are handled by PHP. Static files are served to:
|
23 |
|
2 |
Contributors: donncha
|
3 |
Tags: performance,caching,wp-cache,wp-super-cache,cache
|
4 |
Tested up to: 2.7.1
|
5 |
+
Stable tag: 0.9.4.3
|
6 |
Requires at least: 2.6
|
7 |
Donate link: http://ocaoimh.ie/wordpress-plugins/gifts-and-donations/
|
8 |
|
17 |
2. Display file size stats on admin page.
|
18 |
3. Clear the cache when profile page is updated.
|
19 |
4. Don't cache post previews.
|
20 |
+
5. Added backslashes to rejected URI regex list.
|
21 |
+
6. Fixed problems with posts and comments not refreshing.
|
22 |
|
23 |
The static html files will be served to the vast majority of your users, but because a user's details are displayed in the comment form after they leave a comment those requests are handled by PHP. Static files are served to:
|
24 |
|
wp-cache-phase2.php
CHANGED
@@ -7,6 +7,7 @@ function wp_cache_phase2() {
|
|
7 |
$wp_cache_gmt_offset = get_option( 'gmt_offset' ); // caching for later use when wpdb is gone. http://wordpress.org/support/topic/224349
|
8 |
$wp_cache_blog_charset = get_option( 'blog_charset' );
|
9 |
|
|
|
10 |
if(function_exists('add_action') && ( !defined( 'WPLOCKDOWN' ) || ( defined( 'WPLOCKDOWN' ) && constant( 'WPLOCKDOWN' ) == '0' ) ) ) {
|
11 |
// Post ID is received
|
12 |
add_action('publish_post', 'wp_cache_post_edit', 0);
|
@@ -42,7 +43,6 @@ function wp_cache_phase2() {
|
|
42 |
header('Vary: Accept-Encoding, Cookie');
|
43 |
else
|
44 |
header('Vary: Cookie');
|
45 |
-
wp_cache_mutex_init();
|
46 |
ob_start( 'wp_cache_ob_callback' );
|
47 |
|
48 |
// restore old supercache file temporarily
|
7 |
$wp_cache_gmt_offset = get_option( 'gmt_offset' ); // caching for later use when wpdb is gone. http://wordpress.org/support/topic/224349
|
8 |
$wp_cache_blog_charset = get_option( 'blog_charset' );
|
9 |
|
10 |
+
wp_cache_mutex_init();
|
11 |
if(function_exists('add_action') && ( !defined( 'WPLOCKDOWN' ) || ( defined( 'WPLOCKDOWN' ) && constant( 'WPLOCKDOWN' ) == '0' ) ) ) {
|
12 |
// Post ID is received
|
13 |
add_action('publish_post', 'wp_cache_post_edit', 0);
|
43 |
header('Vary: Accept-Encoding, Cookie');
|
44 |
else
|
45 |
header('Vary: Cookie');
|
|
|
46 |
ob_start( 'wp_cache_ob_callback' );
|
47 |
|
48 |
// restore old supercache file temporarily
|
wp-cache.php
CHANGED
@@ -3,7 +3,7 @@
|
|
3 |
Plugin Name: WP Super Cache
|
4 |
Plugin URI: http://ocaoimh.ie/wp-super-cache/
|
5 |
Description: Very fast caching plugin for WordPress.
|
6 |
-
Version: 0.9.4.
|
7 |
Author: Donncha O Caoimh
|
8 |
Author URI: http://ocaoimh.ie/
|
9 |
*/
|
3 |
Plugin Name: WP Super Cache
|
4 |
Plugin URI: http://ocaoimh.ie/wp-super-cache/
|
5 |
Description: Very fast caching plugin for WordPress.
|
6 |
+
Version: 0.9.4.3
|
7 |
Author: Donncha O Caoimh
|
8 |
Author URI: http://ocaoimh.ie/
|
9 |
*/
|