PHP/Apache/AJAX – POST limit?

You’ll have to check the limits parameters on all items between you and the server. Quite hard for proxy servers if any, but at least you can check:

Apache:

  • LimitRequestBody, around 2Gb by default, maybe greater for 64bits, check error logs for details.

PHP:

If you have reached the compiled in limit for Apache your only solution is to avoid direct POSt of such a big chunk of data, you’ll have to break it into pieces.

Leave a Comment