Commit 9a17f7cfcceffc09c45f01154ad5579ff28ef741
1 parent
40fcac69
Exists in
master
Alinhamento dos parâmetros do PHP aplicados ao SEI conforme manual de instalação
Showing
1 changed file
with
11 additions
and
8 deletions
Show diff stats
httpd/assets/sei.ini
1 | 1 | [php] |
2 | +# Parâmetros recomendados no Manual de Instalação do SEI 3.0.0 | |
2 | 3 | include_path = ".:/php/includes:/opt/infra/infra_php" |
3 | -error_reporting = E_ALL | |
4 | -display_errors = On | |
5 | -display_startup_errors = On | |
6 | -track_errors = On | |
7 | -html_errors = On | |
8 | -post_max_size = 110M | |
9 | -upload_max_filesize = 100M | |
10 | 4 | default_charset = "iso-8859-1" |
11 | 5 | session.gc_maxlifetime = 28800 |
12 | 6 | short_open_tag = On |
13 | -default_socket_timeout = 1200 | |
7 | +default_socket_timeout = 60 | |
14 | 8 | max_input_vars = 2000 |
15 | 9 | magic-quotes-gpc = 0 |
16 | 10 | magic_quotes_runtime = 0 |
17 | 11 | magic_quotes_sybase = 0 |
12 | +post_max_size = 110M | |
13 | +upload_max_filesize = 100M | |
14 | + | |
15 | +# Parâmetros recomendados para ambiente de desenvolvimento | |
16 | +error_reporting = E_ALL | |
17 | +display_errors = On | |
18 | +display_startup_errors = On | |
19 | +track_errors = On | |
20 | +html_errors = On | |
18 | 21 | always_populate_raw_post_data = -1 | ... | ... |