Search results

  1. D

    how to transition to enterprise to with minimum downtime?

    on a production server with several sites, what are the installation steps to transition from free lsws to enterprise lsws, with minimum or no downtime? is there a wiki doc for this?
  2. D

    diff of Premium Support Contract and forum

    i was looking at the service page, it says "Premium Support Contract" answers within 1 biz day, but your guys do that on the forum already. so what does contract offers more? does anyone actually buy contract?
  3. D

    http streaming?

    Does lsws supports Comet Programming ? (new buzz word everyday), or http streaming, means keep http connection open, so webserver can push data to browser without browser requesting it. such way is useful in chat or stock ticker app in browser. like meebo chat. according to dojo developer...
  4. D

    ProxyPass

    when exploring ajax and XmlHttpRequest(XHR), I realize that browser by default doesn't allow sending XHR to other domains, so one solution is to proxy the site I try to query. so in mysite.com rails app, I like map all request starting with "mysite.com/yahoo" to "api.search.yahoo.com", so XHR...
  5. D

    diff of awstats and google analytics?

    i'been using awstats and it's pretty good, shows enough info. what does analytics have that awstats lacks?
  6. D

    URI only works under "/" in rails context

    in rails context, when I change URI to other values not "/", like "/xyz", rails app doesn't work and say "/xyz" not recognized. I thought lsws will translate everything to under new context root "/xyz". I have a typo blog vhost runs on www.mydomain.com, now I like to run 2nd rails forum app...
  7. D

    like rails process to stay

    When I visit my site when there's no traffic, first page load takes a while, is it possible to set TTL value for ruby lsapi processes so it will stay around a little longer?
  8. D

    htaccess not working

    when enabled htaccess in one html page vhost, browser fails to authenticate and continue to prompt for password. AuthType Basic AuthName "secret" AuthUserFile /data/apps/maint/.htpasswd Require user admin passwd file created by "htpasswd2 -c .htpasswd admin" error log...
  9. D

    500 error when executing lots of sqls.

    under lsws and ruby lsapi, I often get "The size of dynamic response header is over the limit." warning msg when page or controller method contains large amount of sql calls. lsws aborts the request, and lsws returns 500 server error in browser. although all sqls are executed, and controller...
  10. D

    ENV['myval'] is not processed under lsapi

    in my <rail_root>/config/environment.rb, I set several global variables used throughout app. for example: ENV['image_dir'] = '/folder1' ENV['record_click_trail'] = 'yes' when i try use those var in a controller or display the value in a rhtml page, eg, <%= ENV['image_dir'] %> * If rail app...
  11. D

    new VH Template not shown after upgrade

    When fresh install LSWS 2.2 std on a box (opteron 170), VH templates shows rails, php, and central configlog. When upgrade from previous version to LSWS 2.2 std, VH templates still only shows centralconfiglog, missing rails and php template. same after reboot box (pentium4). both box...
  12. D

    best option to run RoR?

    Currently I'm running litespeed in front of mongrel processes, and it works great. Today I just read about the new LiteSpeed RubyRunner (LSRR) and I'm getting confused. which of the 5 options yield the maximum performance? wait, minus fastCGI (too hard for me) and CGI. which of following 3...
Top