masvil
Forum Replies Created
-
Forum: Plugins
In reply to: [Super Preloader for Cloudflare] HTTP error (proxy): cURL error 5So quick! đ
Forum: Plugins
In reply to: [Super Preloader for Cloudflare] HTTP error (proxy): cURL error 5Hi @ozgursar , thanks for your support.
I followed your steps and verified that Webshare proxy URL was invalid (no download). No idea why, since I just used the copy button on Webshare dashboard. I fixed by resetting the download link on Webshare dashboard.
5 stars support for a 5 stars plugin. Review is coming. Meanwhile, some reports:
On https://wpfixfast.com/blog/preload-cloudflare-cache/#how-to-create-and-deploy-a-cloudflare-worker you should update screenshots (yes, Cloudflare dashboard changes everyday) and replace the following:
– âCompute (Workers)â with âComputeâ
– âClick Createâ with âClick Create applicationâ
On https://wpfixfast.com/blog/preload-cloudflare-cache/#how-to-register-and-use-webshare-proxies the “Click Generate Proxy List” step is not required (anymore), since the proxy list is already generated on the dashboard’s 1st loading.Forum: Plugins
In reply to: [SQLite Object Cache] Limiting ttl off cached keys@pobrehablador if @olliejones is asking for Docker Object Cache here, maybe we can make an exception to the in/off-topic rules đ
Forum: Plugins
In reply to: [SQLite Object Cache] Limiting ttl off cached keys@pobrehablador Can you elaborate on Docker Object Cache being âtotally useless and with a really bad conception and misunderstanding of how Opcache really worksâ? Consider just providing a link or something so as not to be off-topic here.
- This reply was modified 3 months, 2 weeks ago by masvil.
Forum: Reviews
In reply to: [Modern Image Formats] compression?Thanks for the explanation, @westonruter
Forum: Reviews
In reply to: [Modern Image Formats] compression?And this is the code to change it:
// AVIF compression quality, for Modern Image Formats plugin
function filter_img_quality( $quality, $mime_type ) {
if ( ‘image/avif’ === $mime_type ) {
return 60; // quality set to 60
}
return $quality;
}
add_filter( ‘wp_editor_set_quality’, ‘filter_img_quality’, 10, 2 );@westonruter any reason why it can’t be done via UI?
@pulpita enabling cloudflare CDN and caching is the whole point of the Cloudflare integration, so I agree with you: having it as an option after you already inserted Cloudflare credentials doesn’t make any sense.
I think the main question here is: what is this option for? My guess is to give the possibility to (temporary) switch between yes and no without deleting the Cloudflare credentials, but it should be clarified in the UI description. I’m quite sure @baicusandrei can properly explain.
- This reply was modified 10 months, 2 weeks ago by masvil.
In the latest release, we also accounted for the suggestions you gave us, so the descriptions have been reworded.
Great! There is still a wording inconsistency in the Activity Log, take a look:
We will update the readme in the next few days.
Yes, it’s full of references to not existing any more features. Example:
All clear now, thanks for the explanation.
We also deprecated the Cloudflare Workers integration the plugin previously supported.
If so, consider editing the Cloudflare Worker related sentences in the plugin’s description (main page here on WP.org).
Please also note:
- On the âCloudflareâ plugin section, the âCloudflare Setup Guideâ is a dead link.
- In the same section, âActive Zoneâ instead of âActive domainâ may be confusing for some, regardless of being technically correct or not.
- On the âAdvanced sectionâ, consider replacing âupgrader processâ with âupdate processâ for consistency with the option name containing âUpdatesâ (not âUpgradesâ).
My mistake, stale cache issue. It works perfectly.
Forum: Plugins
In reply to: [SQLite Object Cache] Conflict with TranslatepressOff-topic: I strongly suggest you to improve the UX of the language selector. On your site, the button displays the language to switch to instead of the current language. Not obvious at all. A good starting point: https://www.nngroup.com/articles/language-switching-ecommerce/
Forum: Plugins
In reply to: [Redis Object Cache] Metrics: Not enough data collected yetLike not said, everything working within minutes of my post (which I can’t delete/edit).
If you havenât received similar reports from other users, it’s because no one tried to use your plugin on a OLS (OpenLiteSpeed) web server, or they just aren’t aware of the missing cache headers. LiteSpeed devs explain the differences between LSWS (LiteSpeed Enterprise Web Server, commonly called “LiteSpeed”) and OLS (Open LiteSpeed) here: https://blog.litespeedtech.com/2023/01/16/openlitespeed-or-litespeed-enterprise/, specifically in the “.htaccess” section.
OLS (OpenLiteSpeed) web servers are mostly shipped by modern VPS control panels because they don’t need to buy a license.
The “Browser TTL” cache rules to add on Cloudflare in case of OLS are to reproduce the ones added by the plugin to the .htaccess file, which are ignored. I see you have a note for NGINX users, but it doesn’t work on OLS.
- This reply was modified 1 year, 1 month ago by masvil.
Hi @kushnamdev , thanks for the explanation.
Aside the FAQ, consider to update the following section in the plugin’s description.
View post on imgur.com
I figured out. It happened because I migrated the site to an OpenLiteSpeed server, so .htaccess cache headers were ignored. I fixed by adding some cache rules on Cloudflare in addition to the one generated by Super Page Cache.
Dev, before we close this ticket, is there another way to fix this issue?