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,073
  • 7
  • 20
  • 33
Mohammad Reza
  • 1,143
  • 4
  • 13
  • 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
  • 4,689
  • 8
  • 47
  • 85