php7: Clean up and update distributed php.ini for php 7.4.25
Details: - Cleaned up whitespace and removed comments (refer to official PHP documentation for that) - Removed directives that no longer exist as of PHP 7.4.25 - Added '~E_DEPRECATED' to 'error_reporting' Directives removed that no longer exist as of PHP 7.4.25: - zend.ze1_compatibility_mode - y2k_compliance - register_globals - register_long_arrays - magic_quotes_gpc - magic_quotes_runtime - magic_quotes_sybase - always_populate_raw_post_data Signed-off-by: Giovanni Giacobbi <giovanni@giacobbi.net>
This commit is contained in:
parent
309c5d62ae
commit
7e45ad87f3
2 changed files with 57 additions and 75 deletions
|
@ -7,7 +7,7 @@ include $(TOPDIR)/rules.mk
|
||||||
|
|
||||||
PKG_NAME:=php
|
PKG_NAME:=php
|
||||||
PKG_VERSION:=7.4.25
|
PKG_VERSION:=7.4.25
|
||||||
PKG_RELEASE:=2
|
PKG_RELEASE:=3
|
||||||
|
|
||||||
PKG_MAINTAINER:=Michael Heimpold <mhei@heimpold.de>
|
PKG_MAINTAINER:=Michael Heimpold <mhei@heimpold.de>
|
||||||
PKG_LICENSE:=PHP-3.01
|
PKG_LICENSE:=PHP-3.01
|
||||||
|
|
|
@ -1,12 +1,12 @@
|
||||||
[PHP]
|
[PHP]
|
||||||
zend.ze1_compatibility_mode = Off
|
|
||||||
|
|
||||||
; Language Options
|
;;;;;;;;;;;;;;;;;;;;
|
||||||
|
; Language Options ;
|
||||||
|
;;;;;;;;;;;;;;;;;;;;
|
||||||
|
|
||||||
engine = On
|
engine = On
|
||||||
;short_open_tag = Off
|
;short_open_tag = Off
|
||||||
precision = 12
|
precision = 12
|
||||||
y2k_compliance = On
|
|
||||||
output_buffering = Off
|
output_buffering = Off
|
||||||
;output_handler =
|
;output_handler =
|
||||||
zlib.output_compression = Off
|
zlib.output_compression = Off
|
||||||
|
@ -14,72 +14,46 @@ zlib.output_compression = Off
|
||||||
;zlib.output_handler =
|
;zlib.output_handler =
|
||||||
implicit_flush = Off
|
implicit_flush = Off
|
||||||
unserialize_callback_func =
|
unserialize_callback_func =
|
||||||
|
;unserialize_max_depth = 4096
|
||||||
serialize_precision = 100
|
serialize_precision = 100
|
||||||
|
|
||||||
;open_basedir =
|
;open_basedir =
|
||||||
disable_functions =
|
disable_functions =
|
||||||
disable_classes =
|
disable_classes =
|
||||||
|
;highlight.string = #DD0000
|
||||||
; Colors for Syntax Highlighting mode. Anything that's acceptable in
|
|
||||||
; <span style="color: ???????"> would work.
|
|
||||||
;highlight.string = #DD0000
|
|
||||||
;highlight.comment = #FF9900
|
;highlight.comment = #FF9900
|
||||||
;highlight.keyword = #007700
|
;highlight.keyword = #007700
|
||||||
;highlight.bg = #FFFFFF
|
;highlight.bg = #FFFFFF
|
||||||
;highlight.default = #0000BB
|
;highlight.default = #0000BB
|
||||||
;highlight.html = #000000
|
;highlight.html = #000000
|
||||||
|
|
||||||
;ignore_user_abort = On
|
;ignore_user_abort = On
|
||||||
;realpath_cache_size = 16k
|
;realpath_cache_size = 16k
|
||||||
;realpath_cache_ttl = 120
|
;realpath_cache_ttl = 120
|
||||||
|
;zend.enable_gc = On
|
||||||
|
;zend.multibyte = Off
|
||||||
|
;zend.script_encoding =
|
||||||
|
;zend.exception_ignore_args = On
|
||||||
|
|
||||||
; Miscellaneous
|
;;;;;;;;;;;;;;;;;
|
||||||
|
; Miscellaneous ;
|
||||||
|
;;;;;;;;;;;;;;;;;
|
||||||
|
|
||||||
expose_php = On
|
expose_php = On
|
||||||
|
|
||||||
; Resource Limits
|
;;;;;;;;;;;;;;;;;;;
|
||||||
|
; Resource Limits ;
|
||||||
|
;;;;;;;;;;;;;;;;;;;
|
||||||
|
|
||||||
max_execution_time = 30 ; Maximum execution time of each script, in seconds.
|
max_execution_time = 30
|
||||||
max_input_time = 60 ; Maximum amount of time each script may spend parsing request data.
|
max_input_time = 60
|
||||||
;max_input_nesting_level = 64
|
;max_input_nesting_level = 64
|
||||||
memory_limit = 8M ; Maximum amount of memory a script may consume.
|
;max_input_vars = 1000
|
||||||
|
memory_limit = 8M
|
||||||
|
|
||||||
; Error handling and logging
|
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
||||||
|
; Error handling and logging ;
|
||||||
; Error Level Constants:
|
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
||||||
; E_ALL - All errors and warnings (includes E_STRICT as of PHP 6.0.0)
|
|
||||||
; E_ERROR - fatal run-time errors
|
|
||||||
; E_RECOVERABLE_ERROR - almost fatal run-time errors
|
|
||||||
; E_WARNING - run-time warnings (non-fatal errors)
|
|
||||||
; E_PARSE - compile-time parse errors
|
|
||||||
; E_NOTICE - run-time notices (these are warnings which often result
|
|
||||||
; from a bug in your code, but it's possible that it was
|
|
||||||
; intentional (e.g., using an uninitialized variable and
|
|
||||||
; relying on the fact it's automatically initialized to an
|
|
||||||
; empty string)
|
|
||||||
; E_STRICT - run-time notices, enable to have PHP suggest changes
|
|
||||||
; to your code which will ensure the best interoperability
|
|
||||||
; and forward compatibility of your code
|
|
||||||
; E_CORE_ERROR - fatal errors that occur during PHP's initial startup
|
|
||||||
; E_CORE_WARNING - warnings (non-fatal errors) that occur during PHP's
|
|
||||||
; initial startup
|
|
||||||
; E_COMPILE_ERROR - fatal compile-time errors
|
|
||||||
; E_COMPILE_WARNING - compile-time warnings (non-fatal errors)
|
|
||||||
; E_USER_ERROR - user-generated error message
|
|
||||||
; E_USER_WARNING - user-generated warning message
|
|
||||||
; E_USER_NOTICE - user-generated notice message
|
|
||||||
; E_DEPRECATED - warn about code that will not work in future versions
|
|
||||||
; of PHP
|
|
||||||
; E_USER_DEPRECATED - user-generated deprecation warnings
|
|
||||||
;
|
|
||||||
; Common Values:
|
|
||||||
; E_ALL & ~E_NOTICE (Show all errors, except for notices and coding standards warnings.)
|
|
||||||
; E_ALL & ~E_NOTICE | E_STRICT (Show all errors, except for notices)
|
|
||||||
; E_COMPILE_ERROR|E_RECOVERABLE_ERROR|E_ERROR|E_CORE_ERROR (Show only errors)
|
|
||||||
; E_ALL | E_STRICT (Show all errors, warnings and notices including coding standards.)
|
|
||||||
; Default Value: E_ALL & ~E_NOTICE
|
|
||||||
error_reporting = E_ALL & ~E_NOTICE & ~E_STRICT
|
|
||||||
|
|
||||||
|
error_reporting = E_ALL & ~E_NOTICE & ~E_DEPRECATED & ~E_STRICT
|
||||||
display_errors = On
|
display_errors = On
|
||||||
display_startup_errors = Off
|
display_startup_errors = Off
|
||||||
log_errors = Off
|
log_errors = Off
|
||||||
|
@ -92,61 +66,69 @@ track_errors = Off
|
||||||
;html_errors = Off
|
;html_errors = Off
|
||||||
;docref_root = "/phpmanual/"
|
;docref_root = "/phpmanual/"
|
||||||
;docref_ext = .html
|
;docref_ext = .html
|
||||||
;error_prepend_string = "<font color=#ff0000>"
|
;error_prepend_string = "<span style='color: #ff0000'>"
|
||||||
;error_append_string = "</font>"
|
;error_append_string = "</span>"
|
||||||
; Log errors to specified file.
|
|
||||||
;error_log = /var/log/php_errors.log
|
|
||||||
; Log errors to syslog.
|
|
||||||
;error_log = syslog
|
;error_log = syslog
|
||||||
|
;syslog.ident = php
|
||||||
|
;syslog.facility = user
|
||||||
|
;syslog.filter = ascii
|
||||||
|
|
||||||
; Data Handling
|
;;;;;;;;;;;;;;;;;
|
||||||
|
; Data Handling ;
|
||||||
|
;;;;;;;;;;;;;;;;;
|
||||||
|
|
||||||
;arg_separator.output = "&"
|
;arg_separator.output = "&"
|
||||||
;arg_separator.input = ";&"
|
;arg_separator.input = ";&"
|
||||||
variables_order = "EGPCS"
|
variables_order = "EGPCS"
|
||||||
request_order = "GP"
|
request_order = "GP"
|
||||||
register_globals = Off
|
|
||||||
register_long_arrays = Off
|
|
||||||
register_argc_argv = On
|
register_argc_argv = On
|
||||||
auto_globals_jit = On
|
auto_globals_jit = On
|
||||||
|
;enable_post_data_reading = Off
|
||||||
post_max_size = 8M
|
post_max_size = 8M
|
||||||
;magic_quotes_gpc = Off
|
|
||||||
magic_quotes_runtime = Off
|
|
||||||
magic_quotes_sybase = Off
|
|
||||||
auto_prepend_file =
|
auto_prepend_file =
|
||||||
auto_append_file =
|
auto_append_file =
|
||||||
default_mimetype = "text/html"
|
default_mimetype = "text/html"
|
||||||
;default_charset = "iso-8859-1"
|
;default_charset = "UTF-8"
|
||||||
;always_populate_raw_post_data = On
|
;internal_encoding =
|
||||||
|
;input_encoding =
|
||||||
|
;output_encoding =
|
||||||
|
|
||||||
; Paths and Directories
|
;;;;;;;;;;;;;;;;;;;;;;;;;
|
||||||
|
; Paths and Directories ;
|
||||||
|
;;;;;;;;;;;;;;;;;;;;;;;;;
|
||||||
|
|
||||||
; UNIX: "/path1:/path2"
|
|
||||||
;include_path = ".:/php/includes"
|
;include_path = ".:/php/includes"
|
||||||
doc_root = "/www"
|
doc_root = "/www"
|
||||||
user_dir =
|
user_dir =
|
||||||
extension_dir = "/usr/lib/php"
|
extension_dir = "/usr/lib/php"
|
||||||
|
;sys_temp_dir = "/tmp"
|
||||||
enable_dl = On
|
enable_dl = On
|
||||||
;cgi.force_redirect = 1
|
;cgi.force_redirect = 1
|
||||||
;cgi.nph = 1
|
;cgi.nph = 1
|
||||||
;cgi.redirect_status_env = ;
|
;cgi.redirect_status_env =
|
||||||
cgi.fix_pathinfo=1
|
cgi.fix_pathinfo = 1
|
||||||
;fastcgi.impersonate = 1;
|
;cgi.discard_path = 1
|
||||||
|
;fastcgi.impersonate = 1
|
||||||
;fastcgi.logging = 0
|
;fastcgi.logging = 0
|
||||||
;cgi.rfc2616_headers = 0
|
;cgi.rfc2616_headers = 0
|
||||||
|
;cgi.check_shebang_line = 1
|
||||||
|
|
||||||
; File Uploads
|
;;;;;;;;;;;;;;;;
|
||||||
|
; File Uploads ;
|
||||||
|
;;;;;;;;;;;;;;;;
|
||||||
|
|
||||||
file_uploads = On
|
file_uploads = On
|
||||||
upload_tmp_dir = "/tmp"
|
upload_tmp_dir = "/tmp"
|
||||||
upload_max_filesize = 2M
|
upload_max_filesize = 2M
|
||||||
max_file_uploads = 20
|
max_file_uploads = 20
|
||||||
|
|
||||||
; Fopen wrappers
|
;;;;;;;;;;;;;;;;;;
|
||||||
|
; Fopen wrappers ;
|
||||||
|
;;;;;;;;;;;;;;;;;;
|
||||||
|
|
||||||
allow_url_fopen = On
|
allow_url_fopen = On
|
||||||
allow_url_include = Off
|
allow_url_include = Off
|
||||||
;from="john@doe.com"
|
;from = "john@doe.com"
|
||||||
;user_agent="PHP"
|
;user_agent = "PHP"
|
||||||
default_socket_timeout = 60
|
default_socket_timeout = 60
|
||||||
;auto_detect_line_endings = Off
|
;auto_detect_line_endings = Off
|
||||||
|
|
Loading…
Reference in a new issue