Search results

  1. M

    Enable cURL

    It is a PHP feature, you can compile PHP with option "--with-curl".
  2. M

    c/c++ shared modules as plugins

    If dynamically generated page is cache friendly, you can try SSI + (fastCGI + tntnet).
  3. M

    c/c++ shared modules as plugins

    Yeah, keep us updated with your project.
  4. M

    c/c++ shared modules as plugins

    Maybe you can try our SSI implementation in 4.0 beta, see how it holds up, it should be very close to the performance of a internal API. Along with the cache module, it could deliver the highest performance for well designed web application. We are trying to push the 4.0b3 out today.
  5. M

    VPS Trial

    Yes, you can use trial license on a VPS.
  6. M

    c/c++ shared modules as plugins

    Thanks for the tip on tntnet.org, do you have any experience with it? easy to work with fastCGI? A toolkit written in C is preferred, it could be a headache when user try to load the module into web server due to stdc++ library conflicts, out of process should not be a problem. If put a...
  7. M

    JSP vs PHP

    I do not have an answer to your question. we only try to make both run as fast as they could with LiteSpeed, have not compare performance of those two. :) Maybe you can google for it. JSP is more popular in the enterprise world, while PHP is more popular in pure web application.
  8. M

    c/c++ shared modules as plugins

    We may implement something like ISAPI or NSAPI as the internal API. Only need one, will investigate which one is better. Right now, we have LSAPI similar to FastCGI as external application API. We can even implement something like LSAPI-ISAPI bridge to load ISAPI app into a external process, so...
  9. M

    mod_userdir Protection

    Please give us an example if you do not mind, PM me or send us an email.
  10. M

    mod_status equivalent?

    We will tweak the status page in 4.x release. It is low priority though.
  11. M

    mod_userdir Protection

    Which exact setting are you talking about? What exactly the problem is? mod_userdir does not work or it should not work.
  12. M

    PHP Build Problem

    check the "Server API" output from phpinfo().
  13. M

    HTACCESS error

    Just remove it. or, check the permission.
  14. M

    Strang error...

    It is more like a problem with the script, maybe the script falls into a infinite loop. You can try the same script on an Apache server, see what will happen.
  15. M

    Performance Tuning

    The configuration in httpd.conf will be used for Apache vhosts. Yes, you can use image/*, if the MIME type does not exist, you have set it explicitly. You need to find out what MIME is used for ".js" and set expiring configuration accordingly.
  16. M

    Listener for port

    Please read http://www.litespeedtech.com/docs/webserver/config/concepts/ first
  17. M

    Rails page caching with multiple domains same vhost

    "^$" is a pattern for empty string, it should work exactly the same as non-empty string when you compose the rewrite rule.
  18. M

    Listener for port

    You need to ask the question to control panel software vendor.
  19. M

    Rails page caching with multiple domains same vhost

    1. test if the file exists or not with rewrite condition 2. remove 'R' flag.
  20. M

    Rails page caching with multiple domains same vhost

    I think it should be RewriteRule index.html /%{HTTP_HOST}/index.html [L,R] context level rewrite rule will remove rewrite base from URL.
Top