finalizing version 1.1

This commit is contained in:
Peter Molnar 2013-04-24 12:31:11 +01:00
parent 3cc3cc0b9f
commit d1b52a61f5
3 changed files with 6 additions and 7 deletions

View file

@ -26,7 +26,7 @@ Supports PHP Memcached, PHP Memcache and APC as storage engines, subdomain and d
* pingback HTTP header preservation
* (optional) talkative log for troubleshooting
* multiple memcached upstream support
* possibility of precaching ( requires permalinks )
* precache ( manually only )
Many thanks for supporters, testers & bug reporters: [Harold Kyle](https://github.com/haroldkyle "Harold Kyle"); [Eric Gilette](http://www.ericgillette.com/ "Eric Gilette"); [doconeill](http://wordpress.org/support/profile/doconeill "doconeill"); [Mark Costlow](mailto:cheeks@swcp.com "Mark Costlow").
@ -86,20 +86,20 @@ Please post feature requests to [WP-FFPC feature request topic](http://wordpress
== Changelog ==
= 1.1 =
*under development*
2013.04.24
What's new:
* HTML comment option for displaying cache info before closing "body" tag ( a.k.a make sure it works "noob" method )
* introducing the Pre-cache Engine ( only manual pre-cache is enabled for now )
* pre-cache function ( only manual pre-cache is enabled for now; uses permalinks structure )
* new, additional invalidation method: clear post & all taxonomy cache, including feeds
* full virtual server example to use the plugin with nginx ( originally it was only a snippet required to use the plugin )
What's fixed:
* contributed fixes from [Harold Kyle](https://github.com/haroldkyle "Harold Kyle"): squelched various php and wp notices and warnings, enqueuing admin css and js better, better admin panel descriptions
* contributed fixes from [Harold Kyle](https://github.com/haroldkyle "Harold Kyle") to surpress PHP notices and warnings; better CSS & JS enqueue; corrected admin panel descriptions
* bugfix for status check ( there were situations where the status was not updated correctly )
* manual flush cache bug fixed ( was only flushing if the settings were on flush all )
* manual flush cache bug fixed ( was only flushing if the settings were on "flush all" )
* bugfix on data & meta prefixes ( some places used hardcoded prefixes )
* feed caching fixed ( due to a security check it turned out feeds were excluded for a long time )

View file

@ -51,7 +51,6 @@ MEMCACHED_SERVERS
location ~* wp-config.php { deny all; }
location ~* wp-admin/includes { deny all; }
location ~* wp-app\.log { deny all; }
location ~ /wp-content/plugins/akismet/readme\.txt { deny all; }
location ~ (licence|readme|license)\.(html|txt) { deny all; }
location ~ \.(css|js|jpg|jpeg|png|gif)$ {

View file

@ -49,7 +49,7 @@ $wp_ffpc_defaults = array (
'generate_time' => false,
);
$wp_ffpc = new WP_FFPC ( 'wp-ffpc', '1.0', 'WP-FFPC', $wp_ffpc_defaults, 'https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=XU3DG7LLA76WC' );
$wp_ffpc = new WP_FFPC ( 'wp-ffpc', '1.1', 'WP-FFPC', $wp_ffpc_defaults, 'https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=XU3DG7LLA76WC' );
?>