]> TLD Linux GIT Repositories - packages/php.git/blob - php-ini.patch
- updated to 5.6.12
[packages/php.git] / php-ini.patch
1 --- php-5.6.12.orig/php.ini     2015-08-06 07:55:57.000000000 +0000
2 +++ php-5.6.12/php.ini  2015-08-09 14:51:00.224790532 +0000
3 @@ -82,6 +82,20 @@
4  ; much more verbose when it comes to errors. We recommend using the
5  ; development version only in development environments, as errors shown to
6  ; application users can inadvertently leak otherwise secure information.
7 +;
8 +; This is the default settings file for new PHP installations from
9 +; TLD Linux.
10 +;
11 +; It's based mainly on php.ini-production, but with some changes made with
12 +; security in mind (see below, consult also http://php.net/manual/en/security.php).
13 +;
14 +; Please note, that in TLD installations /etc/php/php.ini file
15 +; contains global settings for all SAPIs (cgi, cli, apache...),
16 +; and after reading this file, SAPI-specific file (/etc/php/php-cgi-fcgi.ini,
17 +; /etc/php/php-cli.ini, /etc/php/php-apache.ini...) is INCLUDED
18 +; (so you don't have to duplicate whole large file to override only
19 +; few options)
20 +
21  
22  ; This is php.ini-production INI file.
23  
24 @@ -149,7 +163,7 @@
25  ;   Production Value: 5
26  
27  ; short_open_tag
28 -;   Default Value: On
29 +;   Default Value: Off
30  ;   Development Value: Off
31  ;   Production Value: Off
32  
33 @@ -175,7 +189,7 @@
34  ;user_ini.filename = ".user.ini"
35  
36  ; To disable this feature set this option to empty value
37 -;user_ini.filename =
38 +user_ini.filename =
39  
40  ; TTL for user-defined php.ini files (time-to-live) in seconds. Default is 300 seconds (5 minutes)
41  ;user_ini.cache_ttl = 300
42 @@ -195,7 +209,7 @@
43  ; documents, however this remains supported for backward compatibility reasons.
44  ; Note that this directive does not control the <?= shorthand tag, which can be
45  ; used regardless of this directive.
46 -; Default Value: On
47 +; Default Value: Off
48  ; Development Value: Off
49  ; Production Value: Off
50  ; http://php.net/short-open-tag
51 @@ -360,7 +374,7 @@
52  ; threat in any way, but it makes it possible to determine whether you use PHP
53  ; on your server or not.
54  ; http://php.net/expose-php
55 -expose_php = On
56 +expose_php = Off
57  
58  ;;;;;;;;;;;;;;;;;;;
59  ; Resource Limits ;
60 @@ -731,7 +745,7 @@
61  
62  ; Directory in which the loadable extensions (modules) reside.
63  ; http://php.net/extension-dir
64 -; extension_dir = "./"
65 +;extension_dir = "/usr/lib/php"
66  ; On windows:
67  ; extension_dir = "ext"
68  
69 @@ -745,53 +759,6 @@
70  ; http://php.net/enable-dl
71  enable_dl = Off
72  
73 -; cgi.force_redirect is necessary to provide security running PHP as a CGI under
74 -; most web servers.  Left undefined, PHP turns this on by default.  You can
75 -; turn it off here AT YOUR OWN RISK
76 -; **You CAN safely turn this off for IIS, in fact, you MUST.**
77 -; http://php.net/cgi.force-redirect
78 -;cgi.force_redirect = 1
79 -
80 -; if cgi.nph is enabled it will force cgi to always sent Status: 200 with
81 -; every request. PHP's default behavior is to disable this feature.
82 -;cgi.nph = 1
83 -
84 -; if cgi.force_redirect is turned on, and you are not running under Apache or Netscape
85 -; (iPlanet) web servers, you MAY need to set an environment variable name that PHP
86 -; will look for to know it is OK to continue execution.  Setting this variable MAY
87 -; cause security issues, KNOW WHAT YOU ARE DOING FIRST.
88 -; http://php.net/cgi.redirect-status-env
89 -;cgi.redirect_status_env =
90 -
91 -; cgi.fix_pathinfo provides *real* PATH_INFO/PATH_TRANSLATED support for CGI.  PHP's
92 -; previous behaviour was to set PATH_TRANSLATED to SCRIPT_FILENAME, and to not grok
93 -; what PATH_INFO is.  For more information on PATH_INFO, see the cgi specs.  Setting
94 -; this to 1 will cause PHP CGI to fix its paths to conform to the spec.  A setting
95 -; of zero causes PHP to behave as before.  Default is 1.  You should fix your scripts
96 -; to use SCRIPT_FILENAME rather than PATH_TRANSLATED.
97 -; http://php.net/cgi.fix-pathinfo
98 -;cgi.fix_pathinfo=1
99 -
100 -; FastCGI under IIS (on WINNT based OS) supports the ability to impersonate
101 -; security tokens of the calling client.  This allows IIS to define the
102 -; security context that the request runs under.  mod_fastcgi under Apache
103 -; does not currently support this feature (03/17/2002)
104 -; Set to 1 if running under IIS.  Default is zero.
105 -; http://php.net/fastcgi.impersonate
106 -;fastcgi.impersonate = 1
107 -
108 -; Disable logging through FastCGI connection. PHP's default behavior is to enable
109 -; this feature.
110 -;fastcgi.logging = 0
111 -
112 -; cgi.rfc2616_headers configuration option tells PHP what type of headers to
113 -; use when sending HTTP response code. If set to 0, PHP sends Status: header that
114 -; is supported by Apache. When this option is set to 1, PHP will send
115 -; RFC2616 compliant header.
116 -; Default is zero.
117 -; http://php.net/cgi.rfc2616-headers
118 -;cgi.rfc2616_headers = 0
119 -
120  ;;;;;;;;;;;;;;;;
121  ; File Uploads ;
122  ;;;;;;;;;;;;;;;;
123 @@ -869,48 +836,8 @@
124  ; If you only provide the name of the extension, PHP will look for it in its
125  ; default extension directory.
126  ;
127 -; Windows Extensions
128 -; Note that ODBC support is built in, so no dll is needed for it.
129 -; Note that many DLL files are located in the extensions/ (PHP 4) ext/ (PHP 5)
130 -; extension folders as well as the separate PECL DLL download (PHP 5).
131 -; Be sure to appropriately set the extension_dir directive.
132 -;
133 -;extension=php_bz2.dll
134 -;extension=php_curl.dll
135 -;extension=php_fileinfo.dll
136 -;extension=php_gd2.dll
137 -;extension=php_gettext.dll
138 -;extension=php_gmp.dll
139 -;extension=php_intl.dll
140 -;extension=php_imap.dll
141 -;extension=php_interbase.dll
142 -;extension=php_ldap.dll
143 -;extension=php_mbstring.dll
144 -;extension=php_exif.dll      ; Must be after mbstring as it depends on it
145 -;extension=php_mysql.dll
146 -;extension=php_mysqli.dll
147 -;extension=php_oci8_12c.dll  ; Use with Oracle Database 12c Instant Client
148 -;extension=php_openssl.dll
149 -;extension=php_pdo_firebird.dll
150 -;extension=php_pdo_mysql.dll
151 -;extension=php_pdo_oci.dll
152 -;extension=php_pdo_odbc.dll
153 -;extension=php_pdo_pgsql.dll
154 -;extension=php_pdo_sqlite.dll
155 -;extension=php_pgsql.dll
156 -;extension=php_shmop.dll
157 -
158 -; The MIBS data available in the PHP distribution must be installed. 
159 -; See http://www.php.net/manual/en/snmp.installation.php 
160 -;extension=php_snmp.dll
161 -
162 -;extension=php_soap.dll
163 -;extension=php_sockets.dll
164 -;extension=php_sqlite3.dll
165 -;extension=php_sybase_ct.dll
166 -;extension=php_tidy.dll
167 -;extension=php_xmlrpc.dll
168 -;extension=php_xsl.dll
169 +; Ideally in TLD Linux you should install appropriate php-<extension> or
170 +; php-pecl-<extension> package.
171  
172  ;;;;;;;;;;;;;;;;;;;
173  ; Module Settings ;
174 @@ -948,19 +875,19 @@
175  ; Use of this INI entry is deprecated, use global input_encoding instead.
176  ; If empty, default_charset or input_encoding or iconv.input_encoding is used.
177  ; The precedence is: default_charset < intput_encoding < iconv.input_encoding
178 -;iconv.input_encoding =
179 +iconv.input_encoding = UTF-8
180  
181  ; Use of this INI entry is deprecated, use global internal_encoding instead.
182  ; If empty, default_charset or internal_encoding or iconv.internal_encoding is used.
183  ; The precedence is: default_charset < internal_encoding < iconv.internal_encoding
184 -;iconv.internal_encoding =
185 +iconv.internal_encoding = UTF-8
186  
187  ; Use of this INI entry is deprecated, use global output_encoding instead.
188  ; If empty, default_charset or output_encoding or iconv.output_encoding is used.
189  ; The precedence is: default_charset < output_encoding < iconv.output_encoding
190  ; To use an output encoding conversion, iconv's output handler must be set
191  ; otherwise output encoding conversion cannot be performed.
192 -;iconv.output_encoding =
193 +iconv.output_encoding = UTF-8
194  
195  [intl]
196  ;intl.default_locale =
197 @@ -1174,6 +1101,9 @@
198  ; http://php.net/mysql.connect-timeout
199  mysql.connect_timeout = 60
200  
201 +; The name of the character set to use as the default character set.
202 +;mysql.connect_charset=utf8
203 +
204  ; Trace mode. When trace_mode is active (=On), warnings for table/index scans and
205  ; SQL-Errors will be displayed.
206  ; http://php.net/mysql.trace-mode
207 @@ -1213,6 +1143,9 @@
208  ; http://php.net/mysqli.default-socket
209  mysqli.default_socket =
210  
211 +; The name of the character set to use as the default character set.
212 +;mysqli.connect_charset=utf8
213 +
214  ; Default host for mysql_connect() (doesn't apply in safe mode).
215  ; http://php.net/mysqli.default-host
216  mysqli.default_host =
217 @@ -1379,7 +1312,7 @@
218  
219  [browscap]
220  ; http://php.net/browscap
221 -;browscap = extra/browscap.ini
222 +browscap = /etc/php/browscap.ini
223  
224  [Session]
225  ; Handler used to store/retrieve data.
226 @@ -1839,7 +1772,7 @@
227  
228  ; Sets the directory name where SOAP extension will put cache files.
229  ; http://php.net/soap.wsdl-cache-dir
230 -soap.wsdl_cache_dir="/tmp"
231 +soap.wsdl_cache_dir="/var/cache/php"
232  
233  ; (time to live) Sets the number of second while cached file will be used
234  ; instead of original one.