Viewing 10 replies - 16 through 25 (of 25 total)
  • Plugin Author Jason Judge

    (@judgej)

    Also feel free to open a new ticket. Your issue may have different causes or details. There is possible solution here:

    https://stackoverflow.com/questions/9399315/how-to-increase-maximum-post-variable-in-php

    If you do solve it, please let me know. I can add to the documentation if how to change settings are not clear.

    I am using wordpres 4.1 and using your plugin.. But I think its not working in this latest version. I check the admin header source it show 1000 only.
    <script type=”text/javascript”>
    /* Plugin: WP Max Submit Protect */
    jQuery(document).ready(function($) {
    $(‘form’).maxSubmit({
    max_count: 1000,
    max_exceeded_message: “This form has too many fields ({form_count}) for the server to accept (max {max_count})\nData may be lost if you submit. Are you sure you want to go ahead?”
    });
    })
    </script>

    Can you help me to solve this issue. I want that server allow me to 8000. Then I can add variations… Its great help me if you give me some solution.

    Sincerely
    Rickky

    Plugin Author Jason Judge

    (@judgej)

    I’m really busy today and the weekend, so I can’t do much on this, but if you direct-post me a copy of the output from phpinfo() I’ll take a look to see if there are any clues in there.

    The max_count is the lowest of about four different PHP settings, and any one of them could bring the overall limit down.

    That value should also appear with the plugin in the WP Plugins page, so you can check that page to save you having to sift through the page source.

    Hi Jason,
    I understand it how you are busy. I contact with godaddy hosting support where my site is hosted, to increase the data storage space.. They increase it and now it showing me 8000 under your plugin. Now I can upload many thousands variations easily.. Only it take time to update cause of heavy data ??

    Thanks for your fast reply. I really appreciate.

    Best Regards
    Rickky

    Plugin Author Jason Judge

    (@judgej)

    Oh, that’s great. I was jumping to conclusions and assumed you had already made the change on the server, but the plugin wasn’t picking up the right value.

    Glad you have it sorted now.

    I also thought that they change it but that time they didn’t done anything… But after contacting them again they finally did it and then the right value get in the plugin. Thank you ??

    Hi Jason,

    I`am having the same problem and my settings in php.ini are as follows:

    suhosin.post.max_array_index_length = 256
    suhosin.post.max_totalname_length = 65535
    suhosin.post.max_vars = 5000
    suhosin.request.max_array_index_length = 256
    suhosin.request.max_totalname_length = 65535
    suhosin.request.max_vars = 5000

    max_input_vars = 5000
    max_execution_time = 300
    max_input_time = 600
    memory_limit = 256M

    The WP Max Submit Protect plugin still showing the message:

    “This form has too many fields (1513) for the server to accept (max 1000)”

    Can you help me to solve this issue?

    Best Regards
    Gustavo R.

    Plugin Author Jason Judge

    (@judgej)

    Your limit of 1000 will be:

    • suhosin.request.max_vars

    That’s the only one you have not not listed. Try setting that to 5000 too.

    suhosin.request.max_vars will limit both the POST and GET inputs – I believe it is the sum of the two, and will defaults to 1000 if not explicitly set.

    Hi Jason,

    First of all, thanks for the quick response. I’m trying to solve this for a long time.

    In fact I have listed the configuration you mentioned above and it does not work. In my recent tests I managed to run on the local server and it worked fine if I put max_input_vars php_value 2000 in .htaccess file. But this configuration is not supported by my online serve hosting .

    Do you have any other ideas?
    You may want to see a copy of the output from phpinfo (). I can send you an email with that.

    Thanks for you attention.

    Best regards,

    Gustavo R.

    Hi jason,

    Problem solved. My host server made ??the modifications and it worked.

    Thank you again, the plugin works fine.

    Gustavo R.

Viewing 10 replies - 16 through 25 (of 25 total)
  • The topic ‘Field limit not reflectin php.ini’ is closed to new replies.