all repos — wp-ffpc @ e3c5b8a2cc5a7fb225e50a6b35fcfd73aa7df6da

fixing no error messages bug
Peter Molnar hello@petermolnar.eu
Mon, 29 Dec 2014 13:00:16 +0000
commit

e3c5b8a2cc5a7fb225e50a6b35fcfd73aa7df6da

parent

bce799cabd9916c1d0ce021734b858f37424c238

3 files changed, 17 insertions(+), 3 deletions(-)

jump to
M readme.txtreadme.txt

@@ -4,7 +4,7 @@ Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=XU3DG7LLA76WC

Tags: cache, page cache, full page cache, nginx, memcached, apc, speed Requires at least: 3.0 Tested up to: 4.1 -Stable tag: 1.7.4 +Stable tag: 1.7.5 License: GPLv3 License URI: http://www.gnu.org/licenses/gpl-3.0.html

@@ -13,6 +13,9 @@

== Description == WP-FFPC ( WordPress Fast Full Page Cache ) is a cache plugin for [WordPress](http://wordpress.org/ "WordPress"). It works with any webserver, including apache2, lighttpd, nginx. It can be configured to join forces with [NGiNX](http://NGiNX.org "NGiNX")'s built-in [memcached plugin](http://nginx.org/en/docs/http/ngx_http_memcached_module.html "memcached plugin") for unbeatable speed. + += IMPORTANT = +** This plugin does kick in right after activation. You have to adjust the setting in Settings -> WP-FFPC.** = Features: = * Wordpress Network support

@@ -81,6 +84,7 @@

= What are the plugin's requirements? = * WordPress >= 3.0 +* PHP >= 5.3 ( from version 1.7.5 ) and **at least one** of the following for storage backend:

@@ -116,6 +120,16 @@

* every A. indicates BIG changes. * every .B version indicates new features. * every ..C indicates bugfixes for A.B version. + += 1.7.5 = +*2014-12-29* + +What's fixed: + +* wp-ffpc was not actually alerting when it had issues; this should be fixed now + +This was a really bad bug and it could have cause a lot of issues since the plugin was probably not working in some cases when the alerts went unnoticed. Due to WordPress restrictions on admin_notices hook I had to use PHP features only present since 5.3. Please keep this in mind. + = 1.7.4 = *2014-12-17*
M wp-ffpc-class.phpwp-ffpc-class.php

@@ -252,7 +252,7 @@ }

} foreach ( $this->errors as $e => $msg ) { - $this->utils->alert ( $msg, 'error', $this->network ); + $this->utils->alert ( $msg, LOG_WARNING, $this->network ); } }
M wp-ffpc.phpwp-ffpc.php

@@ -3,7 +3,7 @@ /*

Plugin Name: WP-FFPC Plugin URI: https://github.com/petermolnar/wp-ffpc Description: WordPress in-memory full page cache plugin -Version: 1.7.4 +Version: 1.7.5 Author: Peter Molnar <hello@petermolnar.eu> Author URI: http://petermolnar.eu/ License: GPLv3