2

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?

Dave
  • 3,046
  • 7
  • 19
  • 32
Mohammad Reza
  • 1,114
  • 4
  • 11
  • 27

1 Answers1

2

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
Nomura Nori
  • 3,889
  • 7
  • 37
  • 73