Search results

  1. K

    keepalive

    bump bump bump
  2. K

    keepalive

    hello, i have these settings: Max Keep-Alive Requests 2 Smart Keep-Alive No Keep-Alive Timeout (secs) 1 i have a php script that redirects to another file on the server so main request then the file it redirects to = 2 requests second load correctly gets connection: close instead of...
  3. K

    litespeed web proxies

    it's a extremely modified copy of the php script called glype http://www.glype.com/ here's a screenshot from today when i fooled the load balancer into thinking one server was full so it would send all requests to one server http://i25.tinypic.com/osd103.png got to 66.1 Mb/s (66.1%)...
  4. K

    litespeed web proxies

    I run many web proxies designed to help people with censored internet access -- a list of them can be found on https://camolist.com (this page is on a apache vps but ALL links on it go to sites hosted with litespeed--my vps does not get much traffic but if ever needed it i'll get litespeed vps)...
  5. K

    when max connections reached redirect

    <? header('Content-Type: text/plain'); preg_match('/'.preg_quote('o]: REQ_PROCESSING: ').'([0-9]{1,3})/',file_get_contents('/tmp/lshttpd/.rtreport'),$matches); header('Content-Length: '.strlen($matches[1])); echo $matches[1]; ^ rtreport.php on video.1-5.site.com then site.com checks...
  6. K

    when max connections reached redirect

    :-/ guess i'll go with dns round robin then just wish something like this was possible to make sure all servers are used to their max (round robin can easily send more traffic to one server than another)
  7. K

    when max connections reached redirect

    say i have 3 servers 1.media.com 2.media.com 3.media.com i have max connections on each of them set to 75 once max connections is reached on 1.media how can i do a header redirect to 2.media.com ?
  8. K

    Page timeout when process hung

    if your script uses sessions put session_write_close(); as early on in your script -- just after the last use of a $_SESSION variable
  9. K

    "Apply Changes / Graceful Restart" change?

    yes that was a typo on my part but it's still not the claimed "5 minutes" and i see no reason for it not to let it completely finish (say a 2 gb file is being downloaded whats the point in just giving 5 minutes...)
  10. K

    "Apply Changes / Graceful Restart" change?

    pretty sure this shows it waiting 20 seconds then killing the old processes connections why not let them finish.. 2009-08-05 00:42:25.741 [NOTICE] Server restart request from admin interface! 2009-08-05 00:42:25.742 [NOTICE] [Child: 3347] Start shutting down gracefully ... 2009-08-05...
  11. K

    "Apply Changes / Graceful Restart" change?

    if i have a download going and do a graceful restart it ends immediately no 5 minutes given for it to finish it's like this on 3.x 4.0 and 4.1rc -- enterprise and standard versions and has been like this as long as i can remember on 5 different servers EDIT:--- looks like in 4.1rc it gives...
  12. K

    "Apply Changes / Graceful Restart" change?

    with php requests? if i do a graceful restart the connections graph/stat goes right to 0 --- all downloads get reset (downloads are handled dynamically)
  13. K

    "Apply Changes / Graceful Restart" change?

    any chance in a future update you can make the graceful restart keep the old process running until all transfers have finished while starting a new one (with the updated configuration) for all new connections? i hate rebooting the server while 150-200 people are in mid download of a video file...
  14. K

    php sense that user has quit downloading

    i do not think there would be anyway with a php session "$ch = curl_init(base64_decode($_GET['url'])); curl_setopt($ch, CURLOPT_BINARYTRANSFER, 1); curl_setopt($ch, CURLOPT_HEADER, 0); curl_exec($ch); curl_close($ch);" is the idea i am using (shortened it to make it easy to understand in...
  15. K

    php sense that user has quit downloading

    any way for php to sense that the user is no longer downloading a file / connected with litespeed? if a user leaves a page php will just keep processing and in my application this is a waste as it is a common occurrence
  16. K

    4.0 RC1 release

    i've been running this on my 3 servers now for a week -- no problems at all great job! :)
  17. K

    4.0b3 release

    pages are loading only partially on sites and in the panel (the ip i gave you)/config/confMgr.php?m=serv look at the bottom if you dont see what i am saying reload a few times --- i am getting the same results on the sites on that server as well specifically failing at 16,384 bytes into the...
  18. K

    4.0b3 release

    are you still doing anything to the server? the panel is responding very slowly along with the websites on it -- this has only happened since you worked on the version 4 also its showing up "Running short of concurrent connections." warnings
  19. K

    4.0b3 release

    alright the info is sent
  20. K

    4.0b3 release

    downloaded and installed but am still getting the problem and had to go right back to 3.3.22 got 46 copies of this in my email "At [05/Dec/2008:15:52:51 -0600], web server with pid=11873 received unexpected signal=11, no core file is created. A new instance of web server will be started...
Top