Terrum Posted January 27, 2009 Share Posted January 27, 2009 I still am an idiot when it comes to apache configuration, I'm fine with everything else. But i'm wondering how do I make it so the download and upload is faster on my http apache server? Everyone only gets around 50kb/s even when they live very close to me. Is there a setting? Thanks. Note: I do know i have the correct internet speed and ISP to make this faster, So no questions/warnings about that, Just to save you time. Thanks (I have high internet connection, speed test image below) Quote Link to comment https://forums.phpfreaks.com/topic/142684-making-downloadupload-faster/ Share on other sites More sharing options...
corbin Posted January 28, 2009 Share Posted January 28, 2009 486kb/s is only 60.75KB/s, which is very slow in the big scheme of things. By default, Apache shouldn't be limiting your upload speed, so unless it's on their end, it's your connection. Also, your speed is of course split between everyone. If there are 5 people on at a time, they will each get around 12KB/s. (You could of course have a router setting or something, but I doubt that's it.) Quote Link to comment https://forums.phpfreaks.com/topic/142684-making-downloadupload-faster/#findComment-748198 Share on other sites More sharing options...
Terrum Posted January 28, 2009 Author Share Posted January 28, 2009 My upload isn't shared. 486kb/s is only 60.75KB/s, which is very slow in the big scheme of things. By default, Apache shouldn't be limiting your upload speed, so unless it's on their end, it's your connection. Also, your speed is of course split between everyone. If there are 5 people on at a time, they will each get around 12KB/s. (You could of course have a router setting or something, but I doubt that's it.) My upload isn't shared. I use all this on one PC, no router, It's directly connected to the modem. And even if apache doesn't limit it by default, is there still a way to find out how to limit it or weather it is limiting it with a configuration? Quote Link to comment https://forums.phpfreaks.com/topic/142684-making-downloadupload-faster/#findComment-748596 Share on other sites More sharing options...
corbin Posted January 28, 2009 Share Posted January 28, 2009 And even if apache doesn't limit it by default, is there still a way to find out how to limit it or weather it is limiting it with a configuration? You would most likely be using a 3rd party extension to do so, and you would know if you installed it. lol. If I had to guess, I would just say your connection is slow. Quote Link to comment https://forums.phpfreaks.com/topic/142684-making-downloadupload-faster/#findComment-748682 Share on other sites More sharing options...
Terrum Posted January 28, 2009 Author Share Posted January 28, 2009 And even if apache doesn't limit it by default, is there still a way to find out how to limit it or weather it is limiting it with a configuration? You would most likely be using a 3rd party extension to do so, and you would know if you installed it. lol. If I had to guess, I would just say your connection is slow. Well just incase my installation had a config in it what limits the speed, I guess no one on this forum is going to help me with my question then which i expected a simple answer for just to find out how to change the limits etc (even if i might have wanted it limited) But if you wont give straight answers then i'll ask elsewhere then. Quote Link to comment https://forums.phpfreaks.com/topic/142684-making-downloadupload-faster/#findComment-748839 Share on other sites More sharing options...
corbin Posted January 28, 2009 Share Posted January 28, 2009 Fine suit your self. As parting words though: Look for any extension that sounds like it might limit bandwidth. Quote Link to comment https://forums.phpfreaks.com/topic/142684-making-downloadupload-faster/#findComment-748853 Share on other sites More sharing options...
.josh Posted January 28, 2009 Share Posted January 28, 2009 If you don't know how to do it or where to look then how do you know whether or not it's a simple answer? Quote Link to comment https://forums.phpfreaks.com/topic/142684-making-downloadupload-faster/#findComment-748860 Share on other sites More sharing options...
PFMaBiSmAd Posted January 28, 2009 Share Posted January 28, 2009 If you do have something installed in Apache, do as corbin suggested and examine your httpd.conf to see what extensions are being loaded. The most likely candidate is mod_throttle, depending on what operating system you are using. Edit: A couple other possible choices - mod_bwshare, mod_bandwitdh Quote Link to comment https://forums.phpfreaks.com/topic/142684-making-downloadupload-faster/#findComment-748890 Share on other sites More sharing options...
premiso Posted January 28, 2009 Share Posted January 28, 2009 My upload isn't shared. 486kb/s is only 60.75KB/s, which is very slow in the big scheme of things. By default, Apache shouldn't be limiting your upload speed, so unless it's on their end, it's your connection. Also, your speed is of course split between everyone. If there are 5 people on at a time, they will each get around 12KB/s. (You could of course have a router setting or something, but I doubt that's it.) My upload isn't shared. I use all this on one PC, no router, It's directly connected to the modem. And even if apache doesn't limit it by default, is there still a way to find out how to limit it or weather it is limiting it with a configuration? So you are running this test via a local machine right? Your cable company sets limits on how much you can upload and download. If you are throttled at 60KBps upload, you will not be able to configure apache to be faster. Simple dynamics of the internet. Your download may be 700KB/sec, but the upload is not near that. Also remember that the more users who use that site the slower the connection is going to be. So if say 4 users are downloading from you, I doubt that they would get more than 15-20KB/sec download. In that speed test, 486kbps is kilobits per second, not KiloBytes, that is roughly 48.6KiloBytes per second, not that fast at all. Most production webservers use T3 or greater lines (it is probably better than T3 now, but I am not sure of the technical term, so T3 will work), which have the capability to handle that and push data out at 100mbps+ from their server to multiple users. You may be at 10mbps on download but are only at .4mbps on your upload. Learn the basics of the internet, a normal household connection can not actively run a site that has alot of users due to this. That is why there are servers out there and they cost a lot of money per month. Just to put this in perspective here is how stuff is layed out: ***NOTE the lowercase kb and the upper case KB same with mb and MB, there is a difference) 1kbps = 1 kilobit 1KBps = 1 KiloByte (1,000 kb) 1mbps = 1 megabit (100,000 kb or 100KB) 1MBps = 1 MegaByte (1,000 KB) etc. So looking at that speed report, you have a nice download (1MBps), which works if users are uploading to you. They should not have a problem with that. But them retrieving files from your server (46KBps) is very slow and that maxes their speed, and each user that connects to download from you take that and divide it in half. Hope that helps you understand, but as I said, this is internet basics. You should read up on it. EDIT: And a simple search of the terms "apache limit bandwidth" in google pulled up this result: http://www.whoopis.com/howtos/web-bandwidth-limit.html EDIT: I am not claiming that the text above is 100% correct, but it is more just to give you an idea of what is going on, as stated above for the correct lingo etc do the research. Quote Link to comment https://forums.phpfreaks.com/topic/142684-making-downloadupload-faster/#findComment-748899 Share on other sites More sharing options...
corbin Posted January 28, 2009 Share Posted January 28, 2009 Errrr.... Premiso, generally, the scale is by 1024, not 1000. (Although some people say kb = 1000b, Kb = 1024b.) Quote Link to comment https://forums.phpfreaks.com/topic/142684-making-downloadupload-faster/#findComment-748956 Share on other sites More sharing options...
premiso Posted January 29, 2009 Share Posted January 29, 2009 Errrr.... Premiso, generally, the scale is by 1024, not 1000. (Although some people say kb = 1000b, Kb = 1024b.) Yea, I know. But for the purpose of easy understanding it is better to leave the 24 off imo People do better with round numbers for some weird reason lol. Quote Link to comment https://forums.phpfreaks.com/topic/142684-making-downloadupload-faster/#findComment-749195 Share on other sites More sharing options...
corbin Posted January 29, 2009 Share Posted January 29, 2009 In that speed test, 486kbps is kilobits per second, not KiloBytes, that is roughly 48.6KiloBytes per second, When ever you get into the higher numbers, it can make a difference: 486/10 = 48.6 486/8 = 60.75 % Error: 20 (That was 8 instead of 10, but same concept.) But I'm just being picky now ;p. Quote Link to comment https://forums.phpfreaks.com/topic/142684-making-downloadupload-faster/#findComment-749201 Share on other sites More sharing options...
premiso Posted January 29, 2009 Share Posted January 29, 2009 But I'm just being picky now ;p. Picky...or a post whore? lol Quote Link to comment https://forums.phpfreaks.com/topic/142684-making-downloadupload-faster/#findComment-749213 Share on other sites More sharing options...
corbin Posted January 29, 2009 Share Posted January 29, 2009 What reason do I have to be a post whore? Quote Link to comment https://forums.phpfreaks.com/topic/142684-making-downloadupload-faster/#findComment-749219 Share on other sites More sharing options...
premiso Posted January 29, 2009 Share Posted January 29, 2009 What reason do I have to be a post whore? To get the 'Insane!' to display instead of 'Fanatic' ??? Quote Link to comment https://forums.phpfreaks.com/topic/142684-making-downloadupload-faster/#findComment-749222 Share on other sites More sharing options...
corbin Posted January 29, 2009 Share Posted January 29, 2009 I'm perfectly happy just being a Guru ;p. Quote Link to comment https://forums.phpfreaks.com/topic/142684-making-downloadupload-faster/#findComment-749236 Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.