Search results

  1. M

    Hung Process Help

    If both servers hung at the same time, it is likely something wrong with MySQL DB server. If one server hung, another one is fine, it could be a problem of dead lock in PHP opcode cache. What you can do is to strace some PHP processes when server hung, to find out the source of the hung.
  2. M

    Purge in WordPress cache plugin

    purge from the plugin does not remove those files physically. just mark those files as out dated. To remove old files, use /usr/local/lsws/admin/misc/cleancache.sh If you upgrade to LSWS 5.1.x, expired cache entry will be removed soon after it expires. For older version, need to run...
  3. M

    GeoIP multi store switching in Magento

    You can redirect user to corresponding site based on Geo-location via rewrite rule. You need to enable GeoLocation feature using MaxMind GeoIP DB.
  4. M

    OpenSSL Vulnerabilities

    Thanks, we will release 5.1.9 tomorrow.
  5. M

    Tips on Using EasyApache ?

    EA3 requires Apache running during rebuilding Apache + PHP, otherwise, EA3 rebuild will fail.
  6. M

    [Resolved] Litespeed isn't populating interworx_traffic_log

    The interworx_traffic_log was generated at /etc/httpd/logs/interworx_traffic_log, they changed the location? Can you just symbolic link from /etc/httpd/logs/interworx_traffic_log to /var/log/httpd/interworx_traffic_log?
  7. M

    per user web directories - no cpanel, no apache

    Is it for openlitespeed? It should be easy to configure a vhost for a user.
  8. M

    Lots of fork() failed, please increase process limit: Resource temporarily unavailable

    You should set Proces Soft/Hard limit to 10x of "Max connections", 10000 should be enough.
  9. M

    Images swapping on IOS - Litespeed 5.0.19

    It is a bug with safari browser on iOS8/9, the solution is to turn off keepalive for that site. you can add to the .htaccess .
  10. M

    [Resolved] [LiteSpeed 5.8 build 1-2] error 505

    It has been fixed in build 4.
  11. M

    Increasing LSAPI_CHILDREN

    Are you using LSPHP daemon mode? Which version of PHP LiteSpeed SAPI are you using? maybe the process count is not accurate and grow steadily over time, if there is not that many PHP process actually running. Usually, the counter reset once server restarts. Maybe we should login the server to...
  12. M

    [Resolved] Rewrite rule directly in vhost to fix cPanel AutoSSL ?

    LiteSpeed support [END] flag already, so, <IfModule mod_rewrite.c> RewriteEngine On RewriteCond %{REQUEST_URI} ^\/[A-F0-9]{32}.txt(?:\ Comodo\ DCV)?$ [OR] RewriteCond %{REQUEST_URI} ^\/[0-9]+\..+\.cpaneldcv$ [OR] RewriteCond %{REQUEST_URI} /\.well\-known\/acme\-challenge RewriteCond...
  13. M

    5.1.9 Upgrade Error

    wrong version advertised. should be 5.1.8, it will change to 5.1.8 in 24 hours. You can manually upgrade to 5.1.8 with command /usr/local/lsws/admin/misc/lsup.sh -f -v 5.1.8
  14. M

    HTTP/2 over clear text after SSL offload

    On F5 side, it should advertise HTTP/2 over ALPN, decrypt SSL without interpreting HTTP/2 frames, forward decrypted traffic as is to backend. LSWS will detect the HTTP/2 traffic without ssl. F5 is pretty much doing SSL offloading and communicate with backend with layer4 load balancing mode.
  15. M

    Latest update appearing in 1st server but not 2nd

    There is a bad build with broken autoupdate agent, just manually update to new release, you wont get that problem again. /usr/local/lsws/admin/misc/lsup.sh -f -v 5.1.8
  16. M

    LSWS says 5.1.9 is latest, but can't retrieve it

    wrong version was advertised, it will update with the correct version in 24 hours. You can manually update with /usr/local/lsws/admin/misc/lsup.sh -f -v 5.1.8
  17. M

    HTTP/2 over clear text after SSL offload

    Please update again with the same command. We do not need that option, serve will automatically detects ssl offloaded http2 connection. haproxy backend should be configured as regular http node send-proxy need to be removed for now. will add support for that later.
  18. M

    Does noconntimeout require specifying the path?

    Both of your rewrite and SetEnvif configuration should work. Just need to make sure that those scripts are accessed directly by the user, not being called indirectly by something else, like index.php.
  19. M

    Intermittent cipher issue

    Please upgrade to 5.1.7, if the problem persists, we need details on how to reproduce this problem.
  20. M

    HTTP/2 over clear text after SSL offload

    Please try the latest debug build of 5.1.8 with command /usr/local/lsws/admin/misc/lsup.sh -d -f -v 5.1.8
Top