wordpress - PHP Warning: POST Content-Length of 8978294 bytes exceeds the limit of 8388608 bytes in Unknown on line 0 -
i getting error when trying upload import on wordpress on xampp local dev environment:
warning: post content-length of 8978294 bytes exceeds limit of 8388608 bytes in unknown on line 0
i changed upload_max_filesize 2m 1000m, didn't seem anything.
any ideas?
8388608 bytes 8m, default limit in php. update post_max_size in php.ini larger value.
upload_max_filesize sets max file size user can upload while post_max_size sets maximum amount of data can sent via post in form.
so can set upload_max_filesize 1 meg, mean biggest single file user can upload 1 megabyte, upload 5 of them @ once if post_max_size set 5.
Comments
Post a Comment