m1000
Forum Replies Created
-
Forum: Plugins
In reply to: [LiteSpeed Cache] How to view current content served by Redis?OK, I installed this plugin – https://ww.wp.xz.cn/plugins/debug-bar/
Setup following settings:
define( ‘WP_DEBUG’, true );
define( ‘SAVEQUERIES’, true );I don’t see any cached objects – https://i.imgur.com/fnE1FKJ.png
Forum: Plugins
In reply to: [LiteSpeed Cache] How to view current content served by Redis?I’m no shared hosting. Your pplugin says:
Redis Extension: Enabled
Connection Test: Passed Learn MoreForum: Plugins
In reply to: [LiteSpeed Cache] How to view current content served by Redis?I setup
define( 'WP_DEBUG', true );but there is no any
<!-- Object Cache .... -->in page source
Forum: Plugins
In reply to: [LiteSpeed Cache] How to view current content served by Redis?Yes, I would like to see what content actually is in the redis bufor.
Forum: Plugins
In reply to: [LiteSpeed Cache] Load combined CSS and JS file from Amazon CloudfrontI use relative path in style.css and other stylesheets, for example background-image: url(“img/menu.svg”);
when I combine all stylesheets in one file your plugin changes all image pathes to something like this background-image: url(“/subdirectory/wp-content/plugins/plugin/img/menu.svg”); and it works fine. But when I try to load stylesheet from Amazon Cloudfront then icon isn’t loaded. Generally I would like to keep on on CDN stylesheets and javascripts only, eventually icons too.Forum: Plugins
In reply to: [LiteSpeed Cache] Load combined CSS and JS file from Amazon CloudfrontI see it can be resolved adding Included Directories /min/ but there is problem with wrong path to background images.
Forum: Plugins
In reply to: [LiteSpeed Cache] Load combined CSS and JS file from Amazon CloudfrontI integrated it with Cloudfront, files are loaded from Cloudfront but they are not combined.
Forum: Plugins
In reply to: [LiteSpeed Cache] Static assets cache expirationI setup 32 000 000 seconds and seems like it resolved the problem.
Forum: Plugins
In reply to: [LiteSpeed Cache] Static assets cache expirationThere is no external files. I did it – https://imgur.com/a/TikEECl
cleared the cache and problem remains. It looks like problem applies to the files from the wp-include folder.Forum: Plugins
In reply to: [LiteSpeed Cache] Static assets cache expirationI setup Browser Cache ON, Browser Cache TTL 2592000 seconds, I purged all cache, I see it changed the htaccess file but pagespeed insights shows maybe 1/5 files have 30 days expiration, all other files have 7 days expiration.
It looks like the fix is very easy, there should be removed
is_user_logged_in() &&in the wp-content/plugins/gamipress/templates/achievement.php:16
I see where is the source of problem. Your plugin displays user-has-not-earned class for all achievements and ranks when user is not logged. Please take a look on the screenshot:
As you can see in my previous post I already added current_user=”no” and user_id=”‘ . bp_displayed_user_id() . ‘”
Even if I use fixed value
user_id="1"
it displays achievements for logged in members only.Looks like the All-in-One WP Migration plugin solves the problem.
It looks like problem exists when website is migrato from WAMP. Any idea why it happens?