Search results

  1. N

    What settings for maximum speed on a large configuration ?

    Static Requests/second :0 Dynamic Requests/second :0 Outbound Bandwidth (bytes/sec):0 Inbound Bandwidth (bytes/sec):0 Connection Soft Limit: very large number Connection Hard Limit: very large number will disable the Throttling
  2. N

    [solved] FileEtag in LSWS 4.2.2

    the server's setting can be overwritten by settings in .htaccess any setting in .htaccess ? to be sure, in your .htaccess, you can put for example <Files "*.jpg"> FileETag None </Files> to remove etag.
  3. N

    [solved] FileEtag in LSWS 4.2.2

    in addition to apache's way http://httpd.apache.org/docs/2.2/mod/core.html#fileetag can set it at server level in GUI: lsws admin console->Server->Tuning->File ETag
  4. N

    What settings for maximum speed on a large configuration ?

    while no environment to experiment with this, it looks litespeed is behind apache and handle the requests passed from apache, but connection between apache and litespeed closed by litespeed in some cases. need tune 1)lsws admin console -> Server -> Tuning -> Connection not sure if disable...
  5. N

    What settings for maximum speed on a large configuration ?

    since 4.2.2 is out, can you try 4.2.2 see if issue still there ? in 4.2.2 release log: http://www.litespeedtech.com/litespeed-web-server-release-log.html "Improved mod_security compatibility with gotroot ruleset"
  6. N

    [Resolved] Apache VHost GEOIP Country logging

    per http://httpd.apache.org/docs/2.2/mod/mod_log_config.html should be %{GEOIP_COUNTRY_CODE}e litespeed already support it, please confirm or test
  7. N

    [solved] Problem with SoapClient and LiteSpeed

    then strace lsphp5 process when access the php script in browser, check the output of strace, you may get clue there.
  8. N

    [solved] Problem with SoapClient and LiteSpeed

    command line lsphp5 and exteral app lsphp5 may pick up different php.ini. to confirm, check if open_basedir are same value #/usr/local/lsws/fcgi-bin/lsphp5 phpinfo.php |grep open_basedir and in browser, access domain.com/phpinfo.php and search open_basedir
  9. N

    [solved] Problem with SoapClient and LiteSpeed

    searched the net, your script may need access /etc/hosts so, check open_basedir, it blocks reading /etc/hosts, disable open_basedir
  10. N

    How to stop hot linking

    while attachment can be embedded elsewhere, can it be downloaded ?
  11. N

    How to stop hot linking

    I'm not familiar with CPanel Hot Link protection yet. but it can be easily to do in .htaccess. here's an example: RewriteEngine on RewriteCond %{HTTP_REFERER} !^$ RewriteCond %{REQUEST_FILENAME} -f RewriteCond %{REQUEST_FILENAME} \.(gif|jpe?g?|png|swf|flv|mp4|mp3)$ [NC] RewriteCond...
  12. N

    Suspicious File Alert

    please continue monitoring the server. report if any new issue.
  13. N

    [solved] Timthumb + Visual Editor not working

    what's the theme's name? can get it for free ? so we can try on our local wordpress installation.
  14. N

    How to stop hot linking

    the post is not complete yet, can you complete it first ?
  15. N

    Litespeed blocks HTTP PATCH requests, Error 400

    you can manually download 4.2.2 now, see if it's working as expected. just change the version number in current 4.2.1 official download link.
  16. N

    What settings for maximum speed on a large configuration ?

    during restart, please run #pstree -p then you'll get the idea how graceful restart works. you'll see 2 trees which root is litespeed process. with the info of "pstree -p", at least can know 503 error is under which tree -- new or old.
  17. N

    What settings for maximum speed on a large configuration ?

    the settings looks normal except Retry Timeout(secs), usually I leave it to default 0. I think we've got some progress by your tests. so the 503 error is narrowed down to "Suexec deamon + Xcache 3.0.1" combination only and 50% possibility to happen. yes, I think this is the right path to...
  18. N

    What settings for maximum speed on a large configuration ?

    this issue is not a known issue, so I don't reply you at once. this looks a nice clue and I actually did simple tests in daemon mode, tried to reproduce 503 error --- but failed. not sure if it's ok for you to run short time tests on your production server. e.g., switch to non-daemon mode...
  19. N

    Redirect not work

    if in .htaccess, try following: RewriteEngine On RewriteCond %{HTTP_HOST} ^grafjo\.com$ [OR] RewriteCond %{HTTP_HOST} ^www\.grafjo\.com$ RewriteRule ^(.*)$ http://www.grafjo.net/$1 [R=301,L]
  20. N

    What settings for maximum speed on a large configuration ?

    have you touched following default setting ? Server->General->Graceful Restart Timeout (secs)
Top