Search results

  1. Cold-Egg

    Best strategy for caching Woocommerce products and ESI debugging

    Correct, for example, put "RewriteRule .* - [E=cache-control:max-age=15]" at the top of the .htaccess file and restart the web server.
  2. Cold-Egg

    SSL not working - Oracle Linux 9.7

    I see the cert's Common Name (CN) is altertag.com, which is why you got the issue. Have you restarted the web server? Could you also try the following command with fewer parameters and share the whole output here? certbot certonly --webroot -w /usr/local/lsws/joomla.altum.biz/html/ -d...
  3. Cold-Egg

    Best strategy for caching Woocommerce products and ESI debugging

    Right, the site on my browser is always a cache miss, so it's not a curl problem. If you have a dev/staging site, try to bypass CDN, and use a simple rewrite rule to cache all like 10 seconds and see if the cache works or not on browser. If it works, it means the server config is good, and you...
  4. Cold-Egg

    Best strategy for caching Woocommerce products and ESI debugging

    General curl command should warm up the cache, for example. curl -sILk https://lscache.io/?abc | grep cache x-qc-cache: miss curl -sILk https://lscache.io/?abc | grep cache x-qc-cache: hit As you are using a WordPress site, using LSCWP to warm up the site regularly is also a solution. Do...
  5. Cold-Egg

    Best strategy for caching Woocommerce products and ESI debugging

    It should be the same as the general LSWS ESI dev case. Have you take a look at https://docs.litespeedtech.com/lscache/devguide/advanced/#esi guide? For further LSCache-related support, you can post such questions on wordpress forum https://wordpress.org/plugins/litespeed-cache/
  6. Cold-Egg

    Wordpress in It's own directory

    Yes, please follow https://docs.openlitespeed.org/security/headers/#learn-more-about-cors to fix the CORS issue.
  7. Cold-Egg

    Wordpress in It's own directory

    Are you able to open the wp-json? https://your_domain/mywordpress/wp-json, if not, what's the status code in the browser console?
  8. Cold-Egg

    Successful Update to Php with Curl enabled

    If you create a phpinfo page, do you see if curl support is enabled?
  9. Cold-Egg

    After installing OpenLiteSpeed, HTML files load correctly but all PHP files show a 403 error.

    After installing the lsphp package, please remember to setup the external app and handler for PHP. See https://docs.openlitespeed.org/config/php/#server-level
  10. Cold-Egg

    lscache configuration

    If it's still not working, maybe you can send a ticket to support@litespeedtech.com with this forum post link appended.
  11. Cold-Egg

    lscache configuration

    I did not touch the server level cache module, just set "storagePath $VH_ROOT/lscache" per virtual host cache module, and it works from my test(/var/www/html/lscache/priv/3/0/5/xxxxxxx).
  12. Cold-Egg

    lscache configuration

    Set "storagePath $VH_ROOT/lscache" per virtual host cache module should work. Do you see the lscache folder generated after restarting the web server?
  13. Cold-Egg

    A deadlock is prompted and the lsphp consumption is abnormally increased

    Does it work if you put a phpinfo page? If it's not, it's probably a PHP setting issue or hitting some limit.
  14. Cold-Egg

    Critical error in wordpress

    Is there any error in the server error log?
  15. Cold-Egg

    ZSTD compression

    The development team plans to add this feature, likely in version 1.9 or later.
  16. Cold-Egg

    OLS keeps reloading every few minutes

    Hard to tell without other logs, if it's still happening, please raise a ticket to support@litespeedtech.com with this forum post link appended.
  17. Cold-Egg

    OLS keeps reloading every few minutes

    Please check the error and stderr logs and see what happens before the reload.
  18. Cold-Egg

    PHP_SAPI = [litespeed], how I can run PHP with SAPI = [cgi-fcgi] or [fast-cgi]?

    To set up the handler, you first need to configure the external app. You can follow the instructions here: https://docs.openlitespeed.org/config/php/externalapp/ Since you are using CyberPanel, this step is usually not necessary. Are you trying to customize the PHP configuration?
Top