update:
1. admin top bar issue:
when access wp backend, /wp-admin/, top admin bar always there, not an issue.
after log in wp backend, even access front page, top admin bar should be there too. but in cool_recep 's case, top admin bar disappear and can see "x-litespeed-cache:hit" in response header.
per
https://www.litespeedtech.com/support/wiki/doku.php/litespeed_wiki:cache:lscwp:installation
For vhosts configured through Apache httpd.conf, you may need to following Apache style configuration directive in .htaccess to enable cache lookup.
<IfModule LiteSpeed>
CacheLookup public on
</IfModule>
in cool_recep 's case, no such directive in .htaccess but it looks "CacheLookup public on" already set. so when admin user access the front page, get cached page which has no "top admin bar".
after adding
Code:
<IfModule LiteSpeed>
CacheLookup public off
</IfModule>
in .htaccess, when access front page, admin user get no-cached page which top admin bar is there.
change to
then top admin bar disappear again.
i.e., can turn on/off the issue by set
Code:
CacheLookup public on/off
in .htaccess
2.scheduled posts issue
this is because after install "lscache for wordpress" plugin,
user never go
wp backend -> Settings -> LiteSpeed Cache -> General
and tick "Enable LiteSpeed Cache"
( URI: /wp-admin/options-general.php?page=litespeedcache)
only see this page
"LiteSpeed Cache Management" which has only 1 button "Purge All" there.
( URI: /wp-admin/admin.php?page=lscachemgr )
I have checked "Enable LiteSpeed Cache"
the issue should be gone.
note:
if "Enable LiteSpeed Cache" is not checked, plugin is disabled on wp side
but when access public wp site, readers may still be able to get cached page, refer issue "1. admin top bar issue"