Search results

  1. N

    .htaccess redirects won't all work on Lite Speed

    what's the current issue ? redirect still now work? what is CWP ? in your first post, not mention anything about 404 error page ?
  2. N

    .htaccess redirects won't all work on Lite Speed

    :)! following one should work: RewriteCond %{HTTPS} !on RewriteCond %{HTTP_HOST} ^www.domain.com$ [NC,OR] RewriteCond %{HTTP_HOST} ^domain.com$ [NC] RewriteRule ^(.*)$ https://www.domain.com/$1 [R=301,L] if still problem, I can log in the server to trouble shoot it for you.
  3. N

    [Resolved] Redirect WebAdmin console to https

    you can replace SERVER_NAME as HTTP_HOST i.e. rewriteRule ^(.*)$ https://%{HTTP_HOST}%{REQUEST_URI} [R,L]
  4. N

    High CPU Compared to Apache

    litespeed should have lower load than apache. this is a basic feature. this has been proved in hundred of production servers around the world. especially on shred host. for example, if apache can sustain 1000 accounts, litespeed can sustain 2000 accounts. this is not a miracle but a fact so far...
  5. N

    Ignore just some URL parameters

    Cache policy: "Cache Request with Query String": default is Yes. if you set it to No, then only page without query string will have possibility to be cached.
  6. N

    Reached max children process limit

    No. please check /usr/local/lsws/logs/lsrestart.log I guess your lsphp is running in non-suExec + Daemon mode. so parent lsphp process will run very long time until lsws restart. "Reached max children process limit" issue is automatically "fixed" by a lsws restart, then we can explain it.
  7. N

    Reached max children process limit

    how often does your lsws restart ? also every 2 or 3 days 1 time ?
  8. N

    Reached max children process limit

    you can try to increase if your server can sustain with that. does it happen during high traffic time ? is it possible DDos ?
  9. N

    Increase Public Storage Expire (minutes)

    got it. you can set it 2,3 or 7 days as you wish. daily purge doesn't mean purge all cache files -- only those older than 2,3 or 7 days ago.
  10. N

    Problems with Scheduled Backups to remote Location (dropbox) when using Litespeed Webserver & LSCach

    I searched out the link: https://updraftplus.com/frequently-asked-questions/ it's not "well-known" to us. I think we'll investigate this issue and add to our wiki. first, have you tried RewriteRule .* - [E=noabort:1] ?
  11. N

    Increase Public Storage Expire (minutes)

    do you mean lscache for wordpress plugin ? do you refer firefox->Network Monitor ? https://developer.mozilla.org/en-US/docs/Tools/Network_Monitor Blocked: Time spent in a queue waiting for a network connection my understanding, it's the time browser try to establish a TCP/IP connection with the...
  12. N

    Litespeed Cache and Symfony

    http://symfony.com/doc/current/bundles.html "A bundle is similar to a plugin in other software, but even better." of course. but so far we only have plugins for wordpress / Magento / XenForo. I know symfony / laravel very popular but it looks we lack of resources to implement them at present.
  13. N

    Litespeed Cache and Symfony

    a general solution may be complex and difficult. however if you're clear about which pages are cache-able, which are not, maybe we can work out a simple cache solution without plugin. document here: https://www.litespeedtech.com/support/wiki/doku.php/litespeed_wiki:cache:no-plugin-setup-guidline
  14. N

    High CPU loads, something must be wrong

    configuration of lsws itself, usually default one is good and the bottle neck is at php/mysql side. ddos may cause high load. if legal traffic is really high, also result high load. enable page cache for dynamic page(lscache for wordpress for example) is most effective way to lower the load. you...
  15. N

    Force Version Change For All Existing Installations - good idea or not?

    the uploaded file is for lscache for wordpress plugin. I'd recommend 1). plus: remember current working version. revert to it in case of latest version may fail. lscache plugin don't change anything in DB. and site can work without the whole plugin. and easy to upgrade to latest version and...
  16. N

    sites loading slow and constantly lscgid at the top

    please follow up this issue at https://www.litespeedtech.com/support/forum/threads/httpd-n-processes-load-litespeed.14705/#post-97619
  17. N

    "httpd -n" processes load Litespeed

    please search stderr.log, see if there is message like following: 2017-01-26 15:26:27.864 [STDERR] lscgid (910647): LVE jail(1374) ressult: -1, error: Unable to create directory /home/xxxxx/.cagefs/opt/alt/php71/link (Disk quota exceeded) !
  18. N

    Cannot enable gzip compression

    update: https://www.litespeedtech.com/support/forum/threads/solved-compressed-xml-request.14941/#post-97599
  19. N

    [Resolved] Compressed XML Request

    looks I can reproduce the issue. server side: #cat info.php <?php header("Content-Type: text/xml"); phpinfo(); ?> response headers: Accept-Ranges:bytes Connection:Keep-Alive Content-Type:text/xml;charset=UTF-8 Date:Wed, 17 May 2017 09:12:44 GMT Server:LiteSpeed Transfer-Encoding:chunked...
  20. N

    [Resolved] Compressed XML Request

    Compressible Types: text/*,application/x-javascript,application/javascript,application/xml, image/svg+xml text/xml belong to text/*, so it should be compressed.
Top