Search results

  1. N

    Redirect loop on Multsite subsite

    not sure if following will work: RewriteEngine On RewriteBase / RewriteRule ^index\.php$ - [L] # add a trailing slash to /wp-admin RewriteRule ^([_0-9a-zA-Z-]+/)?wp-admin$ $1wp-admin/ RewriteRule ^([_0-9a-zA-Z-]+/)?(wp-(content|admin|includes).*) $2 RewriteRule ^([_0-9a-zA-Z-]+/)?(.*\.php)$...
  2. N

    Can anyone tells me if lscache is working on this site or not?

    only your host can fix it since it need root privilege. please ask your host to set ready lscache root at server level. for WHM/cPanel, please refer this wiki: https://www.litespeedtech.com/support/wiki/doku.php/litespeed_wiki:cache:common_installation:cpanel-shared
  3. N

    Image support compiling php, how?

    can you try yum install lsphp73-gd
  4. N

    Reverse Web Socket Proxy: Connection closed before receiving a handshake response

    what's the web socket app ? I'd see if I can reproduce the issue on my end.
  5. N

    Reverse Web Socket Proxy: Connection closed before receiving a handshake response

    <address>[url]:1060</address> what "url" mean? it should be a IP address, e.g., "127.0.0.1"
  6. N

    [Solved] Hide Server Signature on file loading

    I did a test on latest lsws 5.4.1 build 1, it works, all document, images and icon etc don't have "Server:" header at all. which lsws version do you test on ? have you confirmed it's not a browser cache issue ? you can try in another browser or in a incognito window.
  7. N

    [Solved] Hide Server Signature on file loading

    please refer https://www.litespeedtech.com/docs/webserver/config/general#showVersionNumber you can select "Hide Full Header"
  8. N

    .htaccess and WHM Apache Include Editor has No Effect

    I did a test on one server WHM Home »Service Configuration »Apache Configuration »Include Editor -> "Pre Main Include" for "All Versions." added only <Files "wp-config.php"> Require all denied </Files> and tested with #curl -I test.domain.com/wp-config.php HTTP/1.1 403 Forbidden...
  9. N

    Allowing execution of cgi files in the root directory

    the .htaccess is complex and may have compatibility issue. to test the test.pl only, you can put a rule at the begin, just after RewriteEngine On RewriteRule test.pl - [L] to see if it just works. if not, please follow suggestion from Pong
  10. N

    Allowing execution of cgi files in the root directory

    can you show the .htaccess here if not big size.
  11. N

    Allowing execution of cgi files in the root directory

    please refer https://www.litespeedtech.com/support/wiki/doku.php/litespeed_wiki:other-ext-apps:apache-mod-perl-equivalent to see if it can resolve the issue.
  12. N

    [Solved] Is there a way to test http/3

    you can try https://http3check.net
  13. N

    gzip and internal redirect

    brotli compression is introduced in recent 1-2(?) years in addition to gzip, and now it's default than gzip before. you can disable brotli in litespeed web admin, to see if ob_start("ob_gzhandler") will be ok again.
  14. N

    gzip and internal redirect

    how about keep ob_start(), but without "ob_gzhandler"? will it work or not? and what's the LSAPI version of php 5.6?
  15. N

    htaccess configuration issue

    in general, this guide will work https://www.litespeedtech.com/support/wiki/doku.php/litespeed_wiki:config:multiviews#how_apache_multiviews_works but you said not working, so need access your server to trouble-shoot why it not work.
  16. N

    htaccess configuration issue

    please compare the difference of phpinfo between litespeed and apache. please provide access to the server via private message of the forum, or login a ticket with us. so we can pinpoint the cause of the issue quickly.
  17. N

    htaccess configuration issue

    please show contents of myfolders/.htaccess
  18. N

    [Solved] Browser caching only for 3 seconds

    # curl -I https://staging.eosrooflights.co.uk/min/97f30.css HTTP/1.1 200 OK Cache-Control: max-age=3, must-revalidate Expires: Sat, 17 Aug 2019 02:53:54 GMT Last-Modified: Wed, 17 Jul 2019 17:55:14 GMT Content-Type: text/css Content-Length: 2982 Accept-Ranges: bytes Date: Thu, 18 Jul 2019...
  19. N

    Litespeed is indexing everything

    is any control panel(cPanel / Plesk / DirectAdmin etc) running on the server ? if so, please turn of "autoindex" in that control panel as if apache is running underground. if no control panel, please refer https://www.litespeedtech.com/support/wiki/doku.php/litespeed_wiki:config:autoindex...
  20. N

    [Solved] Browser caching only for 3 seconds

    if it's a WHM/cPanel server, please check if there is any "cache-control" in /etc/apache2/conf.d/includes/*. i.e. grep -i cache-control /etc/apache2/conf.d/includes/*
Top