I want to change file upload size limit

72 views Asked by At

I am testing a script on my domain sharemb.com. It says file too large when I upload a file of more than 2MB, where I want to put 30MB setting default. Where to find it and change?

2

There are 2 answers

2
Prodip Das On

enter image description here

find this code in your editor and change here

2
Prodip Das On

change code

Dropzone.options.myDropzone = {
    maxFiles: 3,
    maxFilesize: 2,

to

Dropzone.options.myDropzone = {
    maxFiles: 3,
    maxFilesize: 30,