Search results

  1. N

    Rate limiting and Google bot

    please post an sample 403 log entry here for more info.
  2. N

    Rate limiting and Google bot

    for all accounts. limit static/dynamic reqs/second only slow down access from 1 IP, but won't block the IP. exceed connection soft/hard limit will cause IP being blocked. so try to increase it. on the other hand, the google bot looks very smart, it may adjust the frequency to access websites...
  3. N

    [Resolved] Cannot enable gzip compression.

    please upgrade to latest 4.2.4 refer http://www.litespeedtech.com/litespeed-web-server-release-log.html see if it just fixes your site's issue. in lsws admin console, Server->General->Server Signature: select "Hide Full Header"
  4. N

    I need to execute my cron job with lsphp52

    if you put > /dev/null at the end of command, you may not receive email. >/dev/null is used to mimic "-q" option which not supported by lsphp.
  5. N

    xCache and Litespeed

    how about the phpinfo.php ? also show this error?
  6. N

    I need to execute my cron job with lsphp52

    don't know about Cpanel /var/spool/cron/username yet, not sure if the php52 in the screenshot is the one /path-to-lsws/lsphp52/bin/php ?
  7. N

    xCache and Litespeed

    what's your xcache's version ? http://xcache.lighttpd.net/ latest version 3.0.3 is recommended
  8. N

    Getting a 404 with LiteSpeed Web Server listed on it

    just take a quick look at Page Speed Service https://developers.google.com/speed/pagespeed/service/setup so it's one of your posts showing 404 error, most of them ok, right? for trouble-shoot, if you can switch to apache, try the same post to see if still 404 error. if so, that's not...
  9. N

    PHP 5.5 and ZendOptimizer

    yes, should help, as the error message suggests.
  10. N

    PHP 5.5 and ZendOptimizer

    this may be another issue. does phpinfo.php or hello.php also have 500 error?
  11. N

    I need to execute my cron job with lsphp52

    this option still available: -c <path>|<file> Look for php.ini file in this directory e.g., /path-to-lsws/lsphp52/bin/php -c /path-to-PHPIniDir/myphp.ini
  12. N

    I need to execute my cron job with lsphp52

    so it doesn't support "-q" option. just run /path-to-lsws/fcgi-bin/lsphp-5.2.17 but remove "-q" option, should be ok.
  13. N

    Req in Processing

    it's not likely possible. the lsws built-in "Per Client Throttling" can limit(per user or per IP): Static Requests/second Dynamic Requests/second Outbound Bandwidth (bytes/sec) Inbound Bandwidth (bytes/sec) Connection Soft Limit Connection Hard Limit you can adjust above value to...
  14. N

    PHP 5.5 and ZendOptimizer

    my test result is different with you, I built lsphp-5.5.1 with only "--with-litespeed" option. by default, opcache.so is built --- refer http://www.php.net/manual/en/opcache.installation.php then in php.ini, add one line...
  15. N

    lightspeed restart/reload

    you refer bin/lswsctrl no difference here.
  16. N

    domain causing many 503 error restart

    503 error due to php crash. maybe the wordpress install some special plugins which may crash the php. you can try disable plugins one by one, see if it will get much better or 503 error completely gone. also please check what php extensions are used by the php. can get a list by #grep...
  17. N

    [Resolved] .htaccess problem

    let's test one by one. for enable rewrite log level 9, my test shows: RewriteRule ^tovary\.php - [R=410,L] 2013-07-27 21:34:00.865 [INFO] [192.168.2.125:53459-0#Example] [REWRITE] Cond: Match 'a=1&group_1=&b=2' with pattern 'group_1=&', result: 1 2013-07-27 21:34:00.865 [INFO]...
  18. N

    [Resolved] php.ini

    need get the right php.ini first put a phpinfo() page under document root of a website, access it, then search "Loaded Configuration File"
  19. N

    [Resolved] php.ini

    need create a php.ini yourself or copy php.ini from the php package for example, you compile lsphp-5.3.19 from lsws admin console /usr/local/lsws/phpbuild/php-5.3.19>ls -l php.ini* -rw-r--r-- 1 lsadm lsadm 69606 Nov 21 2012 php.ini-development -rw-r--r-- 1 lsadm lsadm 69627 Nov 21 2012...
  20. N

    error: Connection reset by peer!

    this is by design. please refer: http://www.litespeedtech.com/php-litespeed-sapi.html "LSAPI_MAX_REQS or PHP_LSAPI_MAX_REQUESTS (default value: 10000) This controls how many requests each child process will handle before it exits automatically. Several PHP functions have been identified having...
Top