Questions tagged [upload]

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.

340 questions
3
votes
1 answer

IIS 8.5 file upload causing ‘NetworkError: 500 Internal Server Error

I am having a terrible time trying to find the cause of the error when uploading a file (the size of the file does not matter) via HTTP to a Windows 2012 R2 Essentials (IIS 8.5) webserver. The application runs flawlessly on Windows 2003 (IIS 6). It…
Caroline Beltran
  • 275
  • 4
  • 11
3
votes
3 answers

nginx upload progress return me always same size and recived

I set my nginx static content domain like this: # static0.mywebsite.com static1.mywebsite.com static2.mywebsite.com static3.mywebsite.com server { # upload limit # upload_limit_rate 10240; # request size limitation …
3
votes
1 answer

Nginx client_body_in_file_only for file upload performance

In my app, I have nginx proxy to my app server (unicorn). I'm trying to improve my file upload performance. I've read that through various techniques you can prevent your app processes from being blocked while the file is uploading. Current…
Jared Moody
  • 296
  • 1
  • 4
  • 10
3
votes
2 answers

How to upload configuration files using the shell provider?

Apart from installing applications like emacs on my guest machine, I would also like to upload some configuration files (e.g. to configure emacs for Clojure development). Sadly, Vagrant's documentation gives no clue about how to do this. I guess I'd…
Trollhorn
  • 203
  • 3
  • 10
3
votes
1 answer

Apache Tomcat setting Max file upload size

I am implementing a Grails/Groovy web app, I want to limit the user's file upload size, I don't want someone uploads a 10GB file to my server. What I figured out was that most approaches to calculate the size is done after the file is already…
Alex
  • 51
  • 1
  • 1
  • 5
3
votes
2 answers

Apache places uploaded files in /tmp. Can I change that to another directory?

Is there a configuration that changes the directory where apache web server temporarily places uploaded files? I have access to httpd/conf.d I'm on a machine where /tmp is very size constrained and have a requirement to allow file uploads that are…
GSP
  • 133
  • 1
  • 1
  • 6
3
votes
2 answers

Writing permission with VSFTPD and Centos 6.2

I have a server with centos 6.2 with httpd and vsftpd. I have few web site in /var/www and i want to add a ftp user for each site. My user1 home directory is /home/user1 and can read/write to it folder from ftp. (it's the user i use to ssh and…
frank
  • 133
  • 1
  • 1
  • 5
3
votes
3 answers

Network throttling for large file upload process

My application need to have a file upload component which will be uploading very large(>1gb) files. I'm yet to decide on the protocol (HTTP or FTP) to go for (Any help in this regard will be highly appreciated). Now, when one user is using this…
kaychaks
  • 167
  • 1
  • 1
  • 9
3
votes
1 answer

Limit file upload per type with NGinx

In my project, I will allow users to send zip files and images files (on two different form post). The project is developed with Play! Framework (not PHP). I'd like to limit the size of upload for 1MB if it's images, and 10MB if it's zip. Is this…
Cyril N.
  • 624
  • 1
  • 10
  • 36
3
votes
2 answers

Uploading video files to IIS 7 through php fails

I'm trying to get my website to upload video's and pictures. As I have made more websites that upload pictures there is no problem on that front, but when i try to upload a video for some reason it can't be found in the $_FILES array that contains…
dragon112
  • 137
  • 3
  • 9
3
votes
1 answer

Windows 7 - Network File Copy Intermittently Fails During Upload to NAS

The client machine is running 64 bit Windows 7 and attempting to copy a relatively small file to our NAS device. The NAS device is a Lacie model running (I believe) some variant of Windows XP and has no permission structure aside from access/no…
Jack
  • 209
  • 3
  • 10
3
votes
1 answer

File synchronization over servers (debian) by uploading a file with PHP

I have 3 web servers for my PHP application. In front of web servers, there are load balancers. My application has a upload image form. I need to have any uploaded image via my form, simultaneously be in all 3 web servers. I try to think about…
uguraslan
  • 55
  • 2
3
votes
2 answers

Pushing updates to live server... FTP isn't cutting it... a better method?

I'm the lead developer in a team of 2. My partner has only just joined the project and despite using GIT for version control etc, we are still stuck in the dark ages when it comes to code deployment. Currently I make all site updates via FTP (this…
Jon M
  • 457
  • 1
  • 6
  • 11
3
votes
2 answers

Upload over HTTPS is reliable?

Sometimes we are facing a problem with corrupted files after upload through HTTP protocol. Today I’ve read an article that says that TCP protocol is not 100% reliable due to weak CRC algorithm and other different things. As I understood from RFC,…
Eugene
  • 133
  • 1
  • 4
3
votes
2 answers

Reverse Proxy that does not buffer uploads

From what I've seen of various reverse proxies (nginx, apache, varnish), they seem to buffer file uploads to disk before handing them off to the service they're proxying for. I need a reverse proxy that doesn't do this; I have a system that handles…
tsuraan
  • 153
  • 1
  • 5
1 2
3
22 23