Search results

  1. serpent_driver

    Litespeed cache on memcached and redis

    This is a wrong wording. Memcached and Redis are not enabled at the same time. "enabled" means that both object caches are available, but not enabled. If Memcached or Redis is "available", then there is no need to install additonal object cache. Settings for Memcached or Redis are just not...
  2. serpent_driver

    Custom ErrorDocument is Ignored

    You can set your own 403.shtml. .shtml is just html and can be styled and filled with every content, but you must follow 403 restrictions. You can't deny access to whatever source and allow access to sources at the same time. cPanel follows Apache directive for errorDocument. If you don't like...
  3. serpent_driver

    Custom ErrorDocument is Ignored

    Yes, I removed LiteSpeed label in this (my) 403.shtml. What else are you complaining about now?
  4. serpent_driver

    Litespeed cache on memcached and redis

    Search for memcached.sock on your server and use this code to test if Memcached works. $mc = new Memcached(); $mc->addServer('/path_to/memcached.sock', 0) or die ("Unable to connect"); echo "Server version:<pre>"; print_r($mc->getVersion()); echo "</pre>"; $tmp = new stdClass; $tmp->str_attr...
  5. serpent_driver

    Custom ErrorDocument is Ignored

    Of course you see the same content because the 403.shtml is the LiteSpeed 403.shtml page. You can change the 403.shtml as you wish, but it must always remain the 403.shtml file and you are not allowed to include any static elements in it.
  6. serpent_driver

    Custom ErrorDocument is Ignored

    If you use cPanel, then you are not allowed to define an error_document for 403, because 403 means that access to any source is prohibited and therefore also to a custom error_document. That sounds paradoxical, but it is true. The cPanel configuration expects a 403.shtml in the document_root...
  7. serpent_driver

    Custom ErrorDocument is Ignored

    Place error_document in document_root and try again.
  8. serpent_driver

    Litespeed cache on memcached and redis

    @Cipher If you have Memcached or Redis enabled, leave the settings page for cache and request cache settings page again. The connection status is often not displayed immediately when the Object Cache has been activated. You should also check whether you use a Unix socket, because you then have...
  9. serpent_driver

    Laravel Litespeed Cache for Logged In User

    Says an nginx user who only knows LiteSpeed by name.
  10. serpent_driver

    Browser errors were logged to the console

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

    Wordpress Installation on Litespeed Enterprise

    PHP interpretor is missing, so you better should use a control panel.
  12. serpent_driver

    Optimized WebP file expired and was cleared constant notification

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

    Images for Twitter Cards being blocked

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

    503 Service Unavailable The server is temporarily busy, try again later!

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

    How to register php 7.4 to 8.1 in External app ?

    Before you test anything warmup the cache first. If you have further questions please use LScache plugin support at Wordpress forum. This forum doesn't support cache plugin for WP any longer. https://www.litespeedtech.com/support/forum/threads/please-use-the-official-wordpress-forum.16028/
  16. serpent_driver

    How to register php 7.4 to 8.1 in External app ?

    Then there is nothing to do. PHP versions are controlled by cPanel. Almost any setting in WebAdmin console is meant for native use if there is no server control panel.
  17. serpent_driver

    How to register php 7.4 to 8.1 in External app ?

    @sujoydhar Do you use any server control panel like cpanel, Plesk or other?
  18. serpent_driver

    vary being ignored

    You cannot use a HTTP cache for your request. The only thing you can do is use an object cache such as Memcached or Redis.
  19. serpent_driver

    vary being ignored

    You haven't understood the problem yet. LScache is a URL based HTTP cache. This means that only dynamically generated sources of the text/html type are cached and which require an HTTP request. However, your requirement is far from allowing you to use an HTTP cache, especially since that doesn't...
Top