php - Too big POST data. Reduce the data or increase the "post_max_size" -


i'm trying upload gzipped mysql backup (71,2mb) through adminer , throws me error:

too big post data. reduce data or increase "post_max_size" configuration directive.

even though post_max_size , other php.ini settings this:

post_max_size = 1024m upload_max_filesize = 1024m 

why keep getting error?

don't check values in php.ini, can overwritten .htaccess file or in php code. run phpinfo() , compare values in left & right column. values in right column in use.

also take notes documentation account:

sets max size of post data allowed. setting affects file upload. upload large files, value must larger upload_max_filesize. if memory limit enabled configure script, memory_limit affects file uploading. speaking, memory_limit should larger post_max_size.

so, might need change memory_limit:

memory_limit > post_max_size > upload_max_filesize 

Comments

Popular posts from this blog

java - activate/deactivate sonar maven plugin by profile? -

python - TypeError: can only concatenate tuple (not "float") to tuple -

java - What is the difference between String. and String.this. ? -