jarylw
Forum Replies Created
-
Forum: Plugins
In reply to: [Clef Two-Factor Authentication] Breaks caching pluginsHi Jesse,
It was never enabled – anyone who visits the login page would experience the same issue.
Forum: Plugins
In reply to: [Cache Enabler] Webp breaks some themesIt happened on every theme including default themes. It was on a centos 6 openvz install. I reinstalled centos7 and it worked fine. Strange..
Forum: Plugins
In reply to: [Full Site Cache for KeyCDN] Not about plugin. Only about KeyCDNI’m not sure what you mean?
The API certainly can clear by page (which is what your plugin does I suppose?) and tag?
https://www.cloudflare.com/docs/next/#zone-purge-individual-files-by-url-and-cache-tags
Forum: Plugins
In reply to: [Cache Enabler] Webp breaks some themesI should add that this problem surfaced on the upgrade to wp 4.6
Forum: Plugins
In reply to: [Full Site Cache for KeyCDN] Not about plugin. Only about KeyCDNCloudflare does cache html. You can even force it with page rules.
Forum: Plugins
In reply to: [Cache Enabler] Unable to serve webpEdited the htaccess as below and made the changes. The code snippet keycdn provided didnt take into consideration webp for non gzipped pages. Works now/
# RewriteCond %{HTTP:Accept-Encoding} gzip
RewriteCond %{HTTP:Accept} image/webp
# RewriteCond %{DOCUMENT_ROOT}/wp-content/cache/cache-enabler/%{HTTP_HOST}%{REQUEST_URI}index-webp.html.gz -f
# RewriteRule ^(.*) /wp-content/cache/cache-enabler/%{HTTP_HOST}%{REQUEST_URI}index-webp.html.gz [L]
RewriteCond %{DOCUMENT_ROOT}/wp-content/cache/cache-enabler/%{HTTP_HOST}%{REQUEST_URI}index-webp.html -f
RewriteRule ^(.*) /wp-content/cache/cache-enabler/%{HTTP_HOST}%{REQUEST_URI}index-webp.html [L]Forum: Plugins
In reply to: [Cache Enabler] Unable to serve webp@brian Jackson
1.Advanced snippet? Do you mean the htaccess file? Yes I do.
2. Another Tool. EWWW.
3. Yes they exist.
When precompression is enabled, I do get served the webp (index-webp.html) – verified by looking what is printed at the bottom by viewing source.
However, when precompression is disabled, the index-webp.html still gets created since I had checked that option in the cache settings in wordpress admin, but viewing source, checking what was printed and the html code, it is not serving me the webp cached file.
Forum: Plugins
In reply to: [YITH WooCommerce Advanced Reviews] Incomplete Rich Snippets DataI’ve restored without the line I did so you can test my URL against google’s Structured Data tool at https://developers.google.com/structured-data/testing-tool/
Forum: Plugins
In reply to: [YITH WooCommerce Advanced Reviews] Incomplete Rich Snippets DataI’m not sure if you have actually seen the screenshot I attached and understood what I meant.
In the screenshot there’s the URL I tested with, and I did a small hack and added a single line of code to include the itemReviewed snippet and hiding it using display:none in CSS.
<li itemprop="review" itemscope itemtype="https://schema.org/Review" id="li-comment-<?php echo $review->ID; ?>"> <span class="itp-itemreviewed" itemprop="itemReviewed"><?php echo the_title(); ?></span> <div id="comment-<?php echo $review->ID; ?>" class="comment_container">
I’m quite certain this is not the correct way to do it, so I’m just reporting it to you so you may implement it correctly.