Search results

  1. serpent_driver

    codeigniter plugin?

    Why ESI Instead of JavaScript (CSI) or SSI? https://www.litespeedtech.com/products/features/edge-side-includes
  2. serpent_driver

    Is there any functionality like PHP FPM in the CyberPanel/LiteSpeed?

    You have some missunderstanding about cache, preloading, LiteSpeed, Cloudflare and much more. How can you expect PHP FPM if you use browser cache for dynamic sources? With Browser cache for dynamic sources you never get any advantages from LSWS or LScache (cache header is always miss) and...
  3. serpent_driver

    I'm having terrible issues with my site since installation of litespeed.

    https://www.litespeedtech.com/support/forum/threads/please-use-the-official-wordpress-forum.16028/
  4. serpent_driver

    Help me to enable cache for text/html and php files

    - Disable browser cache and let this setting be disabled in wp-admin/admin.php?page=litespeed-cache#browser. - Press "Purge all" in wp-admin/admin.php?page=litespeed-toolbox. - Purge cache at Cloudflare - Check if it works If it doesn't work...
  5. serpent_driver

    Help me to enable cache for text/html and php files

    https://www.litespeedtech.com/support/forum/threads/please-use-the-official-wordpress-forum.16028/
  6. serpent_driver

    Help me to enable cache for text/html and php files

    You already use browser cache for PHP: cache-control public, max-age=172800 But LScache TTL is very short, only a few seconds. Disable browser cache and increase LScache TTL
  7. serpent_driver

    Help me to enable cache for text/html and php files

    Would you provide us with a link to your page?
  8. serpent_driver

    Help me to enable cache for text/html and php files

    Browser caching && Lscache && CDN for PHP is not a good idea if you have LScache. If you have problems with long page load time for the first request and if you use LScache, there seems to be a bottleneck. In my mind you shouldn't use Stackpath CDN. Change your hosting provider or upgrade...
  9. serpent_driver

    Help me to enable cache for text/html and php files

    Why browser cache for PHP if you have LiteSpeed cache? For me, that doesn't make sense.
  10. serpent_driver

    Help me to enable cache for text/html and php files

    Which cache to you mean? Browser cache or LiteSpeed HTTP cache?
  11. serpent_driver

    Help me to enable cache for text/html and php files

    mod_expires doesn't control cache for static sources. This is what you are looking for: <FilesMatch "\.(jpg|jpeg|woff|woff2|png|gif|swf|ico|js|css|ttf|eot|ico|min.js|mp4|webm|svg)$"> Header set Cache-Control "max-age=290304000, public" </FilesMatch> Add or change file types for your need.
  12. serpent_driver

    LiteSpeed Full Configuration

    There is no forum or complete documentation for this. Not every setting in WebAdmin can be configured by this console and depends on if you use a control panel for your server. Most, not all, settings are for native LSWS installation.
  13. serpent_driver

    Clear Cache Not Working?

    For LScache and WordPress: https://www.litespeedtech.com/support/forum/threads/please-use-the-official-wordpress-forum.16028/
  14. serpent_driver

    Litespeed cache for phpbb3

    @NTS Sorry, if you feel my answer is too rough for you. Maybe it is rough, but it is only the truth and the reality. There is no LScache plugin for phpbb3. Therefore it doesn't matter whether you are willing to pay for a plugin. LiteSpeed has decided not to build more plugins for other...
  15. serpent_driver

    Litespeed cache for phpbb3

    Yes, that can work if ESI is not needed, but LScache only defined with rewrite rules is not as fast as if cache defines are set with response headers. However, it might be worth trying it out.
  16. serpent_driver

    Litespeed cache for phpbb3

    If you pay for the time to develop a plugin, you will get what you want. LiteSpeedtech has no plan to build more plugins.
  17. serpent_driver

    How to disable / exclude Caching for a specific .php file?

    <IfModule LiteSpeed> RewriteEngine On RewriteCond %{REQUEST_URI} ^/filename\.php RewriteRule .* - [E=cache-control:no-cache] </IfModule> Or got to: wp-admin/admin.php?page=litespeed-cache#excludes if you use WordPress
  18. serpent_driver

    Issue with JSN Uniform extension

    https://store.litespeedtech.com/store/submitticket.php?step=2&deptid=2
  19. serpent_driver

    Problem with XHR Post request

    If it doesn't work add new ESI widget instead of URL exclude.
Top