Server Side Implementation

How to handle uploaded files on the server.

Dropzone does not provide the server side implementation of handling the files.

The way files are uploaded is identical to a standard file upload with a standard HTML form like this:

<form action="" method="post" enctype="multipart/form-data">
  <input type="file" name="file" />
</form>

So if your server accepts files, uploaded like this, it will accept files uploaded with Dropzone.

So please look at the corresponding documentation of the server implementation you're using. Here are a few documentations, if you think I should add some, please contact me.

Paid documentations:

Please look at the Dropzone FAQ if you need more information.

Last updated