PluginProbe
BerqWP – All-In-One Optimization for Core Web Vitals, Cache, CDN, Images, CSS & JavaScript / 4.1.18
BerqWP – All-In-One Optimization for Core Web Vitals, Cache, CDN, Images, CSS & JavaScript v4.1.18
4.1.19 4.1.18 4.1.17 4.1.16 4.1.15 4.1.14 4.1.13 4.1.12 4.1.11 4.1.10 4.0.30 4.0.29 4.0.28 4.0.27 4.0.26 4.0.24 4.0.25 4.0.23 4.0.22 4.0.21 4.0.19 4.0.18 4.0.17 4.0.16 1.9.3 All 173 releases
← All changes | inc/cache/class-berqcache.php +65 -20 4.0.23 → 4.1.18 View file →
@@ -51,9 +51,9 @@
51 51 add_action('berqwp_flush_page_cache', 'bwp_remove_recently_optimized_entry', 10, 1);
52 52
53 53 add_action('init', [$this, 'bypass_cache']);
54 54
55 - add_action('init', [$this, 'bypass_cache']);
55 + // add_action('init', [$this, 'bypass_cache']);
56 56
57 57 // Flush cache when there's a new comment
58 58 add_action('wp_set_comment_status', [$this, 'handle_new_comment'], 10, 2);
59 59
@@ -91,12 +91,20 @@
91 91
92 92 // Apache htaccess cache rules (skip on LiteSpeed — remove any existing rules)
93 93 add_action('berqwp_activate_plugin', 'bwp_write_htaccess_rules');
94 94 add_action('berqwp_flush_all_cache', 'bwp_write_htaccess_rules');
95 + add_action('berqwp_flush_all_cache', 'bwp_delete_php_files_in_cache');
95 96 add_action('berqwp_deactivate_plugin', 'bwp_remove_htaccess_rules');
97 +
98 + // Keep the dropin's cached permalink convention in sync with WordPress
99 + add_action('init', 'bwp_sync_permalink_config');
100 + add_action('update_option_permalink_structure', 'bwp_sync_permalink_config');
101 + add_action('berqwp_activate_plugin', 'bwp_sync_permalink_config');
102 +
96 103 if (bwp_is_openlitespeed_server()) {
97 104 add_action('berqwp_activate_plugin', 'bwp_remove_htaccess_rules');
98 105 }
106 +
99 107 add_action('berqwp_on_update_sandbox_mode', 'bwp_sync_htaccess_on_sandbox_change');
100 108
101 109 // Clear queue list on cloud
102 110 add_action('berqwp_deactivate_plugin', 'berqwp_clear_cache_queue');
@@ -179,8 +187,11 @@
179 187 $berq_log->info("Processing updates");
180 188
181 189 self::stale_cloud_assets();
182 190 $this->purge_critical_css_cache();
191 +
192 + // trigger cache warmup
193 + do_action('berqwp_cache_warmup');
183 194
184 195 }
185 196
186 197 static function stale_cloud_assets() {
@@ -239,8 +250,9 @@
239 250
240 251 update_option('berqwp_raw_home', $raw_home);
241 252 delete_transient('berq_lic_response_cache');
242 253 delete_transient('berqwp_lic_response_cache');
254 + delete_transient('berqwp_warmup_running');
243 255 }
244 256 }
245 257
246 258 function post_type_action_links($actions, $post)
@@ -481,12 +493,12 @@
481 493 function brust_cache_for_loggedin()
482 494 {
483 495 if (is_user_logged_in()) {
484 496 // Add Vary: Cookie header to differentiate cached versions for logged-in users
485 - header('Vary: Cookie');
486 - header("Cache-Control: no-cache, no-store, must-revalidate");
487 - header("Pragma: no-cache");
488 - header("Expires: 0");
497 + header('Vary: Accept-Encoding, Cookie');
498 + // header("Cache-Control: no-cache, no-store, must-revalidate");
499 + // header("Pragma: no-cache");
500 + // header("Expires: 0");
489 501 }
490 502 }
491 503
492 504 function handle_post_status_update($new_status, $old_status, $post)
@@ -607,9 +619,9 @@
607 619 // $slug = '';
608 620 // }
609 621
610 622 $page_url = home_url($slug);
611 - $host = !empty($_SERVER['HTTP_HOST']) ? $_SERVER['HTTP_HOST'] : '';
623 + $host = !empty($_SERVER['HTTP_HOST']) ? sanitize_text_field(wp_unslash($_SERVER['HTTP_HOST'])) : '';
612 624 berqReverseProxyCache::purge_cache($page_url);
613 625 }
614 626
615 627 function ingore_tracking_params($tracking_params)
@@ -897,22 +909,27 @@
897 909 // berqHeartbeat::add_queue($page_url);
898 910 warmup_cache_by_url($page_url);
899 911 }
900 912
913 + static function miss_cache_headers() {
914 + header('Cache-Control: no-store, no-cache, must-revalidate, max-age=0', true);
915 + header('CDN-Cache-Control: no-store', true); // Cloudflare
916 + header('Surrogate-Control: no-store', true); // Varnish
917 + header('X-Accel-Expires: 0', true); // Nginx FastCGI
918 + header("X-BerqWP-Cache: MISS");
919 + }
920 +
901 921 function html_cache()
902 922 {
903 923
904 924 // Bypass cache for Photon
905 925 if (!empty($_COOKIE['berqwpnocache'])) {
906 - header('Cache-Control: no-store, no-cache, must-revalidate, max-age=0', true);
907 - header('CDN-Cache-Control: no-store', true); // Cloudflare
908 - header('Surrogate-Control: no-store', true); // Varnish
909 - header('X-Accel-Expires: 0', true); // Nginx FastCGI
910 -
926 + self::miss_cache_headers();
911 927 return;
912 928 }
913 929
914 930 if (!self::should_cache()) {
931 + self::miss_cache_headers();
915 932 return;
916 933 }
917 934
918 935 $page_url = self::get_page_url();
@@ -917,20 +934,32 @@
917 934
918 935 $page_url = self::get_page_url();
919 936
920 937 if (empty($page_url)) {
938 + self::miss_cache_headers();
921 939 return;
922 940 }
923 941
924 942 // Disable cache for unknown query parameters
925 943 if (strpos($page_url, '?') !== false) {
944 + self::miss_cache_headers();
926 945 return;
927 946 }
928 947
948 + // Redirect non-canonical URLs (wrong trailing slash) the same way WordPress would,
949 + // before ever touching the cache — works for both trailing-slash and non-trailing-slash
950 + // permalink structures.
951 + $canonical_url = bwp_canonicalize_page_url($page_url);
952 + if ($canonical_url !== $page_url) {
953 + wp_safe_redirect($canonical_url, 301);
954 + exit();
955 + }
956 +
929 957 if (is_singular()) {
930 958 $post_type = get_post_type();
931 959
932 960 if (empty($post_type) || !in_array($post_type, get_option('berqwp_optimize_post_types'))) {
961 + self::miss_cache_headers();
933 962 return;
934 963 }
935 964 } elseif (is_archive()) {
936 965 $queried_object = get_queried_object();
@@ -938,8 +967,9 @@
938 967 if ($queried_object instanceof WP_Term && !empty($queried_object->taxonomy)) {
939 968 $current_taxonomy = $queried_object->taxonomy;
940 969
941 970 if (!in_array($current_taxonomy, get_option('berqwp_optimize_taxonomies'))) {
971 + self::miss_cache_headers();
942 972 return;
943 973 }
944 974 }
945 975 }
@@ -947,8 +977,9 @@
947 977
948 978 $status_code = http_response_code();
949 979
950 980 if ($status_code !== 200) {
981 + self::miss_cache_headers();
951 982 return;
952 983 }
953 984
954 985 $berqconfigs = berqConfigs::getInstance();
@@ -968,21 +999,38 @@
968 999 header('Last-Modified: ' . gmdate('D, d M Y H:i:s', $lastModified) . ' GMT');
969 1000 header('X-File-Size: ' . filesize($cache_file), true);
970 1001 header('Content-Type: text/html; charset=utf-8');
971 1002 header("X-served: WP Hook");
972 - header('Vary: Cookie');
1003 + header('Vary: Accept-Encoding, Cookie');
1004 + header("X-BerqWP-Cache: HIT");
973 1005
974 1006 if ((isset($_SERVER['HTTP_IF_MODIFIED_SINCE']) && strtotime($_SERVER['HTTP_IF_MODIFIED_SINCE']) >= $lastModified) || (isset($_SERVER['HTTP_IF_NONE_MATCH']) && $_SERVER['HTTP_IF_NONE_MATCH'] === $etag)) {
975 1007 // The client's cache is still valid based on Last-Modified, respond with a 304 Not Modified
976 1008 header('HTTP/1.1 304 Not Modified');
977 1009 // header('Expires: ' . gmdate('D, d M Y H:i:s') . ' GMT');
978 - header("Expires: 0");
979 - header('Cache-Control: no-cache, must-revalidate');
1010 + // header("Expires: 0");
1011 + // header('Cache-Control: no-cache, must-revalidate');
1012 +
1013 + header('Cache-Control: public, max-age=600, s-maxage=2592000, stale-while-revalidate=86400', true);
1014 + header('cdn-cache-control: max-age=2592000');
1015 + header('Cache-Tag: ' . wp_parse_url(home_url())['host']);
1016 +
980 1017 exit();
981 1018 }
982 1019
983 - header('Cache-Control: public, max-age=0, s-maxage=3600, must-revalidate', true);
984 - header('Vary: Accept-Encoding, Cookie');
1020 + // Prevent PHP/Apache from re-compressing the already-gzipped cache file
1021 + if (ini_get('zlib.output_compression')) {
1022 + ini_set('zlib.output_compression', 'Off');
1023 + }
1024 +
1025 + while (ob_get_level()) {
1026 + ob_end_clean();
1027 + }
1028 +
1029 + header('Cache-Control: public, max-age=600, s-maxage=2592000, stale-while-revalidate=86400', true);
1030 + header('cdn-cache-control: max-age=2592000');
1031 + header('Cache-Tag: ' . wp_parse_url(home_url())['host']);
1032 + // header("Content-Security-Policy: script-src 'self' blob: 'unsafe-inline'");
985 1033 header('Content-Encoding: gzip', true);
986 1034 header('Content-Length: ' . filesize($cache_file), true);
987 1035 readfile($cache_file);
988 1036 exit();
@@ -987,12 +1035,9 @@
987 1035 readfile($cache_file);
988 1036 exit();
989 1037 }
990 1038
991 - header('Cache-Control: no-store, no-cache, must-revalidate, max-age=0');
992 - header('CDN-Cache-Control: no-store'); // Cloudflare
993 - header('Surrogate-Control: no-store'); // Varnish
994 - header('X-Accel-Expires: 0'); // Nginx FastCGI
1039 + self::miss_cache_headers();
995 1040
996 1041 self::purge_page($page_url);
997 1042
998 1043 if (!berqwp_can_use_cloud()) {