Search results

  1. N

    Xenforo Cache

    please refer https://www.litespeedtech.com/support/wiki/doku.php/litespeed_wiki:cache:common:seperate-mobile-versions "Your rewrite rules must exactly match your backend's mobile detection. If these do not match, you may run into the issue where your rewrite rules think that a device is mobile...
  2. N

    how i can restore configuration to default

    just download latest lsws, unzip the package, you can find the default values in conf/httpd_config.xml.in you can compare with your current values in /usr/local/lsws/conf/httpd_config.xml
  3. N

    wait 10.37 seconds in pingdom

    the site is powered by php, and probably + mysql. a typical php + mysql site. the bottle neck is at php + mysql site. you can compare with a pure html page(without php and mysql) or a pure php page(without mysql), to exclude other possible causes(like slow network connection, web server's...
  4. N

    High Memory Usage

    just check "top -c" to see which process has high memory usage. litespeed process usually keep very few memory.
  5. N

    Litespeed restart due to 503 error

    you can enable "suEXEC ProcessGroup" for each user: https://www.litespeedtech.com/products/litespeed-sapi/php/suexec-processgroup so each user can have its own max php limit(less than its cloudlinux LVE limit)
  6. N

    Error Configuring PHP With IMAP Support

    it's advised to use lsphp package as much as possible, avoid compiling lsphp yourself. I installed lsphp56-imap in a cent box, then in phpinfo page, it shows: IMAP c-Client Version 2007f SSL Support enabled Kerberos Support enabled so it already meet your target: '--with-imap=shared'...
  7. N

    [Resolved] LiteSpeed Server Stats

    1. have you run #yum install rrdtool 2. how do you show pictures ? I did local tests, the URL is http://x.x.x.x/ls_stats/index.php, with php 7.1, pictures show as expected.
  8. N

    LSCache For vBulletin?

    the rewrite rule may need adjust to fit your forum. for example, cookie prefix may not be "bb_" you can PM me the URL of the forum, so I can get more info to be able to suggest more.
  9. N

    [Resolved] LiteSpeed Server Stats

    yes, ls_stats/update.php should not work with php 7 but work with php 5. just install lsphp5 for example lsphp56, then run update.php in cron job, /usr/local/lsws/lsphp56/bin/lsphp {MYPATH}/ls_stats/update.php will work well.
  10. N

    Which lsphp do i use?

    yes
  11. N

    LSCache For vBulletin?

    please refer https://www.litespeedtech.com/support/wiki/doku.php/litespeed_wiki:cache LSCache + vBulletin LSCache + vBSEO It was working before. if any specific issue, we can discuss.
  12. N

    Limit simultaneous connexions to a specific vhost ?

    https://www.litespeedtech.com/products/litespeed-sapi/php/suexec-processgroup in suExec process group mode, every user(account) can have its own max connection number.
  13. N

    bypass Expires Settings

    ForexTalk11 confirmed following rules in .htaccess RewriteRule ^random/ - [E=reflg:1] header unset Cache-Control env=reflg header unset Expires env=reflg fixed his issue.
  14. N

    403 errors when trying to use php 7

    you may try lsphp rpms built by plesk: https://www.litespeedtech.com/support/wiki/doku.php/litespeed_wiki:plesk:php_guide
  15. N

    bypass Expires Settings

    if redirect comes from backend php script, I created a test case and just works. #cat re.php <?php header("Location: /phpinfo.php"); ?> #cat .htaccess RewriteEngine On RewriteRule re.php - [E=reflg:1] header unset Cache-Control env=reflg header always set My-Cache-Control "no-store...
  16. N

    bypass Expires Settings

    please PM me the real URL, steps of how to reproduce the issue, so I can understand more about the issue.
  17. N

    autoindex php handler

    you're right. did tests on lsws 5.1.11 without control panel. there are 2 php handlers: lsphp5, lsphp71. lsphp71 is set as default handler. when access a directory, it shows "X-Powered-By: PHP/7.1.0" as one response header after create following .htaccess /usr/local/lsws/share/autoindex>cat...
  18. N

    bypass Expires Settings

    we set up a centos 7 VM which apache 2.4 is installed. then installed latest lsws 5.1.11 my test result: 1. <If> <Else> is a new feature introduced in apache 2.4. <If "%{REQUEST_URI} =~ /random/"> ExpiresActive Off </If> is working with apache 2.4, but not supported by lsws yet from my quick...
  19. N

    Question about Litespeed Web Server Standard Edition Upgrading License

    I searched our wiki, this is for you: https://www.litespeedtech.com/support/wiki/doku.php/litespeed_wiki:installation:command_line "Upgrading" part. before upgrade, make sure you've received your serial number and save it into /usr/local/lsws/conf/serial.no then you can start upgrade.
  20. N

    Question about Litespeed Web Server Standard Edition Upgrading License

    no. configuration file is same. restart is graceful and 0 downtime.
Top