Search results

  1. M

    Performance tuning - php 4/apc/lsapi

    The root cause probably is not in PHP or LiteSpeed, maybe because the backend DB cannot keep up and it causes load spikes on front end server. PHP_LSAPI_CHILDREN may not help much. Better to find out why PHP has been slowed down. :)
  2. M

    No more access logging after upgrade (2.1.13 -> 2.1.20)

    We added a new option in virtual host logging configuration, not sure it will cause any problem. Anyway, just edit the logging configuration with the new web admin interface, then save configuration, restart the server, I think the problem should be fixed. :-)
  3. M

    how to implement iconv extension

    try "extension=../lib/iconv.so"
  4. M

    ssl configuration

    "TLSv1" should be checked for the SSL configuration, and at least "high" and "medium" should be checked for encryption level.
  5. M

    No more access logging after upgrade (2.1.13 -> 2.1.20)

    Not exactly sure what happened, please check the logging configuration for your virtual host. Access logging should work fine.
  6. M

    Caching(reverse proxy) function?

    We will start working on it soon, should be ready in two months if everything goes well.
  7. M

    Is there something like CGI Set *GID* Mode?

    The awstats part have to be fixed to make it set proper permission when suEXEC is used. Setting open_basedir in a template needs code changes on our side, however, if php is started in suEXEC mode, it may not be necessary, but it is always a good thing to have. Those will be in 2.2 release.
  8. M

    No certificates in /etc/ allowed?

    That's for security reason, maybe not necessory. Will take it out.
  9. M

    new Apache coexistence option

    Have you ever tried it? Does it work as you want?
  10. M

    Is there something like CGI Set *GID* Mode?

    It is not available for current LSWS, we may added it later. However, you can let each user has its own group, and add "www-data" user to all those groups. Or you can use ACLs if it is available.
  11. M

    emalloc / erealloc again with APC

    You can set the memory limit for individual external application that needs more memory.
  12. M

    Suexec on cPanel

    I see. For PHP will be executed under user "nobody" as PHP is handled by the global phpLsapi running as "nobody". For other plain CGI, should be executed as the UID specified. The PHP suExec will be addressed soon in new LSWS release, please stay tuned. :)
  13. M

    After upgrade to .19: POST requests hang!

    Can you please try below see if it is the cause of the problem? In ruy-lsapi/ext/lsapi/lsruby.c, in function lsapi_read() comment out FD_ZERO( &readfds ); ... If (rb_thread_select(...) < 1 ) { return Qnil; } The rb_thread_select() may block the execution when the post body is small. should...
  14. M

    Context -> MIME Type setting does not work as described in documentation

    Just add it to "MIME Type" or change the global MIME definition file. The "+" in MIME type problem will be fixed soon, it is the admin interface, you can add that in httpd_config.xml manually in the mean time.
  15. M

    Suexec on cPanel

    You can fix it by changing "CGI Set UID Mode" to "document root" for the imported vhost. Or do not import httpd.conf during installation, let LSWS read httpd.conf directly with "Using Apache Configuration File" feature under "server"->"general" tab.
  16. M

    After upgrade to .19: POST requests hang!

    Thanks. Will investigate.
  17. M

    How to setup a subdomain for mongrel

    And, don't forget to add a dns record pointing app.mydomain.com to your server.
  18. M

    MySQL Authentication

    Hi Bob, You can search for "OpenLDAP MySQL", probably not as easy as using LiteSpeed. :-) Instead of using LDAP, you can write a customized Fast CGI authorizer using your favorite DB as backend for authentication. Due the license restriction, we cannot implement some thing like mod_dbd inside...
  19. M

    Caching(reverse proxy) function?

    Yes, squid like cache proxy is planed, our 32bit binary works well on 64bit OS, the 32bit compatible library is required, it available on almost all Linux distributions.
  20. M

    requests time out (sometimes...)

    No, there isn't. :-)
Top