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