Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Server responded with 0 code issue in Dropzone.js

Tags:

dropzone.js

Im used Dropzone.js, I Have some issue for this, I'm uploaded some image,after displayed this error Server responded with 0 code. look at my attached image you can understand it enter image description here

html code

 <form action="/file-upload" class="dropzone"><div class="fallback">
    <input name="file" type="file" multiple />
  </div></form>
like image 224
core114 Avatar asked Mar 08 '23 08:03

core114


1 Answers

This issue can have several reasons. How big are the files you are uploading? How long does the server execute a script? Which maximum file sizes are allowed to upload? I assume, this will be mainly an issue of the webserver settings instead of dropzone.js.

See this link for some ideas:

https://github.com/enyo/dropzone/issues/701

like image 136
dns_nx Avatar answered Apr 28 '23 04:04

dns_nx