thias / puppet-php

Puppet module to manage PHP
Other
49 stars 67 forks source link

max_input_vars is missing in parameter list #14

Closed mbretter closed 10 years ago

mbretter commented 10 years ago

The php in parameter max_input_vars (available since 5.3.9) is missing, causes: Error: Invalid parameter max_input_vars at

--- ini.pp.orig 2013-12-09 15:36:23.620999946 +0100
+++ ini.pp  2013-12-09 15:36:51.653999946 +0100
@@ -37,6 +37,7 @@
   $expose_php                 = 'On',
   $max_execution_time         = '30',
   $max_input_time             = '60',
+  $max_input_vars        = '1000',
   $memory_limit               = '128M',
   $error_reporting            = 'E_ALL & ~E_DEPRECATED',
   $display_errors             = 'Off',
mbretter commented 10 years ago

btw, it is missing in the erb template too: php.ini-el6.erb

thias commented 10 years ago

This is now added in 47ab13484dc9d32a909dde835ea074b6bfd77e71. Thanks for the report!