警告:POST Content-Length为90612004字节超过了第0行的Unknown中的8388608字节限制

I got this error

Warning: POST Content-Length of 90612004 bytes exceeds the limit of 8388608 bytes in Unknown on line 0

I've done some searches and I changed post_max_size and upload_max_filesize to 150M and reset Wamp but STILL I get this error what should I do?

There are 2 way to fix.

First - change php.ini file information. enter image description here

set configurations as following.

   post_max_size=100M
   upload_max_filesize=100M

Second - use .htaccess file.

   php_value upload_max_filesize 100M
   php_value post_max_size 100M