Upload means sending of data from a local system to a remote system such as a server or another client with the intent that the remote system should store a copy of the data being transferred.
Questions tagged [upload]
340 questions
2
votes
0 answers
iptables & tc limit both upload & download together
I have the following for iptables & tc but it limits the upload speed to 2Mbits once the quota of 1GB has been hit.
iptables -t mangle -A POSTROUTING -o eth0 -p tcp -m owner --uid-owner aaron -m quota --quota 1073741824 -j ACCEPT
iptables -t mangle…

whisky
- 121
- 2
2
votes
2 answers
File uploads and client_max_body_size in nginx + gunicorn + django
I need to configure nginx + gunicorn to be able to upload files greater than the default max size in both servers.
My nginx .conf file looks like this:
server {
# ...
location / {
proxy_pass_header Server;
proxy_set_header…

carlosescri
- 171
- 1
- 2
- 6
2
votes
3 answers
Auto upload to FTP server
I have two users local to an office that need to scan documents then have them automatically upload to their remote Terminal Server. I can set the scanning software to save the files to a certain folder, but I would like to automatically upload them…

Radix
- 33
- 1
- 5
2
votes
1 answer
load balancing between 2 FTP servers
I am trying to load balance ftp between 2 servers. currently 2 servers are pointed to ftp.domain.com, the second server is technically used for fault tolerance but I want to balance traffic between the 2 servers. How can I achieve this? I thought of…

Ahoura Ghotbi
- 147
- 2
- 10
2
votes
2 answers
How does sftp replace files?
For example I have some http static server. I'm working with .js files via sftp. Keeping them sync.
I'm wondering if .js file is replaced instantly or if the stfp server will write into that file as a stream?
So for example:
client started…

Somebody
- 364
- 1
- 6
- 17
2
votes
2 answers
How to Check Download/Upload Speed to Web Server?
I have a web server in the US (MS Windows 2008).
Chinese users are complaining of slow speeds and SQL command timeouts. Other Asian and European users are not.How do I check the speed (download/upload) from Beijing to this particular web server?

Administrateur
- 133
- 1
- 4
2
votes
1 answer
Apache - How to log the file name and size of file uploads
I want to keep some statics about the files uploaded to my server, including the file name, size and response time.
I use PHP to handle the uploads in the server side (client-side is a POST form) but ideally I'd like to use Apache's logging…

Vasilis
- 293
- 1
- 4
- 13
2
votes
1 answer
What happens to partially uploaded files?
Sometimes users would upload a very large file such as 10MB or so and it fails in the middle because one reason or another. My question is, what happens then?
For example, if it fails at the 5MB mark - permanently failed because of failed internet…

datasn.io
- 279
- 1
- 5
- 16
2
votes
1 answer
nginx large file upload gives HTTP Error 413 Request entity too large in rails
I trying to build a rails application to upload large video file which will be hosted at s3.amazonaws.com server it works fine with smaller file but gives 413 Request entity too large error for large file (around 30MB). I change my nginx…

Chittaranjan Nayak
- 21
- 1
- 2
2
votes
2 answers
Secure upload of big files to Ubuntu server
I need to allow my users an easy way to create a directory and upload a few files to this directory on my Ubuntu server. I also need this to comply with the following requirements:
Must use the local users for authentication (would also be nice if…
2
votes
2 answers
Combine VPN bandwith over two or more WAN connections? Load balancing?
Imagine you only have DSL with 5mbps Down and 2mbps Up.
Is it possible to have 10 of these for example and combine them in a way that would increase the upstrean bandwidth to one server?
In my head it works like this:
intranet with one…

nana
- 143
- 1
- 8
2
votes
1 answer
nginx: upload progress and rewrite clauses
I'm using nginx with upload progress extension and some rewrite-clauses. Everything works fine, as long as my upload form uploads to a php file (
2
votes
1 answer
Measure Upload Speed between a client and our server
We host a SAAS application specially customized for multiple clients. For one customer in particular -- they are reporting sporadic performance issues from various locations on their network, in particular UPLOADING documents through a form on our…

tresstylez
- 378
- 1
- 4
- 17
2
votes
1 answer
What cause high CPU usage on the server during file upload
When I try to upload a huge file size (approx 2GB), the server cpu usage goes really high. What should I do to fix this?
I just use standard html form and php, for file upload.
I'm sorry if I post on the wrong forum. Please point me to the right…

bosiang
- 21
- 1
- 3
2
votes
0 answers
File uploads restart at 30 minutes in IIS 7
The Problem
The issue is that uploading a file that takes more than 30 minutes will fail in an unusual way. I've been using Google Chrome for my testing and almost exactly at the 30 minute mark (the amount uploaded does not matter, it always happens…

btaves
- 21
- 2