-
Notifications
You must be signed in to change notification settings - Fork 0
/
user.ini
34 lines (30 loc) · 1011 Bytes
/
user.ini
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
#
# A PHP configuration focusing on two criteria:
# * Disable un-secure or deprecated features
# (almost equivalent to the default config of php 5.4)
# * Provide the best-possible Unicode support with UTF-8
#
php_value default_charset "utf-8"
php_flag always_populate_raw_post_data off
php_flag short_open_tag off
php_flag asp_tags off
php_flag expose_php off
# Deactivate magic quotes
php_flag magic_quotes_gpc off
php_flag magic_quotes_runtime off
php_flag magic_quotes_sybase off
php_flag safe_mode off
php_flag register_globals off
php_flag register_long_arrays off
# multibyte
php_flag zend.multibyte on
php_value zend.script_encoding "utf-8"
php_flag detect_unicode on
php_value mbstring.language "neutral"
php_value mbstring.internal_encoding "utf-8"
php_flag mbstring.encoding_translation on
php_value mbstring.http_input "auto"
php_value mbstring.http_output "utf-8"
php_value mbstring.detect_order "auto"
php_value mbstring.substitute_character "none"
php_value mbstring.func_overload "7"