Server Side Implementation
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.
- Spring
- NodeJS with express
- Ruby on rails
- Complete PHP tutorial by startutorial.com
- Basic PHP file upload
- Tutorial for Dropzone and Lavarel (PHP) written by Maksim Surguy
- Symfony2 and Amazon S3
- File upload in ASP.NET MVC using Dropzone JS and HTML5
- Servicestack and Dropzone
- How to build a file upload form using DropzoneJS and Go
- How to display existing files on server using DropzoneJS and Go
Paid documentations:
- eBook for Dropzone with PHP by startutorial.com.
Please look at the Dropzone FAQ if you need more information.