Search results

  1. M

    [Solved]Rewrite not working as expected for static external redirects

    Hi, I'm trying to do an external rewrite like : http://example.com/example_url => http://other.server.com/http://example.com/example_url The rewrite rule I have tried is : RewriteRule .* http://other.server.com/http://%{SERVER_NAME}%{REQUEST_URI} [R,L] but this just hangs. The...
  2. M

    $VH_ROOT not work properly at server level

    Hi, At the server level, I added the following entry into the Apache-style settings: php_value open_basedir "$VH_ROOT/public:$VH_ROOT/includes" The resulting open_basedir value though held the server's prefix not the $VH_ROOT. If I add this entry at the template level, it works as...
  3. M

    Context without trailing slash is ignored

    Hi, I have defined a context /login, with some settings and rewrite rules inside. When I try to access the page at http://mysite.com/login the URL is checked in the rewrite rules at the VHOST level, but not the context level. A redirection is then sent to http://mysite.com/login/...
  4. M

    Proxying without URL encoding

    Hi, Is there any way to proxy a request without URL-encoding '&' and '='? I'm having problems with some backends because of it. Thanks.
  5. M

    Changing virtual host names requires restart to fix

    Hi, If I do the following (in order): 1) Start a virtual host (instantiated) listening on an address/port 2) Change the name of the virtual host to something else 3) Remove the virtual host from the listener and add a different virtual host to the listener 4) Do a graceful restart I get the...
  6. M

    Using SHMTL file in VH gives signal 11 on child process

    Hi, I'm experiencing a problem with versions 4.0b2 and 4.0b3 when using SHTML files on virtual hosts. When I try to access an shtml file in a normal virtual host, I get the following error in my server log and no content is sent to the client. However, if I use exactly the same configuration...
  7. M

    Rewrite fetch file flag?

    Hi, I was wondering whether there's an option with the rewrite rules to completely stop all rewrites and try to fetch the file. My current (context-specific) rewrite rules are: RewriteCond %{REQUEST_URI} .shtml$ RewriteRule .* - [L] RewriteCond...
  8. M

    RewriteRules deleted

    Hi, When trying to edit any of the three sections in the virtual host rewrite section (i.e. Rewrite Control, Rewrite Map and Rewrite Rule), when the settings are saved to one, the settings from the other two sections are deleted. Also, when I add a RewriteRule, it automatically sets the rules...
  9. M

    c/c++ shared modules as plugins

    Hi, Have you thought about allowing people to develop their own c/c++ shared modules that they could plug-in to your server? You could create an appropriate API for creating shared modules, perhaps by creating a set of standard c/c++ structures that programmers program to and include some...
  10. M

    JSP vs PHP

    Hi, I'm interested in the performance of using JSP's over PHP with Litespeed. I have a few questions: 1) Using a bytecode cache like eAccelerator for PHP and the LSAPI, how does the typical performance of JSP's compare - specifically on pages-per-second (I realize that this is a hard...
  11. M

    FreeBSB vs Linux

    Are there any performance comparisons of Litespeed on FreeBSD vs Linux? If so, what were the conclusions? Thanks.
  12. M

    Multi-language content negotiation

    Hi, Are you planning on implementing multi-lingual content negotiation, e.g. by having files like index.en.html, index.fr.html or index.html.en, index.html.fr ? Being able to let the web-browser handle content (including cached content) based on the language(s) set in the...
  13. M

    Xslt

    Hi, Is there a plan to include XSLT support into Litespeed, and if so, any idea about when it might be implementable? Thanks.
  14. M

    Load-balancing

    Hi, Is there any way of load-balancing connections to LSAPI / FCGI / other proxied servers from LSWS without using the Litespeed load balancer or putting a separate load-balancer in front (or behind) LSWS? Thanks.
  15. M

    Location-based error pages

    Hi, Is it possible to have customized error pages based on the location in Litespeed? By this I mean e.g. /search > 404=/errors/search_error.php 404=/errors/general_error.html Is this possible through .htaccess files? What is the typical performance penalty for using .htaccess...
  16. M

    Passing to another proxy on Litespeed

    Hi, I was just wondering what happens when litespeed proxies a request to another 'server' which is in fact the same instance of Litespeed (but a different named server or port or both). Is the request checked internally by Litespeed (e.g. by checking on a table of which IP/port combinations...
  17. M

    PHP 6 compilation problem

    Hi, I'm trying to compile the latest development version of PHP (as of writing it is 200807292030). I've tried to compile PHP with the options --with-litespeed --with-icu-dir=XXX When compiling, the last few lines give the following errors: ... sapi/litespeed/lsapi_main.o: In...
  18. M

    Rewrite hashes / external programs

    Hi, I was just wondering why your rewrite engine doesn't include Apache's features for hashes and external program rewrites. Is it because of performance? Are you thinking about extending it at any time to include these features? Thanks.
  19. M

    Sub-feature request : SSI's in parallel

    Hi, I'm not sure what you're planning on doing with your SSI implementation, and I assume that you're planning on doing so anyway, but if not I'm guessing it would probably be a good idea to process SSI requests in parallel for speed (with the ability to block parallel processing if...
  20. M

    Feature Request: Memcached context

    How about having a context that uses Memcached? Requests could be forwarded on to a Memcached cluster, in a similar way to the memcached module in NginX / Apache. Apart from caching whole pages, when SSI's are fully implemented, it would allow for the quick piecing together of page parts...
Top