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