Recent content by LiteCache

  1. LiteCache

    openlitespeed server side caching issues

    BKD === backend bkd seems to have more than only 1 meaning. e.a if I send a POST request, QC doesn't support caching of POST, but the origin host is able to cache POST, but QC sends bkd header in case of POST. No, it means the opposite. Request goes to the origin server, independently what the...
  2. LiteCache

    openlitespeed server side caching issues

    Yes, this confirms what I already tried to make you understandable. x-litespeed-cache header from origin host must be hit if warmup with M2-crawler.sh would work. Warmup of a single QC node doesn't make any sense. Cache at the origin host must be warmed up first to benefit of QC CDN cache and...
  3. LiteCache

    openlitespeed server side caching issues

    If warmup would work with M2-crawler.sh and QC you would get either hit or no status header from origin server, so Latvia don't have a Internet that can switch off gravity. ;) In M2-crawler.sh there is no code that uses the IP address of the origin host to connect origin host, so curl request...
  4. LiteCache

    openlitespeed server side caching issues

    Are you sure because this is not technically possible or does the internet work differently in Latvia?
  5. LiteCache

    openlitespeed server side caching issues

    @edmundspriede With quic.cloud you can't use M2-crawler.sh to warmup the cache. This script doesn't support CDN usage, so you always warmup the cache at QC node that is closest to the origin server, but not the cache at the origin server. In addition, QC does not support cache varies defined by...
  6. LiteCache

    how to set SSL over PORT X ?

    @httpd_config.conf If you change the port for SSL you will loose QUIC feature, because OLS and LSWS expect port 443 for QUIC.
  7. LiteCache

    (Help) Automatic png, jpg to webp conversion on wordpress

    @SeikoSEO This is not a rewrite issue with OLS. Check the rewrite rules added by WebP Express. It redirects to a PHP file to convert jpg|png to webp, but if a page is cached there is no PHP.
  8. LiteCache

    Does PHP (lsphp) have a problem with memory management?

    To understand what this issue is about, simply run the code below. This code increases the memory by 1 MB with each run, but the script is terminated prematurely and before the max_memory_limit is reached because it is supposedly exceeded. Observed under LSWS/OLS and PHP 8.1. <?php...
  9. LiteCache

    Some help with rewrite rules

    RewriteCond %{SERVER_PORT} !^443$ RewriteRule (.*) https://%{HTTP_HOST}/$1 [R=301,L] RewriteCond %{HTTP_HOST} !^www\. RewriteRule ^(.*)$ https://www.example.com/$1 [R=301,L]
  10. LiteCache

    ssl port 80

    Additional, QUIC will no longer work.
  11. LiteCache

    GeoIP Legacy not picking up country

    As far as I know OLS and LSWS only supports MaxMind GeoIP2 format database: https://www.maxmind.com/en/geoip2-databases
  12. LiteCache

    Right To Left (RTL) Caching on LTR pages

    @miyojin You should use LScache plugin support at WordPress support forum. This issue is not a OLS issue. https://wordpress.org/support/plugin/litespeed-cache/
  13. LiteCache

    LSCache Mediawiki Plugin

    Why did it take almost 4 weeks? In view of the fact that the responsible developer of the Cache Plugin is a LiteSpeed freelancer, I recommend switching to LSWS. This does not solve the problem, but with LSWs you can make sure that LScache works for MediaWiki. Nevertheless, the problem with...
  14. LiteCache

    Clear cache on a PROXY setup with Openlitespeed being upstream from multiple downstream wordpress servers all on different IP's

    I'm sorry, but I don't think the proxy configuration will solve the problem. Otherwise, purging the cache using the native PHP purge header would not work. I see the problem in the IP addresses used, which are not public IP addresses. The purge function of the cache plugin is an HTTP request...
  15. LiteCache

    Clear cache on a PROXY setup with Openlitespeed being upstream from multiple downstream wordpress servers all on different IP's

    I don't think so. Purging the cache with this custom condition will work in a native environment, but not if the cache has to be purged by a cache plugin like LSCWP. @Big Boss What happens if you purge the cache by using x-litespeed-purge header and executed in related user/domain? <?php...
Top