Search results

  1. M

    FilesMatch & php .htaccess options

    Do you mean "Redirects" function in the "domains" section? Or something else?
  2. M

    Exceeding the maximum dynamic response body size?

    Glad you make it work, it is 100 times more efficient. I think it should work with range request.
  3. M

    Imagemagick

    I think openbase_dir is the problem, just load a phpinfo() page see if openbase_dir is there? You can edit the httpd.conf directly to comment out the openbase_dir configuration for that vhost.
  4. M

    Exceeding the maximum dynamic response body size?

    Just create a static context or use "Alias" directive in Apache httpd.conf to make the file accessible. we can put the change in 4.0.4 release. the next build could have the change.
  5. M

    Advise please

    You should create a listener for the dedicate IP that the high traffic site uses, bind multiple processors to that listener. If the site is powered by PHP, make sure you have a php opcode cache installed. If some page can be cached, you can start to think of using the page cache function in...
  6. M

    Exceeding the maximum dynamic response body size?

    If what the PHP script do is to stream some media file after authentication, you can use our internal redirect, the target URL is invisible to end-user. http://www.litespeedtech.com/support/wiki/doku.php?id=litespeed:wiki:feature:internal_redirect I think we can up the limit to 2GB in our next...
  7. M

    Rails Subdomain Caching

    You need to add a new rule like RewriteRule ^([^.]+\.css)$ /cache/%{HTTP_HOST}/$1
  8. M

    FilesMatch & php .htaccess options

    How do you make cPanel create rule like that? The default rule does not look right, as it redirects request with "domain.com" to http://domain.com/, so it causes loop redirections. I don't know why Apache does not cause loop redirection with it. We need to investigate.
  9. M

    503 error with Rails 2.3.2

    Please check the RailsRunner.rb in the latest 4.0.x release, it should be compatible with both v2.2 and v2.3. You may need to explicitly specify the rails version with "RAILS_GEM_VERSION" in environment.rb if you want to use rails 2.3.x
  10. M

    right_aws gem not recognized - 503 Service Not Available

    sorry, a typo, should be the "right one". Does "gem list" show "right_aws"? Maybe it was installed as a user level gem, not a system level gem.
  11. M

    right_aws gem not recognized - 503 Service Not Available

    You may have multiple ruby install, make sure to use the right now, check it under "Server"->"Rails" tab.
  12. M

    Rails Subdomain Caching

    If you use those rule at vhost level, rules look correct. if you use those rule at context level, you need to get rid of the leading "/" as RewriteBase has been removed from URL before matching the Rule. Enable rewrite log and check the error.log if rules does not work as expected. Rails page...
  13. M

    cache function ?

    No, not possible to monitor the cache status at this moment. May add it to the real time report in the future release.
  14. M

    FilesMatch & php .htaccess options

    php_value inside <FilesMatch> was ignored. You can download and try the latest 4.0.4 build, it should work now.
  15. M

    cache function ?

    If you think LSWS does not cache certain page, you need to check the request/response header see if anything prevent the page being cached. Request with Query String? Request Cookie? Response Cookie? Request cache-control? response cache-control? If you think a page can be safely cached even...
  16. M

    FFMPEG not working after switch to litespeed

    Have you built lsphp5 matching that for Apache? phpinfo() from LSWS should show similar output as that from Apache.
  17. M

    accessing the waitq variable with php

    You can parse /tmp/lshttpd/.rtreport for now.
  18. M

    Shared SSL?

    How do you do it with Apache? Do the same.
  19. M

    What does this mean?

    You run /usr/local/apache/bin/httpd as non-root user, you can ignore those messages.
  20. M

    503, but no logs, or explanation...

    You should try the 4.0.4 build by changing the version number in the download link. With earlier release, you may get 503 error during application startup when Rails app was started on demand and the frame work takes more than 15 seconds to initialize. 4.0.4 should take care of it. You can set...
Top