Search results

  1. M

    My server stopped.

    Try upgrading to 3.3.22
  2. M

    streaming flv video help

    Only thing required for FLV streaming is to assign MIME type "video/x-flv" to ".flv" files.
  3. M

    streaming flv video help

    ftp upload should be fine. what happened when you access the FLV file from a flash player?
  4. M

    async io writeav setting

    When a server performance is disk bound, async I/O will help a lot, as normally disk operation will block the single thread server process. We currently suggest a multi-CPU license for this kind situation.
  5. M

    h264 streaming support

    Any server or script can do that now?
  6. M

    My server is under heavy ddos attack. (sync attack)

    If you are using standard edition, you should apply a trial key and try the enterprise. Only Enterprise edition is able to handle DDoS attack well. Also, enable "syncookie" from your linux kernel if you have not enable it, please google how to do it.
  7. M

    Moving my installation of litespeed

    You can use a few hundreds of rewrite rules, but using too many rewrite rules are not efficient as all requests are going through those rules.
  8. M

    Moving my installation of litespeed

    give it a try, it does not hurt. The files under logs/ and cache/ directories do not have to be copied.
  9. M

    async io writeav setting

    using async I/O is on our radar. Async I/O make the kernel schedule tasks in a more orderly manner, so it leads to lower load, however, it does not mean it is faster. In most cases the server is disk bounded when async I/O benefits.
  10. M

    Moving my installation of litespeed

    You may have to install LSWS to /home directory. /root is not good as it is only readable by root. It is important to keep the ownership and permission mask when you copy the directory. Another choice is to reinstall LSWS to new location and copy over the existing configuration file.
  11. M

    Link on your customers page

    Yes, we got it. Lauren will work on it.
  12. M

    litespeed and nginx

    Based on our informal test a while ago, nginx is not as fast as LSWS when serving static content, but it is faster than lighttpd. We will publish some benchmark when 4.0 release is final. But, a few percentage difference in pure static performance does not matter in real world usage. User...
  13. M

    Mapping a subdomain to a folder?

    try the following rewrite rule at vhost level RewriteCond %{HTTP_HOST} ^mysubsomain.example.com RewriteRule /(.*) /mysubdomain/$1 [L] rewrite rule in .htaccess may not work.
  14. M

    Mapping a subdomain to a folder?

    Are all subdomains handled by the same application? If yes, you need to do the following setup the rails vhost to serve example.com and all its subdomains, http://mysubdomain.example.com/... will go to this vhost. then add a rewrite rule by extract the subdomain from HTTP_HOST, then rewrite...
  15. M

    Mapping a subdomain to a folder?

    You can use rewrite rule to rewrite any URL to /dispatch.lsapi?arg=$1 Internally, LSWS use a 404 not found handler to route request to /dispatch.lsapi, if you explicitly rewrite URL to /dispatch.lsapi, it will override the default.
  16. M

    mysql persistent connection

    You can search the PHP document on this topic.
  17. M

    mysql persistent connection

    It depends on your application. persistent connection should help on performance, but may cause other problem. Give it a try if you want.
  18. M

    Link on your customers page

    Thank you for the information. Please send your site description, along with a site logo to info@litespeed...
  19. M

    cpanel + litespeed , problem with port change

    For that specific vhost, you can configure it natively form LSWS web console.
  20. M

    "503 Service Unavailable" Error!

    maybe it is random 503 errors, or related to that user. try to follow the instructions in our wiki for trouble shooting. Trouble shooting If you LiteSpeed PHP setup give 503 errors, you may have PHP configuration problem, usually it is because the version of a loadable module does not...
Top