Search results

  1. serpent_driver

    Litespeed vs Apache server for WP?

    You can optimize Apache as most you can, but it will never be as fast as LiteSpeed. This is based on different architecture of both webservers. To understand the difference on an easy way read this: https://blog.litespeedtech.com/2018/04/16/difference-between-event-driven-and-process-based/...
  2. serpent_driver

    Disappointed with Litespeed

    Maybe you don't know it, but Litespeed isn't something miracle. Litespeed is only a webserver and if it is running on a shared hosting with many clients with low ressources LiteSpeed can't compensate a slow connection to database. But in comparison to Apache or any other webserver LiteSpeed is...
  3. serpent_driver

    Firefox vs. HTTP/1.1 vs. ls_smartpush cookie

    Does anybody know why Firefox always use HTTP/1.1 protocol instead of HTTP/2 and why this browser not always get ls_smartpush cookie if there are sources defined to be pushed?
  4. serpent_driver

    Difference between "lscache_runner" UA and any other UA

    Can anybody tell me what is the difference between lscache_runner UA and any other UA? Has this (crawler) UA special privileges? Michael
  5. serpent_driver

    Redirects

    If you want to redirect one or more URLs, it works like Apache redirect configuration in .htaccess. https://httpd.apache.org/docs/2.4/rewrite/remapping.html
  6. serpent_driver

    compressing image on non-wordpress site

    If you have access to terminal/cli you can compress images with jpegoptim, an image library that is availabale on most Linux distributions. https://vitux.com/optimize-jpeg-jpg-images-in-ubuntu-with-jpegoptim/ https://www.tecmint.com/optimize-and-compress-jpeg-or-png-batch-images-linux-commandline/
  7. serpent_driver

    Separate Mobile View doesn't works

    Okay, but you can also be helped with PrestaShop. :) PrestaShop has a build-in function that differentiate devices like desktop and mobile devices. This function may produce differently code for each kind device. If you use LScache you must define vary cache rules in .htaccess, so Lscache knows...
  8. serpent_driver

    Critical CSS

    This forum doesn't take WordPress cache plugin related questions, please raise you question https://wordpress.org/support/plugin/litespeed-cache/
  9. serpent_driver

    Redirect non-www to www and https using Redirect permanent

    I don't know if I understand your need completely, but redirect permanent == 301 == redirect permanent, so your first configuraton is okay.
  10. serpent_driver

    object cache support for shared hosting?

    You don't need Redis or Memcache and will not improve page load. Improve your hosting for better performance and network connectivity and you will get a much better result. And of course remove ads. They are the main reason for your slow page load.
  11. serpent_driver

    Very BAD TTFB

    Preloading objects means preload static sources like fonts, css, javascript before these static are requested by html code. Also known as HTTP/2 Push: https://en.wikipedia.org/wiki/HTTP/2_Server_Push. LiteSpeed supports HTTP/2 Push, but the function to push sources must be developed for each...
  12. serpent_driver

    Very BAD TTFB

    TTFB of your page isn't bad, but could be better if you use better network connection at your hosting provider. Too many hops and too much packet loss force too much time for packet transfer. Search for WIN application "WinMTR" and you can ceck it by yourself. The less of the number of hops and...
  13. serpent_driver

    browser caching

    Pagespeed Insights expects atleast 31536000 seconds for cache-control, but you need to add "Cache-Control" Header to your .htaccess. ExpiresByType does not control browser cache behavior. # Add or remove file types if needed <FilesMatch...
  14. serpent_driver

    Very BAD TTFB

    @Mfa Would you provide us with a URL to your page?
  15. serpent_driver

    Cache activation issue

    Litespeed is Apache compatible, so you can use the same settings as with Apache.
  16. serpent_driver

    Cache activation issue

    Again, to get benefits of a cache you need dynamic generated content, not static. This is a condition of every HTTP cache, not only Litespeed. On your side I would check if Litespeed cache is available at your host. Generate a empty.php file and request it in browser. If you can see...
  17. serpent_driver

    Cache activation issue

    This hasn't something to do if Litespeed is "basic" enough. Litespeed is a webser and Litespeed cache is a HTTP cache. Every HTTP cache like any other can only cache dynamic content and not static content. Read this and try to understand why Litespeed is better than any other webserver...
  18. serpent_driver

    Cache activation issue

    If you are really on a .html site, Litespeed cache supports only dynamic generated pages like PHP but not static html pages. These headers are not Litespeed cache headers.
  19. serpent_driver

    Very BAD TTFB

    Maybe it is caused by your are sitting in Timbuktu? ;) This can be the only reason why your request time is so slow. https://www.presta.litecache.de uses fastest Internet Backbone in the world (Frankfurt/Germany).
  20. serpent_driver

    Very BAD TTFB

    The reason why there is a no-cache header ist caused by POST request. Request frontpage and make a browser reload. Check also requests in developer console. The main document is no GET request, it is POST and POST requests will not be cached. By the way, this page is terrible. 3MB and 30...
Top