Jump to content

func0der

New Members
  • Posts

    1
  • Joined

  • Last visited

Posts posted by func0der

  1. Essential little thing you forgot to mention and I just experienced myself.

     

    If you raise suhosin.post.max_vars you also need to make sure, that suhosin.request.max_vars is also raised to this new maximum, because otherwise it would overwrite the suhosin.post.max_vars.

    I also raised max_input_vars from php to make sure really NOTHING keeps inputs from getting posted.

     

    Code in vhost.conf (Plesk based ^^).:

    php_admin_value suhosin.post.max_vars 5000
    php_admin_value suhosin.request.max_vars 5000
    php_admin_value max_input_vars 5000

    Should work in .htaccess, too. But I have not tested it.

     

    func0der

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.