Reputation: 1203
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?
Upvotes: 2
Views: 14575
Reputation: 5167
There are 2 way to fix.
First - change php.ini file information.
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
Upvotes: 2