Search results

  1. W

    Give us an option to disable Fremius on a server wide basis

    We are very upset about the addition of Fremius in the latest version of your WordPress plugins. We pay for our litespeed licences, we do not want your plugin to do the following : 1) Collect user or usage information (name, e-mail etc.) (will soon be illegal in europe to store EU related...
  2. W

    Limit simultaneous connexions to a specific vhost ?

    Hello, Thant might help, I was actually talking about the throttling static and dynmaic requests, but maybe that's only per IP and not per vhost ?
  3. W

    Limit simultaneous connexions to a specific vhost ?

    Hello, It is possible to specify a different limit of simultaneos connexions (dynamic and static) to a single vhost ? We'd like to set a low number of max connexions to a single customer's vhost without limiting other vhosts on the same server.
  4. W

    Are there still plans to support passenger?

    Good news ! Thanks :)
  5. W

    use litespeed cache only for non logged in users

    Hello, We are trying to use LiteSpeed Cache to fight off a Layer 7 DDOS attack, the attacker targest the pages that use the most ressources (PHP image generation or MySQL calls) and calls these URL's from about 5000 different IP's that often change. This is a custom PHP script so we were able...
  6. W

    Rewrite rule against ddos ?

    Hello again, It seems that I need to put this rule on a virtualhost level. This is what I tried without success in the .htacces file : RewriteCond %{REQUEST_URI} \/cgi\-sys\/defaultwebpage\.cgi RewriteRule .* - [E=blockbot:1,E=dontlog:1] If I create an include for the virtualhost would it be...
  7. W

    Rewrite rule against ddos ?

    Thanks that's what I was looking for and couldn't find. I'll give blockbot:1 a try :)
  8. W

    Rewrite rule against ddos ?

    Hello, I want to do something like this : RewriteRule .* - [F] But with nolog and not answering the call at all (treating it as a bad bot). Can you please remind me how to get litespeed to stop answering the requst completly (not giving 403 error) and not logging the request. I'm asking...
  9. W

    LSLB as a CDN ?

    Great ! I'll give it a try when its available. :)
  10. W

    LSLB as a CDN ?

    Great, I quite sure that that's what other CDN's do. Can I configure LSLB to act as a static file cache server for multilple different litespeed servers without manually adding allowed vhosts ? What I'm interesed in doing is having multiple cPanel servers with LiteSpeed, local visitors will be...
  11. W

    mod_pagespeed porting to litespeed?

    Will users be able to control which mod page speed features / optimisations are enabled ? If so do you plan to add mod page speed related settings to the WP lscache plugin ? This would give it equivalent features as some premium cache plugins !
  12. W

    LSLB as a CDN ?

    Can LSLB cache static files locally ? We would be interesed in setting up 4 or 5 LSLB servers around the world behind a loadbalancing anycast IP address. For this to work, all static files must be cached in memory on the load balancer, so that people in different countries could see a speed up...
  13. W

    Are there still plans to support passenger?

    How is the developpement going ? Is this still on track to be released this year ?
  14. W

    Images swapping on IOS - Litespeed 5.0.19

    Hello, Just a quick note to say that we also had the same problem on some websites. Switching to https solved the problem. Maybe this might help : https://discussions.apple.com/thread/6574663?start=30&tstart=0 Other topics I've found seem to be related to http/2 or the HTTP Pipelining part of...
  15. W

    Hung Process Help

    When this happens can you access php files on that account that don't contain mysql commands (like a simple <?php echo 'hello world' ; ) Can you still access static files ? You could also enable logging and filter by your IP and send the result to litespeeds bugs e-mail address to see if they...
  16. W

    Contact form 7

    Thanks, I think they use the WordPress wp_nonce_field method, so if you could detect the resulting HTML : https://codex.wordpress.org/WordPress_Nonces#Adding_a_nonce_to_a_form Then you could make the esi block work with all plugins and thems that use noonce fileds in their forms. Not sure if...
  17. W

    Contact form 7

    With the WordPress plugin Contact Form 7 you have to disable cache plugins otherwise you can't submit forms (due to WordPress security that adds a hidden field to the form that is related to the visitors ip and is only valid for a sort period). Would it be complicated for Litespeed Cache to use...
  18. W

    [Resolved] Rewrite rule directly in vhost to fix cPanel AutoSSL ?

    It works !!!!! Thanks, you've just saved me hours of manually editing .htaccess files as well as a huge headache with cPanel's idea of automaticaly editing all rules in htaccess files which I can see going awefully wrong…
  19. W

    [Resolved] Rewrite rule directly in vhost to fix cPanel AutoSSL ?

    In the .htaccess this works : <IfModule mod_rewrite.c> RewriteEngine On RewriteCond %{REQUEST_URI} ^\/[A-F0-9]{32}.txt(?:\ Comodo\ DCV)?$ [OR] RewriteCond %{REQUEST_URI} ^\/[0-9]+\..+\.cpaneldcv$ [OR] RewriteCond %{REQUEST_URI} /\.well\-known\/acme\-challenge RewriteCond %{REQUEST_FILENAME} -f...
  20. W

    [Resolved] Rewrite rule directly in vhost to fix cPanel AutoSSL ?

    Hello, We are looking for a way to disable .htaccess rewrite rules if a specific condition si met directly from the vhost. Our idea was to write a rewrite rule that finishes with [L] directly in a vhost include file so other rules are not triggered. The following rule works if added to the...
Top