Closed (fixed)
Project:
Barracuda
Version:
6.x-2.x-dev
Component:
Code
Priority:
Normal
Category:
Feature request
Assigned:
Unassigned
Reporter:
Created:
20 Dec 2012 at 03:50 UTC
Updated:
17 Feb 2016 at 09:36 UTC
Jump to comment: Most recent
Comments
Comment #1
omega8cc commentedThis is how PHP works. You can override
memory_limitbecause it is in thePHP_INI_ALLgroup.You can't override
max_input_varsbecause it is in thePHP_INI_PERDIRgroup (and works only with 5.3)See for reference:
http://php.net/manual/en/configuration.changes.modes.php
http://php.net/manual/en/info.configuration.php
http://php.net/manual/en/ini.list.php
Comment #2
hyperglide commentedThank you!
hg
Comment #3
omega8cc commentedHowever, the default
max_input_varsvalue is really too low, so we are changing it globally: http://drupalcode.org/project/barracuda.git/commit/1ff5d1eComment #4
omega8cc commentedNote also that we have that other variable set already in the
global.incfile: http://drupalcode.org/project/barracuda.git/blob/HEAD:/aegir/conf/global...Comment #5
hyperglide commentedGrand.
Ty Again.
Comment #7
Dhara Shah commentedThanks omega8cc.