php $_POST array empty upon form submission

前端 未结 27 3162

I have a custom CMS i\'ve built that works perfectly on my dev box (Ubuntu/PHP5+/MySQL5+).

I just moved it up to the production box for my client and now all form su

27条回答
  •  Happy的楠姐
    2020-11-22 09:44

    In addition to MRMage's post:

    I had to set this variable to solve the problem that some $_POST variables (with an large array > 1000 items) disappeared:

    suhosin.request.max_vars = 2500
    

    "request", not "post" was the solution...

提交回复
热议问题