Search results

  1. A

    Under DDoS need assistance

    in this case,the example setting Static Requests/second:10 Dynamic Requests/second:2 is just what you want. the 2nd command output didn't look right on your box. change to netstat -nt|awk '{print $5;}'|awk -F ':' '{print $1;}'|sort|uniq -c|sort -nr|head will display the top 10 IPs...
  2. A

    Under DDoS need assistance

    please share what's the output of: (1)netstat -nt|grep ESTABLISHED|wc (2)netstat -nt|awk '{print $5;}'|awk -F ':' '{print $1;}'|sort|uniq -c|sort -r|head to set, go web admin console: Configuration->Server->Security->Per Client Throttling: (for example) Static Requests/second:10 Dynamic...
  3. A

    Proxy Setup for LiteSpeed

    web server setting example: Name: abcd_server Address: 11.22.33.44:80 Max Connections:100 Connection Keepalive Timeout:60 Initial Request Timeout (secs):10 Retry Timeout (secs):3 Response Buffering:No Other fields can be empty. for step 2, I'm managing a dedicated server, so I...
  4. A

    Proxy Setup for LiteSpeed

    yes, follow the document will do: step 1:define a "Web Server" External App: http://www.litespeedtech.com/docs/webserver/config/extapps/ "External Application: Web Server is a server application that supports HTTP 1.0/1.1 protocols. LiteSpeed web server can serve as a transparent reverse proxy...
  5. A

    php sense that user has quit downloading

    so it looks you're writing a php script to act as "flv proxy" between youtube and client. out of my knowledge :( however your request become clear. I think need know the detail steps how web server(here lsws) steam .flv to client. I guess flash player(at client side) request range...
  6. A

    php sense that user has quit downloading

    how about php session?
  7. A

    litespeed, chmod conf file to 600

    at the user's phpbb3 forum root, put phpinfo.php, check php version, 4 or 5.2.9? yes, should be.
  8. A

    litespeed, chmod conf file to 600

    this is for .php5, how about .php ?
  9. A

    User not creating session or cache files.

    maybe php.ini different under root and user? to check: cd $SERVER_ROOT/fcgi-bin ./lsphp-5.2.9 -i|grep "php.ini" under root and user respectively.
  10. A

    Quick redirect

    there is a simple way to do this, FYI: assume your document root /public_html rename to /public_html.bak recreate /public_html put only maintain.html under the new root. and configure the 404 error page pointing to it.
  11. A

    mod_rewrite .htaccess phpbb3 SEO - problem

    don't look right. should it be ??? can you give an example URL to demo the issue? the output of Apache and litespeed.
  12. A

    404 error on 4.0.4

    maybe a bug ... need know which rule in .htaccess causes 404 error.
  13. A

    404 error on 4.0.4

    can you post .htaccess here? or refer http://www.litespeedtech.com/support/forum/showthread.php?t=3093 looks like similar/same issue
  14. A

    4.0.4 update not available in admin panel

    assume you have installed LSWS in /usr/local/lsws run install.sh to install 4.0.4 to the same directory - /usr/local/lsws it'll prompt you to upgrade or not. just type "Yes"(following the instruction). then it's an upgrade not an fresh installation. Just have a try, it won't break...
  15. A

    4.0.4 update not available in admin panel

    http://www.litespeedtech.com/docs/webserver/install/ Installation/Uninstallation
  16. A

    Error 503 with PHPBB

    is it a busy server / what version of LSWS are you using / what's the setting of Server-->External App-->LSAPI App / any log in server log ...etc, more specific info needed to identify the problem. There are many possibilities to cause the general 503 error.
  17. A

    Problem with mod_rewrite

    I have a question regarding "when I protect admincp with htaccess", how you did it? I'd see if I can reproduce the problem.
  18. A

    async io writeav setting

    already there for a few days? http://www.litespeedtech.com/support/forum/showthread.php?t=2152&page=3
  19. A

    eAccelerator help! How to install it, php in web admin console

    run www.yourdomain.com/phpinfo.php to find out the right php.ini from "Configuration File (php.ini) Path" then made the change as MindTooth mentioned.
  20. A

    RemoveHandler

    regarding RemoveHandler, by apache document: http://httpd.apache.org/docs/2.3/mod/mod_mime.html#addhandler RemoveHandler can also be overrided by AddHandler as long as AllowOverride FileInfo is set.
Top