Search results

  1. M

    SSL in Safari

    We need to investigate this issue, it could be an issue in our SPDY protocol implementation. Please PM me the page cannot be loaded with 5.0.4, we will try to reproduce the problem in our lab.
  2. M

    RFE: Enable RBL support for ModSecurity

    We will add that after implementing the @inspectFile. Both operators require interruption of execution flow of ModSecurity rules, which is very hard to implement for a event-driven non-blocking server.
  3. M

    [Resolved] Error 502 with LiteSpeed v5.0+ with Cloudflare Railgun

    If you turn off Railgun, problem is gone? Railgun agent run on your local server, you may need to add the local IP used by Railgun to connect to web server as trusted IP. Check any error in error log.
  4. M

    [Resolved] Shopware login page no longer displays after update to LSWS 5.0.5

    The initial build of 5.0.5 is defect. It was fixed later yesterday afternoon. Please try a force reinstall of 5.0.5, if the problem persists, we will investigate.
  5. M

    LSWS 5.0.2 - received unexpected signal - automatically restarted

    Please upgrade to 5.0.5 .
  6. M

    LSWS 5.0.2 - received unexpected signal - automatically restarted

    We need a copy of the core file to analyze what is the root cause, as we replied to your bug report email.
  7. M

    High response time on Port 80

    It sounds like network or kernel TCP stack problem. You can setup a local monitor script to check the delay. from local host and from local LAN. Make sure there is no bandwidth throttling using in LSWS.
  8. M

    RFE: GEO support for ModSecurity

    LiteSpeed does not support "SecRuleUpdateActionById". Just move that rule to <LocationMatch /wp-login.php> ...</LocationMatch> You can turn on ModSecurity debug logging with "SecDebugLogLevel 9" to find out what happened.
  9. M

    RFE: GEO support for ModSecurity

    "stuff" refers to SecGeoLookupDb configuration, it wont work with litespeed. GeoIP DB must be set in LiteSpeed native configuration.
  10. M

    RFE: JSON logging for ModSecurity

    Currently it is not supported by modsecurity officially. We will look into that.
  11. M

    RFE: GEO support for ModSecurity

    Should be available in 5.0.4 release now. /usr/local/lsws/admin/misc/lsup.sh -f -v 5.0.4 You need to configure GeoIP stuff through LiteSpeed Web Console first, ModSecurity's GeoIP related configuration does not work.
  12. M

    Atomicorp modsec rules

    Please try 5.0.4 . /usr/local/lsws/admin/misc/lsup.sh -f -v 5.0.4
  13. M

    Litemage hit, lsphp5 process still using memory

    Yes, if you do not need that, turn if off as it requires accessing Magento framework for each product view.
  14. M

    Atomicorp modsec rules

    Probably not, Just wont go with the slower path if have a better choice. Actually, in this case, we will completely separate the rules for different phases. wont mix them together at all. Still one pass processing. Since ModSecurity project keep evolving, our goal is to keep up with it and...
  15. M

    Atomicorp modsec rules

    We will have it addressed. Will use libmodsecurity with our openlitespeed product. If it really have better performance than our own re-invented ModSecurity engine, we will switch over if the software license allows.
  16. M

    Zend Opcache with CloudLinux: docs conflict

    Like NiteWave mentioned, you have to check phpinfo() output for opcache related configuration when ProcesGroup mode is on. Each account uses different php.ini under CageFS.
  17. M

    Atomicorp modsec rules

    OK, I see. The reason is that LiteSpeed combine Phase 1 and Phase 2 and process all rules in one round, when there is no request body. Unless we do two round processing, which is slow, this problem cannot be avoided.
  18. M

    Unable to start litespeed

    try switching to Apache, then switching to LiteSpeed.
  19. M

    Litemage hit, lsphp5 process still using memory

    If you have tracking last viewed option turned on, the request still need to reach backend to record the last viewed items. If do not need that, turn it off.
  20. M

    Cannot Send Headers, headers already sent

    Basically, that module send and flushed the response header, once headers are sent, cannot make changes to headers. You can tune php.ini to use a larger Output Buffer for PHP see if the header can be cached.
Top