Search results

  1. M

    Will there be official support for Rails >= 2.3

    Maybe it need updates on the LSAPI object definition. Make it derive from "File" object could make irb happy. It is in ruby-lsapi/ext/lsapi/lsruby.c inside Init_lsapi() function.
  2. M

    Some minor suggestions for the site.

    Thanks, suggestions are taken. :)
  3. M

    conf and phpbuild has chmod 700. Is this correct?

    That's correct. should not be a problem.
  4. M

    503 Errors / LSAPI Packet Header is Invalid

    you need to patch utility/buildPHPExecute.php before we release an update.
  5. M

    mod_security RESPONSE_BODY

    Currently scanning response body is not supported by LiteSpeed yet. A rule like that will severely slow down the server when scan a large response body. So, we will think about it carefully.
  6. M

    RedirectMatch gone instruction

    it is not possible when LSWS read Apache httpd.conf. Only when you using LSWS vhost template you can do that.
  7. M

    Will there be official support for Rails >= 2.3

    Have taken some time to investigate it tonight, I think a piece of code similar to rails-2.3.0/lib/commands/server.rb should work, the main change is to use our Rack handler instead of Mongrel or WEBrick for the server object server = Rack::Handler::LSWS Might need some tweaks like our...
  8. M

    503 Errors / LSAPI Packet Header is Invalid

    That's because lsphp and lshttpd communicated with each other using File handle 1 (STDOUT). We just released LiteSpeed PHP SAPI 4.9 to address this issue. If you use cPanel, just Build matching PHP binary again, you probably need to switch back to Apache, and remove...
  9. M

    4.0 RC1 release

    Seems the query string part has been handled properly in LSWS already, Please give us more detailed description about the problem.
  10. M

    Response Buffering?

    The response buffer will not buffer the whole response, it is just wait a little bit longer to combine fragmented response data into a larger piece. LSWS always read the response as fast as it can and free the backend connection regardless the "Response Buffering" option.
  11. M

    4.0 RC1 release

    That's because the query string in the target URL, we will make it work in 4.0 release.
  12. M

    RailsRunner Issue in 3.3.24

    You are right about the .reconnect. .clear_active_connections is for backward compatibility with earlier release.
  13. M

    503 Errors / LSAPI Packet Header is Invalid

    One PHP module write "No recip..." string to STDOUT directly, which causes this error. usually, it is caused by "printf()" in PHP module written in C.
  14. M

    Memcache

    Yes, we will consider it.
  15. M

    Can't log into the admin cp

    Maybe your partition is out of space, please check output of "df".
  16. M

    Apache config's with piped CustomLog returns error

    try to remove the space between "|" and "/htdocs/....".
  17. M

    cli has eaccelerator, litespeed doesn't

    does it show that /usr/local/lib/php.ini is being used?
  18. M

    rewrite redirect not working under 3.3.24

    "RewriteOptions inherit" will be added.
  19. M

    Rewrite issue

    You have to add "RewriteLogLevel 9" to the vhost configuration to enable rewrite related logging.
  20. M

    rewrite redirect not working under 3.3.24

    After study the behavior of Apache rewrite implementation, it is the correct behavior. If you put only "RewriteEngine On" in a .htaccess without any rewrite rules or "RewriteOptions inherit", Apache will not look for other rewrite rules in parent directories. Tested it on Apache 2.2 . So, we...
Top