Search results

  1. N

    Feature request

    I just created a simple test case and it looks ok. the document: https://www.litespeedtech.com/support/wiki/doku.php/litespeed_wiki:config:internal-redirect #cat /home/user/public_html/redirect.php <?php header("X-LiteSpeed-Location: /my_video/test.mp4"); ?> in virtual host section: Alias...
  2. N

    Feature request

    a quick work around, is to utilize current URL mechanism. you can use apache directive Alias to map a URL to a private path (http://httpd.apache.org/docs/2.2/mod/mod_alias.html) or static context at lsws web admin console ( same as Alias)
  3. N

    "illegal entry point" error when upgrading via WebUI from 5.0.6. to 5.0.7

    it's a bug in early build of 5.0.6 web admin (php script). fixed in later build of 5.0.6 already.
  4. N

    How to remove Congratulation! You have successfully installed the LiteSpeed Web Server?

    Sorry, I'm not quite understand what you mean. 1) trial license is free. you can get it from https://www.litespeedtech.com/products/litespeed-web-server/download/get-a-trial-license 2) it's working identically as a 2-CPU enterprise license, hence you can install it with above...
  5. N

    Xsend-file alternative

    the link has moved to https://www.litespeedtech.com/support/wiki/doku.php/litespeed_wiki:config:internal-redirect Edit: above link has also been corrected.
  6. N

    How to remove Congratulation! You have successfully installed the LiteSpeed Web Server?

    you can get a trial license for free, try 15 days ~ 30 days
  7. N

    How to remove Congratulation! You have successfully installed the LiteSpeed Web Server?

    there should be something wrong during installation. please follow https://www.litespeedtech.com/support/wiki/doku.php?id=litespeed_wiki:cpanel:auto-installer to re-install again. this is the most automatic way.
  8. N

    How to remove Congratulation! You have successfully installed the LiteSpeed Web Server?

    please set port offset to 1000 or 2000, to run apache and litespeed at the same time, and test one website at :1080 or :2080, to see what the problem is. what's the version of EasyApache and WHM ?
  9. N

    Litespeed and Comodo Errors

    the new link is https://www.litespeedtech.com/support/wiki/doku.php/litespeed_wiki:config:mod_security-tips Edit: Link above has been corrected as well.
  10. N

    lsapi problem - Priority, Max Connections and soft/hard limit

    these settings are too low, probably being ignored at all. so you're trying to limit 1 IP for only 1 connection ? please refer https://www.litespeedtech.com/docs/webserver/config/security#perClientConnLimit playing with Connection Hard Limit Connection Soft Limit
  11. N

    lsapi problem - Priority, Max Connections and soft/hard limit

    the settings alone are no problem at all, they are default settings of lsphp5 -> Environment. can you give more details regarding "lsapi environments not work" ?
  12. N

    Litespeed is killing Apache every hour

    this is normal. since litespeed will use same log file as apache, hence do you think "litespeed process is killing apache web server"? No. you can stop litespeed by /usr/local/lsws/bin/lswsctrl stop so it won't affect apache at all. then watch if no restart every hour ? before start litespeed...
  13. N

    Serious bug with .htaccess allow/deny processing.

    ok. I did test again based on above reply. the test URL is "127.0.1.1/directory/old.php" with RewriteEngine On or RewriteEngine Off, #curl -I 127.0.1.1/directory/old.php HTTP/1.1 403 Forbidden comment out "RewriteEngine On/Off" in .htaccess, then #curl -I 127.0.1.1/directory/old.php HTTP/1.1...
  14. N

    Serious bug with .htaccess allow/deny processing.

    I tried to reproduce the issue on a 5.0.5 server. initially I can reproduce the issue 100% after careful investigation, enable rewrite log etc, my test hadn't enable AllowOverride for "Limit", this results deny from all is completely ignored. the official document...
  15. N

    lsapi problem - Priority, Max Connections and soft/hard limit

    please revert back to default settings. in 99% time, you no need change these settings unless you understand well what those settings means. what's your main problem ? altphp not working ?
  16. N

    wordpress upload media , Error 503

    how about switch to apache ? also, please refer https://www.litespeedtech.com/support/wiki/doku.php/litespeed_wiki:php:503-errors to see if you can find something.
  17. N

    Multiple Failures with 5.0.5; Can't Downgrade

    refresh the browser. log out web admin / log in, the real-time stats will go back. I can log in the server and trouble-shoot the issue please PM the access to the server if it's possible.
  18. N

    Redirect Server Alias

    can you try following RewriteEngine On RewriteCond %{HTTP_HOST} !^www.somesite.com$ [NC] RewriteRule ^(.*)$ http://www.somesite.com/$1 [L,R=301] it should work.
  19. N

    SNI on LitesSpeed!

    google "sni apache", got this link: https://www.digicert.com/ssl-support/apache-multiple-ssl-certificates-using-sni.htm
  20. N

    SNI on LitesSpeed!

    litespeed support SNI if use apache's configuration file httpd.conf, same as apache. it looks only 1 directive which is related to SNI directly: SSLStrictSNIVHostCheck On/Off default is Off.
Top