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
0
votes
2 answers
Nginx simple PUT file
I have set the following configuration:
location /upl {
root /storage/www/upl/data;
client_body_temp_path /storage/www/upl/client_tmp;
dav_methods PUT DELETE MKCOL COPY MOVE;
create_full_put_path on;
…

Lonko
- 115
- 1
- 5
0
votes
0 answers
502 Bad Gateway when uploading files (NGINX and NodeJS)
I am developing an app where the user can upload files.
While the backend call seems to work fine, the call when uploading files returns a 502 Bad Gateway message.
The files actually get uploaded but the error message comes up.
I think it has…

lnband
- 1
- 1
0
votes
2 answers
Uploads failing with no reason
I've been trying to discover a problem on my webserver which simply makes the upload of files fail. I also created a simply php script to test the upload, and when uploading it fails but I don't get any sort error or log message. The file I've been…

Claudio
- 111
- 3
0
votes
1 answer
Nginx error 403 on file upload - passing multipart/form-data to the proxy/server
I have a very simple Nginx server that forwards traffic from subdomain to my http server on port 8000 like so :
server {
listen 80;
server_name *.localhost;
location / {
proxy_pass http://localhost:8000;
…

jayD
- 101
- 1
- 2
0
votes
1 answer
Display true filesize upload limit in PHP applications when setting it via nginx
As discussed in many threads, I have set
client_max_body_size 2M;
in my /etc/nginx/nginx.conf
and
client_max_body_size 100M;
in one of my virtual hosts config.
And it works, as in the upload of files >2MB fails on virtual hosts than don't have…

MultiformeIngegno
- 1,687
- 9
- 26
- 31
0
votes
1 answer
Couldn't upload files to Sharepoint site while passing through Squid Proxy
we have this issue: one of our employees is collaborating with a supplier and he needs to upload documents on a Sharepoint site hosted on the supplier's main site. In our environment we use Squid Proxy to allow people navigate on the net (we have…

Ecio
- 121
- 3
-1
votes
1 answer
Upload speed to Google Cloud machine is 1.1Gbps
I use GCP VMs very often. Create and delete once chunk of work is done. I need to upload large data file every time.
Consistently it uploads at 1.1Gbps average speed. Internet connection is 80Gbps (verified). Machine is in local to me region…

Boppity Bop
- 752
- 3
- 11
- 34
-1
votes
1 answer
vsftpd - is it possible to upload local file to FTP server with filename change?
I need to upload a local file from an Ubuntu desktop to an FTP server in a one-liner, while also changing the filename to be unique - by adding a timestamp to the beginning of the filename, for example.
Is it possible to do it in an easy way?
I…

0lesya
- 1
- 1
-1
votes
1 answer
Sync files between centOS (ec2) & a NAS
I have made a cronjob, that takes backup locally - of some diffrent files. But i would like to have them copied to a remote server aswell.
The problem is the "remote" server is a NAS server, and im not quite sure how i should go about…

Mac
- 115
- 1
- 1
- 9
-1
votes
1 answer
How to overcome IIS message exceeds the request content length in php
I am using phpUploader on IIS8.5. I have the php upload set to 20mb and I have the site set to:
…

ErocM
- 226
- 7
- 23
-1
votes
1 answer
FTP upload issue - vsftpd ubuntu14
I have been struggling for hours to resolve this. Could someone please tell me what am I missing as it is driving me insane.
Filezilla error code:
Response: 553 Could not create file
All the settings that are enabled in /etc/vsftpd.conf
…

Narayana
- 101
- 3
-1
votes
1 answer
Put command times out, but I can access to the server
I'm trying to connect to a FTP to upload a file from a cent os box. I can access to the server, but the connection times out whenever I try to upload with 'put' command.
I can upload a file without a single problem on my local machine. It sounds…

Moon
- 2,123
- 4
- 24
- 23
-1
votes
1 answer
Duplicate php files on cpanel shared hosting account?
2 php files with the same name in the same folder on my cpanel shared hosting account.
How is this possible?
What I remember is that when I uploaded a newer version of the file it did not ask me if I wanted to replace the older file... It just…

user481913
- 109
- 1
- 3
-1
votes
2 answers
Large File Uploads? SWFUpload?
So, we offer video services and have run into an issue with people uploaded large file sources. I realized that our developer was utilizing php HTTP uploads to handle this and that was causing the slow times & breakdowns.
Now, they keep coming at me…

Ethabelle
- 2,052
- 14
- 20
-1
votes
1 answer
multiple parallel uploads to a ftp server
I had a question w.r.t multiple parallel uploads to an ftp server. Lets say the bandwidth between the client and the server is B.
When I open a connection with the server, will the entire bandwidth be used?
If the entire bandwidth is not used and…

vine'th
- 99
- 1