Using Dropzone.js and the Dropbox API, I'm looking to setup a drag-and-drop web interface that can accept files up to 10G. It works perfectly with files up to ~50M, but fails after that with a 413 Request Entity Too Large error. The sample file I've been trying is 1.5G. I've tried what I know to change for large file uploads, but still doesn't seem to be working. I'm hoping someone can point me in the right direction with a look at my PHP settings.
Here's a rendering of the associated phpinfo()
: http://codepen.io/jboneca/pen/bNvEwV
Additional information:
- No file is ever stored on our server. It is uploaded (successfully, in most cases) directly to Dropbox.
- File size limitation has been disabled on Dropzone.
- The following settings have been changed, to no avail.
upload_max_filesize
,post_max_size
,max_execution_time
,max_input_time
,memory_limit
. Perhaps they need to be still larger?