Search results

  1. serpent_driver

    Cant password protect my site

    delete all cookies, close browser and try if it works
  2. serpent_driver

    Image Optmisation with no plugin?

    LiteSpeed WP plugin doesn't convert images. It offers only a LiteSpeed service to convert images external. This is not an included function of LiteSpeed webserver.
  3. serpent_driver

    Image Optmisation with no plugin?

    LiteSpeed is a webserver, not an operating system that can convert images..... https://www.tecmint.com/convert-images-to-webp-format-in-linux/ https://www.google.de/search?q=linux+batch+convert+webp
  4. serpent_driver

    LS admin panel accessible outside of WHM

    https://[your_hostname]:7080/config/confMgr.php?m=[Admin User Name]&p=security Replace with your values
  5. serpent_driver

    conditional lscache folders?

    Share it....
  6. serpent_driver

    conditional lscache folders?

    Cookie value is only necessary if value is needed to differentiate between different vary cache rules depending on the value. If cookie name without value doesn't work for you, then you defined it with wrong syntax. But again, share it for others or is it secret?
  7. serpent_driver

    conditional lscache folders?

    Congratulations! :) Now, share it or is it "secret"? ;)
  8. serpent_driver

    conditional lscache folders?

    Almost everything you need can be found in LiteSpeed Wiki.
  9. serpent_driver

    conditional lscache folders?

    That is why you don't have basic understanding. Your code is not wrong, but a lot is missing and that is why it doesn't work as expected. My code works, but it isn't universal code for every condition. You have a custom application and a custom application needs custom code.
  10. serpent_driver

    conditional lscache folders?

    Simple situation to understand that is a little bit more complicated as you think. You wrote, if a user comes to your shop the first time you will set a header. You can do that, but if a URL is cached you cannot set anything with PHP, because the requested URL is pure HTML code. This is the same...
  11. serpent_driver

    conditional lscache folders?

    Custom isn't bad, ofcourse. But you have some misunderstanding what it means if a URL is cached and you underestimate what is needed to get a full page cache like LScache work in an online shop. That is the big problem.
  12. serpent_driver

    conditional lscache folders?

    Custom? AARrrggghhhhhhhhhhhhhhhhh :( Custom doesn't mean that it doesn't work. It means it is impossible to teach you what to do on this way. What you need is more than 2 lines .htaccess code. So, forget it.... sorry
  13. serpent_driver

    conditional lscache folders?

    ...and tell me the name of the shopping system application. Maybe I already have a ready to run plugin for it.
  14. serpent_driver

    conditional lscache folders?

    Describe the task exactly. What should happen (or not) if someone with specific condition requests which URL?
  15. serpent_driver

    Litespeed ignores expr in .htaccess (mod_headers)

    Okay, but I still believe in there is another solution for your need....
  16. serpent_driver

    Clarifications on purged cache clean-up

    Interested question! I think you will not get the answer in this forum and you better should open a support ticket, but don't forget to post the answer here. It's also interested for me.
  17. serpent_driver

    conditional lscache folders?

    If you need more information, check Wiki first. All basics about this stuff can be found there.
  18. serpent_driver

    conditional lscache folders?

    Yes, it is almost complete, but you still need the cookie in your definition. <IfModule LiteSpeed> CacheLookup public on RewriteRule .* - [E=cache-control:max-age=3600] RewriteCond %{HTTP_COOKIE} Cookie_Name_1 [NC] RewriteRule .* - [E=Cache-Control:vary=is_logged_in_cookie] RewriteCond...
  19. serpent_driver

    conditional lscache folders?

    https://www.litespeedtech.com/support/wiki/doku.php/litespeed_wiki:cache:developer_guide:cache-vary
  20. serpent_driver

    private cache page headers showing cache: miss

    Combine it <IfModule LiteSpeed> RewriteRule .* - [E=Cache-Control:private, max-age=20] </IfModule>
Top