Search results

  1. serpent_driver

    Geo Ip Rewrite For Files

    Try this: <IfModule mod_geoip.c> RewriteEngine on RewriteCond %{ENV:GEOIP_COUNTRY_CODE} !^(FR)$ RewriteRule (test).js$ - [F,L] </IfModule>
  2. serpent_driver

    Geo Ip Rewrite For Files

    If you have Litespeed Enterprise open a support ticket to get qualified support. Otherwise and if you use Open Litespeed wait for an answer from Litespeed support team.
  3. serpent_driver

    Geo Ip Rewrite For Files

    Before your rule can work, you have to setup settings in WebAdmin.
  4. serpent_driver

    how to cache website runing plesk panel with Litespeed extenation

    This not a question of support. If you don't read well published information before you buy, this is your fault. Not a fault of Litespeed.
  5. serpent_driver

    Geo Ip Rewrite For Files

    Check https://www.litespeedtech.com/support/wiki/doku.php/litespeed_wiki:cache:common:geoip-support?s[]=environment&s[]=variables to make GeoIP available
  6. serpent_driver

    how to cache website runing plesk panel with Litespeed extenation

    Depending on your application it could be possible to use cache without a development/plugin. LS Cache allows to define "Vary" cache rewrite rules in .htaccess. Such rules are almost the same like known rewrite rules to redirect a URL to another URL. With these rules you can make cache...
  7. serpent_driver

    how to cache website runing plesk panel with Litespeed extenation

    Okay again and that is fact. If you want to use Litespeed Cache you need either a plugin or a developer who develops a plugin for your application. Without a development that can organize and control Litespeed Cache you can't use it. Why didn't you ask before you buy a license? Everything you...
  8. serpent_driver

    how to cache website runing plesk panel with Litespeed extenation

    You need a plugin for each application that should get cached pages. Without a plugin you cannot use LS Cache. https://www.litespeedtech.com/products/cache-plugins
  9. serpent_driver

    Xenforo issues with different styles shown for guests

    @Michael A It was only an idea...., sorry.... for trying to help...
  10. serpent_driver

    Xenforo issues with different styles shown for guests

    @Michael A Maybe xf_lscxf_logged_in|xf_user|xf_session_admin cookie will not be removed if logoff?!
  11. serpent_driver

    Xenforo issues with different styles shown for guests

    The big question is, who has developed this plugin? I don't know much about Litespeed cache plugin for Xenforo, so all I know is that this plugin has only rudimentary cache settings and has to be extended with functions like they are available in other Litespeed cache plugins. You should open a...
  12. serpent_driver

    How to exclude specific page from cache like "checkout"

    It doesn't matter if you on shared hosting, vServer or dedicated server. The problem is that this extension doesn't use default checkout and Litespeed Cache plugin doesn't know this extension and can't exclude this extension from beeing cached. You need someone who can extend Litespeed cache...
  13. serpent_driver

    Xenforo issues with different styles shown for guests

    To find the reason for this issue, do the following steps: 1.) Logoff from forum 2.) Remove all cookies from your browser and don't request your forum again until all steps are done. 3.) Add the following Rewrite Rule to you .htaccess where all other Litespeed Cache Rules are defined. You can...
  14. serpent_driver

    Xenforo issues with different styles shown for guests

    In my mind these Rewrite Rules are insufficient for your custom usage. Redis and Cloudflare can make a difference, but it seems to be better to open a support ticket.
  15. serpent_driver

    Xenforo issues with different styles shown for guests

    If guests see the wrong theme, something goes wrong with login cookie if a user logoff. If a user is logging off and login cookie still exists he gets the the theme from logged in user. Have you manually defined these Rewrite Rules or are these rules defined by the plugin? They don't look okay...
  16. serpent_driver

    How to exclude specific page from cache like "checkout"

    Again, I don't know this plugin. If there is no function to add a new hook you have to find someone who extends this plugin or try it manually with a vary cache rule in .htaccess. Or open a support ticket to get help.
  17. serpent_driver

    Xenforo issues with different styles shown for guests

    Setting a cookie to logged in users is not enough. This cookie must be binded to login status, so if logged in users logoff this cookie must be removed. Otherwise cookie still exists if users logoff and they will get wrong theme.
  18. serpent_driver

    Xenforo issues with different styles shown for guests

    No, logged it users get different cached pages as not logged in users, but both get cached pages.
  19. serpent_driver

    How to exclude specific page from cache like "checkout"

    I don't know Opencart cache plugin and don't know if there is a function to exlude URLs from caching. If there is no such function you can exclude specific URLs from being cached in defining a cache rule in .htaccess. Otherweise check plugin functions. Example: RewriteCond %{REQUEST_URI}...
  20. serpent_driver

    Xenforo issues with different styles shown for guests

    Set a cookie for users who login and define a vary cache rule in .htaccess: Example: RewriteCond %{HTTP_COOKIE} "loggedin" [NC] RewriteRule .* - [E=Cache-Control:vary=loggedin_user]
Top