I'm trying to upload a gzipped Mysql backup (71,2mb) through Adminer and it throws me this error:
Too big POST data. Reduce the data or increase the "post_max_size" configuration directive.
Even though my post_max_size and other php.ini settings is like this:
post_max_size = 1024M
upload_max_filesize = 1024M
Why do i keep getting this error?
Don't only check values in
php.ini
, as they can be overwritten by a.htaccess
file or in PHP code. Run aphpinfo()
and compare values in left & right column. The values in the right column are those actually in use.Also take the notes from the documentation into account:
So, you might also need to change
memory_limit
: