0

I am trying to upload a file bigger than 250Mb but dropzone.js is not able to upload it. I have checked the server configuration and its looks fine. Here are the more details

upload_max_filesize=1024M
post_max_size=1024M

Its successfully uploading the file less than 250MB. Any help will be appreciated.

Meenesh Jain
  • 2,532
  • 2
  • 19
  • 29
  • Maybe this could help: [http://stackoverflow.com/questions/17143884/dropzone-js-maxfilesize-increase-not-working](http://stackoverflow.com/questions/17143884/dropzone-js-maxfilesize-increase-not-working) – yokmp Jul 27 '15 at 12:42
  • 1
    I saw your answer and found that i have same issue. Its working fine on chrome. Only Mozila has the issues. – Abhijeet kumar sharma Jul 27 '15 at 12:48

1 Answers1

0

Put these in your code where you are sending your file to upload

ini_set('post_max_size', '1000M');
ini_set('upload_max_filesize', '1000M');

This works for me

Meenesh Jain
  • 2,532
  • 2
  • 19
  • 29