version 0.4.1
git-svn-id: http://plugins.svn.wordpress.org/wp-ffpc/trunk@586169 b8457f37-d9ea-0310-8a92-e5e31aec5664
This commit is contained in:
parent
fe07b27754
commit
8b8777ae24
2 changed files with 11 additions and 3 deletions
10
readme.txt
10
readme.txt
|
@ -4,7 +4,7 @@ Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_donations&business=8LZ66
|
||||||
Tags: cache, APC, memcached, full page cache
|
Tags: cache, APC, memcached, full page cache
|
||||||
Requires at least: 3.0
|
Requires at least: 3.0
|
||||||
Tested up to: 3.4.1
|
Tested up to: 3.4.1
|
||||||
Stable tag: 0.4
|
Stable tag: 0.4.1
|
||||||
|
|
||||||
Fast Full Page Cache, backend can be memcached or APC
|
Fast Full Page Cache, backend can be memcached or APC
|
||||||
|
|
||||||
|
@ -67,6 +67,14 @@ You have to remove the default yum package, named `php-pecl-memcache` and instal
|
||||||
|
|
||||||
== Changelog ==
|
== Changelog ==
|
||||||
|
|
||||||
|
= 0.4.1 =
|
||||||
|
2012.08.16
|
||||||
|
|
||||||
|
* storage key extended with scheme ( http; https; etc. ), the miss caused problems when https request server CSS and JS files via http.
|
||||||
|
|
||||||
|
KNOWN ISSUES
|
||||||
|
|
||||||
|
|
||||||
= 0.4 =
|
= 0.4 =
|
||||||
2012.08.06
|
2012.08.06
|
||||||
|
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
<?php
|
<?php
|
||||||
/*
|
/*
|
||||||
Plugin Name: WP-FFPC
|
Plugin Name: WP-FFPC
|
||||||
Version: 0.4
|
Version: 0.4.1
|
||||||
Plugin URI: http://petermolnar.eu/wordpress/wp-ffpc
|
Plugin URI: http://petermolnar.eu/wordpress/wp-ffpc
|
||||||
Description: Fast Full Page Cache, backend can be memcached or APC
|
Description: Fast Full Page Cache, backend can be memcached or APC
|
||||||
Author: Peter Molnar
|
Author: Peter Molnar
|
||||||
|
@ -27,7 +27,7 @@ License: GPL2
|
||||||
*/
|
*/
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* checks for SSL connection
|
* checks for SSL connection
|
||||||
*/
|
*/
|
||||||
if ( ! function_exists ( 'replace_if_ssl' ) ) {
|
if ( ! function_exists ( 'replace_if_ssl' ) ) {
|
||||||
function replace_if_ssl ( $string ) {
|
function replace_if_ssl ( $string ) {
|
||||||
|
|
Loading…
Reference in a new issue