Search results

  1. M

    Litespeed and CXS

    "@inspectFile" operator is not supported now.
  2. M

    Filtering Hack Attempts Via Http Auth

    what secfilter rule you used? it should work, it can match pattern against any http request header.
  3. M

    [solve..]HT Access Options don't work

    "Allow Override" has no effect on vhosts configured via httpd.conf, you have do it in Apache configuration form httpd.conf.
  4. M

    vBulletin Guest Cache with LiteSpeed

    When I visit vbseo.com, the request header is like cookie value is interesting, could be used as signature for guest user if all vbseo enabled forums have this cookie. The rewrite rule should only test request cookies indicating a guest visitor,then mark it as cacheable.
  5. M

    URL Rewriting Help

    For rewrite rule problem. just enable rewrite log, for vhost from httpd.conf, use directive "RewriteLogLevel 9" for that vhost, then check rewrite related log entries in the error log.
  6. M

    [solved] Max retries has been reached, 503!

    It is a mystery now why PHP crash with large cookie size. If you could create a simple test script to trigger it, we would like to investigate it in our lab.
  7. M

    [solved] Max retries has been reached, 503!

    If Apache/PHP crash, user only got a blank page.different symptom. Likely a PHP internal issue as LSAPI does not deal with cookies at all.
  8. M

    [solve..]HT Access Options don't work

    try "force reinstall" from web console.
  9. M

    mod_security

    got it. support for SecMarker and skipAfter action is required, should be easy to implement. We do assume rule ID is numeric though, all examples given in modsec document are integers. We are adding more features for our 4.1 release to improve the compatibility with modsec 2.5, however, there...
  10. M

    [solved] PHP not processing

    you missed the script handler configuration for ".php".
  11. M

    Pure litespeed server (no apache) fancyindex options ?

    You can create your own custom index script, then set http://www.litespeedtech.com/docs/webserver/config/general/#autoIndexURI at server or vhost level.
  12. M

    mod_security

    Are you talking about "chain" and "skip" actions? those actions are supported currently. There are litespeed users loading getroot or some other modsec rule sets. rules using regular express matching do work. It does not break LiteSpeed.
  13. M

    mod_security

    We have been adding 2.5 features into our modsec engine, @pm, @pmFromFile are supported in our 4.1RC4 release already. We will continue adding more features based on popularity and importance.
  14. M

    IP.Board compatibility?

    Litepspeed Cache uses rewrite rule to fine tune the cache policy, only cache pages that is safe to be cached. It can apply to IP.Board.
  15. M

    [Solved] Import from Apache

    change configuration from '--with-mysql=shared,/usr' to '--with-mysql=/usr', then rebuild PHP.
  16. M

    4.0.19 - Server Config and Symbolic Links

    You can move "serial.no", "license.key" to parent directory, in "lsws/", instead of "lsws/conf", it should work fine.
  17. M

    4.0.19 - Server Config and Symbolic Links

    If you use symbolic link, you have to link the "conf" directory. LiteSpeed always create new configuration file, then rename, it is to prevent corrupting current configuration when out of disk space.
  18. M

    [Solved] Import from Apache

    Using "/usr" is correct, you can ignore "include", "lib64". So, you have built your binary correctly, just did not load the shared modules. Copy over php.ini used by Apache PHP to /usr/local/lsws/lsphp5/lib/, should make it work.
  19. M

    [Solved] Import from Apache

    "rpm -ql mysql-devel" to check where those files installed, if it is installed to a special directory, change your PHP configuration parameters to use that location.
  20. M

    [Closed] EAProc WaitQ

    "PHP suEXEC max connections: 1500" is way too high, should reduce it to 100-200 Your problem is likely because PHP script code issue, or mysql slow queries, you should try to optimize from those directions. In crease "Max connections" only mask those problems.
Top