-1

Php Post Data Limit

I am trying post a very long query string to my page, but halfway it got cut away,what should I set to resolve such issue.

Thanks

user1548465
  • 65
  • 1
  • 6

1 Answers1

0

The max size of the $_POST depends on php.ini file. It can be defined also with ini_set() or in .htaccess

The value to modify is post_max_size

See also other post

But if you need so much memory probably you have some problem in your application.

Community
  • 1
  • 1
decadenza
  • 2,380
  • 3
  • 18
  • 31