Search results

  1. serpent_driver

    Opencart 3.0.3.2 + LiteSpeed Cache

    I've just checked current version in plugin code. It seems LiteSpeed removed this setting, but language files still contains it. Wait for LiteSpeed staff or open a support ticket to ask why this setting has been removed.
  2. serpent_driver

    Opencart 3.0.3.2 + LiteSpeed Cache

    @lureze Check General tab. It should be in 4th row of settings.
  3. serpent_driver

    Journal3, Webp no support in Safari and LSCache

    These rewrite rules can't work. They have a lot of logic failures that have nothing to do with reality. They cause conflicts with effects on page load time. You loose more as you believe to win. If each rule would work, every page of your shop would get as much versions of cached page as you...
  4. serpent_driver

    Wordpress error 503 when activating http / 2 in plugin litespeed cache

    Support for LSCache plugin for Wordpress: https://wordpress.org/support/plugin/litespeed-cache/ Support for OpenLiteSpeed: https://forum.openlitespeed.org/ LiteSpeed and CyberPanel related support check CyberPanel support forum This forum is for LiteSpeed Enterprise customers.
  5. serpent_driver

    Journal3, Webp no support in Safari and LSCache

    This test page is not a OpenCart installation and have developed an own plugin (hardcoded), but it doesn't matter if it is custom. The way how LScache works is always the same, but if there is a mobile view some different vary cache conditions and tags are needed. That's why I noticed cache...
  6. serpent_driver

    Journal3, Webp no support in Safari and LSCache

    @cafemasasandalye I already posted the link to a test page above. This test page simulates device detection to detect if - Mobile or Desktop device if Desktop - is it a windows desktop or Apple if Mac - is Safari or other browser if mobile - is it Android or Apple if Apple - is Safari or...
  7. serpent_driver

    Journal3, Webp no support in Safari and LSCache

    This can't be fixed with cache rules/settings. There are too much different functions that try to detect what device is used and every function for device detection works different. To get this webp function work with LScache webp plugin must be re-developed to use Client-Side-Includes instead...
  8. serpent_driver

    I think that the cache it's not flushed

    Cache for URLs that should not be cached should already be excluded from being cached within cache plugin. If you have pages in checkout that are cached, something is wrong. I am not the developer of this plugin and can't know what is wrong. Open a support ticket to get more qualified support...
  9. serpent_driver

    Journal3, Webp no support in Safari and LSCache

    If you don't use LScache this is not a LiteSpeed issue. Ask the one who has build the plugin for webp or the one who build this template/theme.
  10. serpent_driver

    Journal3, Webp no support in Safari and LSCache

    Describe "same problem" Btw: NEVER publish server info. Now everybody knows what software and versions you are running and is able to use leaks to hack your server. Protect infophp from public access!
  11. serpent_driver

    I think that the cache it's not flushed

    You can find cache directory for each users home directory. For example: /home/account_name/lscache/* remove all subdirectories within /lscache/* Navigate to home directory of affected account. This will remove all subdirectories and files within /lscache. Do it at your own risk! rm -rf...
  12. serpent_driver

    I think that the cache it's not flushed

    If you don't know such simple information you better shouldn't access to cli. It's the "heart" of your server. Find someone who can teach you, so you can learn what to do.
  13. serpent_driver

    I think that the cache it's not flushed

    1.) Purge entire Cache 2.) Request a page in shop that is not exluded from being cached. 3.) Check cache header like before 4.) If cache header is miss, everything is okay. 5.) If cache header is hit, wait a few seconds and request same page again. If cache header ist still hit, something is...
  14. serpent_driver

    I think that the cache it's not flushed

    hit == cached miss == not cached
  15. serpent_driver

    I think that the cache it's not flushed

    Check for "X-LiteSpeed-Cache"response header in browser developer console. hit vs. miss
  16. serpent_driver

    Journal3, Webp no support in Safari and LSCache

    If you purge cache by plugin cached files will not be removed from disk and not immediately after you have pressed purge button. Cache will only be marked to be removed from disk later when system has a low workload. If you have a shared hosting with less system ressources this process can take...
  17. serpent_driver

    Journal3, Webp no support in Safari and LSCache

    Nonsense! LSWS uses Apache directive. You MUST use Apache rewrite rules. There are no other! RewriteCond %{HTTP_USER_AGENT} "bot|spider|crawler|ipad|iphone|mac os|chrome-lighthouse" [NC] RewriteRule .* - [E=Cache-Control:no-cache] RewriteCond %{HTTP_USER_AGENT}...
  18. serpent_driver

    Journal3, Webp no support in Safari and LSCache

    You can mix them however you need it. Reed documentation about Apache Rewrite Rules ------->>>>>> https://httpd.apache.org/docs/2.4/mod/mod_rewrite.html <<<<<<---------
  19. serpent_driver

    Journal3, Webp no support in Safari and LSCache

    Because this settings name is "Page related" and not UA related. If you want such function you must add this function to plugin or disable UA in .htaccess. RewriteCond %{HTTP_USER_AGENT} "iPad" [NC] RewriteRule .* - [E=Cache-Control:no-cache] Everything you want to know can be found in...
  20. serpent_driver

    Journal3, Webp no support in Safari and LSCache

    There is no right code!!!!!!!!!!!!!!!!!! This task can't be solved with cache rules. What you need is a complete different solution based on Client Side Includes (Javascript). Look for a developer who is able to develop a OpenCart plugin that does the same as the current plugin for webp image...
Top