Search results

  1. M

    Zend reporting v3.2.2, even though we're on v3.3.0??

    PM me a temp root login, I can take a look.
  2. M

    slowing down after 1000 connections

    check your ip_conntrack setting To print current limit type: # sysctl net.ipv4.netfilter.ip_conntrack_max To increase this limit to e.g. 100000, type: # sysctl -w net.ipv4.netfilter.ip_conntrack_max=100000 Alternatively, add the following line to /etc/sysctl.conf file...
  3. M

    Very annoying license issue

    like from "eth0" to "eth1", if you bring up or down new network interface, the license migration is required.
  4. M

    Directory Listing Shows Blank Page

    No problem. ;)
  5. M

    Admin panel and sites slow, load low

    PM me the login to LSWS admin console, I can take a quick look.
  6. M

    Admin panel and sites slow, load low

    That can be ignored.
  7. M

    security

    vhost level custom error page is available now, it is just that a 400 error page does not below to any vhost as LSWS does not finish parsing the request at all. so it has to be set at server level.
  8. M

    Very annoying license issue

    Have you changed your NIC configuration?
  9. M

    security

    In our upcoming 4.0 release, I will added server wide custom page.
  10. M

    Very annoying license issue

    Sorry for the inconvience, you should be able to fix it in a few seconds by following our standard license migration procedure. When ever it happens, please try lsws/bin/lshttpd -m lsws/bin/lshttpd -r Please make sure the old license key lsws/conf/license.key is there, if it has been...
  11. M

    Multiple LSWS on same host

    You cannot change the location of the pid file. If you want to run multiple instance of LSWS, use vmware, openvz or setup chroot jail for each instance.
  12. M

    Netcraft web server surey: LiteSpeed passes 400,000 hostnames this month

    According to the latest Netcraft surey, http://news.netcraft.com/archives/2008/01/28/january_2008_web_server_survey.html :D
  13. M

    RewriteRule Errors with ?

    RewriteEngine On RewriteCond ${QUERY_STRING} ([0-9]+) RewriteRule ^test$ http://www.google.com/%1 [R=301,L]
  14. M

    RewriteRule Errors with ?

    first, "?" is a special character in Regular expression, so you need to escape it with a "\". Second, RewriteRule only match the URI part of the URL, query string part will not be matched. You need to add a "RewriteCond ${QUERY_STRING} ..."
  15. M

    Child process limits

    3.3.5 release has been uploaded. You can download it by changing the version number in the download URL.
  16. M

    Apache to Litespeed in Cpanel

    The default cPanel configuration comes with php4 and php5 support, if you only use one version of PHP, you can remove one set of lsphp external app and associated script handler configuration.
  17. M

    Apache to Litespeed in Cpanel

    http://www.litespeedtech.com/docs/webserver/config/adminlistener/
  18. M

    rebuilding php with a custom eaccelerator

    Yes, we can include those options if it does not hurt anything. the php build script does not update your php.ini, you still need to update it manually.
  19. M

    specify an alternate conf directory

    The result with NFS looks pretty good. I think it should be good enough for a lot of people. 100Mbits is a lot of traffic. What kind of LiteSpeed license are you using? 2-CPU trial? If you would like to test Litespeed with higher level CPU license, please contact sales @ ... Also, does it...
  20. M

    404 Error trying to use Roundcube webmail ???

    It has been fixed in our latest php-litespeed SAPI 4.5 release. Added implementation of getallheaders() and apache_request_headers()
Top