PHP警告:POST Content-Length为66192047字节超过了8388608字节的限制

im getting this error when sending a form with uploaded file.

i already put upload_max_filesize and post_max_size to 1000M in my php.ini without any result.

If you did setting php.ini file and then restart Apache daemon or Server.

Please check your php source files and .htaccess file.

First.

Maybe contain ini_set('upload_max_filesize', '8M') or ini_set('post_max_size', '8M').

They can be in index.php file.

Second.

They can be in .htaccessfile.

php_value upload_max_filesize 10M
php_value post_max_size 10M