all repos — wp-ffpc @ 24430be27a6a940dc40d01c6c2c40a43fc06d63a

some fix

* woocommerce api endpoint
* small fix
Gabriele Lauricella gab.lau@gmail.com
Fri, 22 Apr 2016 17:27:57 +0200
commit

24430be27a6a940dc40d01c6c2c40a43fc06d63a

parent

4b5bce6cc46c726370068489ec9ac089b2122561

2 files changed, 4 insertions(+), 3 deletions(-)

jump to
M wp-ffpc-acache.phpwp-ffpc-acache.php

@@ -8,7 +8,7 @@ */

function __wp_ffpc_debug__ ( $text ) { if ( defined('WP_FFPC__DEBUG_MODE') && WP_FFPC__DEBUG_MODE == true) - error_log ( __FILE__ . ': ' . $text ); + error_log ( 'WP_FFPC_ACache' . ': ' . $text ); } /* check for WP cache enabled*/

@@ -155,7 +155,7 @@ $key = $wp_ffpc_backend->key ( $key );

$value = $wp_ffpc_backend->get ( $key ); if ( ! $value ) { - __wp_ffpc_debug__("No cached data foundd"); + __wp_ffpc_debug__("No cached data found"); /* does not matter which is missing, we need both, if one fails, no caching */ wp_ffpc_start(); return;
M wp-ffpc-class.phpwp-ffpc-class.php

@@ -414,7 +414,8 @@ if ( class_exists( 'WooCommerce' ) ) {

$page_wc_checkout=str_replace( home_url(), '', wc_get_page_permalink( 'checkout' ) ); $page_wc_myaccount=str_replace( home_url(), '', wc_get_page_permalink( 'myaccount' ) ); $page_wc_cart=str_replace( home_url(), '', wc_get_page_permalink( 'cart' ) ); - $this->options['nocache_woocommerce_url'] = '^'.$page_wc_checkout.'|^'.$page_wc_myaccount.'|^'.$page_wc_cart; + $wcapi='^/wc-api|^/\?wc-api='; + $this->options['nocache_woocommerce_url'] = '^'.$page_wc_checkout.'|^'.$page_wc_myaccount.'|^'.$page_wc_cart.'|'.$wcapi; } else { $this->options['nocache_woocommerce_url'] = '';