Search results

  1. M

    defining access-log-format

    We will consider adding customizable log format. Right now, if you can settle with a signle log file, let all virtual host use server's access log, then virtual host name will be logged.
  2. M

    Bug ? or low performance ?.....

    It is caused by mmcache + gzip compression in PHP, try turning off compression in PHP and clearing mmcache disk cache. Consider using eAccelerator instead.
  3. M

    Bug ? or low performance ?.....

    If you are using "epoll" event dispatcher, you should switch to "poll".
  4. M

    Bug ? or low performance ?.....

    You are welcome. :-) "Connection limits" are helpful with server load, but I think it is not the cause of the site slow down & hanging problem. The problem should be caused by the persistent connection from PHP to MySQL, deadlock happens, and eventually all PHP processes hang there doing...
  5. M

    Bug ? or low performance ?.....

    I think it is not configured properly, and I need more information to identify the problem, output of "top", "netstat -an | grep ESTABLISHED", and content of lsws/logs/error.log lsws/logs/stderr.log, Real time report page in admin interface. If you can make the admin interface available to...
  6. M

    503 error, phpMyAdmin running sql query

    In addition to the limits in PHP, you should check the request, response body size limit of lsws, they are under "server"->"tuning" tab. Please error.log and stderr.log, and restart lsws.
  7. M

    Install on mimimal debian system.

    The problem is identified. It is due to the 2.2.x kernel used on that server. 2.4.x kernel is the minimum requirement of LSWS. :-)
  8. M

    Install on mimimal debian system.

    Do not install lsws under /etc, it is not allowed to serve anything under /etc for security reason. If you don't mind and your server is available over internet, I'd like to logon your server and take look. It is the best way I can help right now. PM me. Up to you. :-)
  9. M

    Install on mimimal debian system.

    Did you start it as root or as the normal user? have to be a normal user. Which version of debian are you using?
  10. M

    Install on mimimal debian system.

    I think it is a binary/library compatibility issue. Try starting lsws as the normal user specified during the installation, just run lsws/bin/lshttpd directly. Also, you need to change a configuration file manully, lsws/admin/conf/admin_config.xml , search for some thing like...
  11. M

    Install on mimimal debian system.

    Any thing in lsws/logs/error.log?
  12. M

    mod_status equivalent?

    Those activities are logged in the error log. just check the log file once for a while. Most time you don't need to any thing, as those are taken care of by server itself unless the attacker is not frustrated and keep doing that, then you can block them at firewall level. We will add a option...
  13. M

    mod_status equivalent?

    Yes, it looks cool. If you are using scripts to detect possible attack based those information, it is not a good choice at all. We have built-in anti-attack features to fend off attacks. Just relax. :-) Have you read this and adjust your configuration according...
  14. M

    mod_status equivalent?

    Did you take a look at the real statistic page in the web admin interface? What data did you monitor in mod_status?
  15. M

    Loop Redirection?

    Looks like the /checkout_process.php take more than 5 minutes to process and request is timed out, is it normal? There might be MySQL dead lock. you should turn off MySQL persistent connection. check your php.ini , default one is in lsws/conf/php.ini
  16. M

    Loop Redirection?

    That's remote address, where the request comes from. don't worry.
  17. M

    Loop Redirection?

    It because one script send a redirect to itself.
  18. M

    Benchmark

    New benchmarks will be released with 2.0 release.
  19. M

    fastcgi - loadbalancing

    It will be in 2.x soon after we finish some more important features. It probably will available for all editions.
  20. M

    fastcgi - loadbalancing

    A session-aware load-balancing module is planed. Best Regards, George
Top