danielm / uploader

A lightweight and very configurable jQuery plugin for file uploading using ajax(a sync); includes support for queues, progress tracking and drag and drop.
https://danielmg.org/demo/java-script/uploader
MIT License
1.17k stars 385 forks source link

problem when uploading file larger then 20 mb #100

Closed repiatx closed 5 years ago

repiatx commented 5 years ago

Hi. thx for you hard work. It works great but when i upload a rar or zip file "a.zip" or "a.rar" with the 26 MB on just one file. it gives me this error on php upload file.

Exception has occurred. RuntimeException: Invalid parameters. and it's not posting any $_FILE variable to php upload file. 1

and it gives me this error on my upload.html

Bad Request 2

help me plz.

xpressonlineventures commented 5 years ago

Did you solve the problem?

repiatx commented 5 years ago

i found solutions. You have to editphp.ini. It was all about limit of uploading file size. it wasnt about script.

upload_max_filesize = 20M
post_max_size = 21M

to

upload_max_filesize = 999999M
post_max_size = 999999M