Searched refs:max_input_vars (Results 1 – 18 of 18) sorted by relevance
/PHP-5.4/ext/mbstring/tests/ |
H A D | bug63447_002.phpt | 2 Bug #63447 (max_input_vars doesn't filter variables when mbstring.encoding_translation = On) 9 max_input_vars=4 18 Warning: Unknown: Input variables exceeded 4. To increase the limit change max_input_vars in php.in…
|
H A D | bug63447_001.phpt | 2 Bug #63447 (max_input_vars doesn't filter variables when mbstring.encoding_translation = On) 9 max_input_vars=5 18 Warning: Unknown: Input variables exceeded 5. To increase the limit change max_input_vars in php.in…
|
H A D | bug63447_003.phpt | 2 Bug #63447 (max_input_vars doesn't filter variables when mbstring.encoding_translation = On) 9 max_input_vars=100
|
/PHP-5.4/tests/basic/ |
H A D | 024.phpt | 5 max_input_vars=1000
|
H A D | 027.phpt | 7 max_input_vars=1000
|
H A D | 023.phpt | 4 max_input_vars=1000
|
H A D | 022.phpt | 4 max_input_vars=1000
|
H A D | 028.phpt | 5 max_input_vars=1000
|
/PHP-5.4/main/ |
H A D | php_globals.h | 149 long max_input_vars; member
|
H A D | php_variables.c | 250 if (++count > PG(max_input_vars)) { in SAPI_POST_HANDLER_FUNC() 251 …iables exceeded %ld. To increase the limit change max_input_vars in php.ini.", PG(max_input_vars)); in SAPI_POST_HANDLER_FUNC() 377 if (++count > PG(max_input_vars)) { in SAPI_TREAT_DATA_FUNC() 378 …iables exceeded %ld. To increase the limit change max_input_vars in php.ini.", PG(max_input_vars)); in SAPI_TREAT_DATA_FUNC()
|
H A D | rfc1867.c | 868 …if (++count <= PG(max_input_vars) && sapi_module.input_filter(PARSE_POST, param, &value, value_len… 887 if (count == PG(max_input_vars) + 1) { 888 …iables exceeded %ld. To increase the limit change max_input_vars in php.ini.", PG(max_input_vars));
|
H A D | main.c | 539 …ars", "1000", PHP_INI_SYSTEM|PHP_INI_PERDIR, OnUpdateLongGEZero, max_input_vars, php_core…
|
/PHP-5.4/ext/mbstring/ |
H A D | mb_gpc.c | 258 if (n > (PG(max_input_vars) * 2)) { in _php_mb_encoding_handler_ex() 259 …iables exceeded %ld. To increase the limit change max_input_vars in php.ini.", PG(max_input_vars)); in _php_mb_encoding_handler_ex()
|
/PHP-5.4/ext/standard/tests/strings/ |
H A D | parse_str_basic3.phpt | 4 max_input_vars=1000
|
/PHP-5.4/ |
H A D | UPGRADING | 76 - max_input_vars - specifies how many GET/POST/COOKIE input
|
H A D | php.ini-development | 392 ; max_input_vars = 1000
|
H A D | php.ini-production | 392 ; max_input_vars = 1000
|
H A D | NEWS | 1357 . Fixed bug #63447 (max_input_vars doesn't filter variables when 2438 . Improved max_input_vars directive to check nested variables (Dmitry). 2592 . Added max_input_vars directive to prevent attacks based on hash collisions
|
Completed in 69 milliseconds