· 6 years ago · May 03, 2020, 01:54 AM
1[PHP]
2
3;;;;;;;;;;;;;;;;;;;
4; About php.ini ;
5;;;;;;;;;;;;;;;;;;;
6
7curl.cainfo=Z:\home\myusername\php-win\cacert.pem
8openssl.cafile=Z:\home\myusername\php-win\cacert.pem
9
10; PHP comes packaged with two INI files. One that is recommended to be used
11; in production environments and one that is recommended to be used in
12; development environments.
13
14; php.ini-production contains settings which hold security, performance and
15; best practices at its core. But please be aware, these settings may break
16; compatibility with older or less security conscience applications. We
17; recommending using the production ini in production and testing environments.
18
19; php.ini-development is very similar to its production variant, except it is
20; much more verbose when it comes to errors. We recommend using the
21; development version only in development environments, as errors shown to
22; application users can inadvertently leak otherwise secure information.
23
24; This is php.ini-development INI file.
25
26; This directive informs PHP of which errors, warnings and notices you would like
27; it to take action for. The recommended way of setting values for this
28; directive is through the use of the error level constants and bitwise
29; operators. The error level constants are below here for convenience as well as
30; some common settings and their meanings.
31; By default, PHP is set to take action on all errors, notices and warnings EXCEPT
32; those related to E_NOTICE and E_STRICT, which together cover best practices and
33; recommended coding standards in PHP. For performance reasons, this is the
34; recommend error reporting setting. Your production server shouldn't be wasting
35; resources complaining about best practices and coding standards. That's what
36; development servers and development settings are for.
37; Note: The php.ini-development file has this setting as E_ALL. This
38; means it pretty much reports everything which is exactly what you want during
39; development and early testing.
40;
41; Error Level Constants:
42; E_ALL - All errors and warnings (includes E_STRICT as of PHP 5.4.0)
43; E_ERROR - fatal run-time errors
44; E_RECOVERABLE_ERROR - almost fatal run-time errors
45; E_WARNING - run-time warnings (non-fatal errors)
46; E_PARSE - compile-time parse errors
47; E_NOTICE - run-time notices (these are warnings which often result
48; from a bug in your code, but it's possible that it was
49; intentional (e.g., using an uninitialized variable and
50; relying on the fact it is automatically initialized to an
51; empty string)
52; E_STRICT - run-time notices, enable to have PHP suggest changes
53; to your code which will ensure the best interoperability
54; and forward compatibility of your code
55; E_CORE_ERROR - fatal errors that occur during PHP's initial startup
56; E_CORE_WARNING - warnings (non-fatal errors) that occur during PHP's
57; initial startup
58; E_COMPILE_ERROR - fatal compile-time errors
59; E_COMPILE_WARNING - compile-time warnings (non-fatal errors)
60; E_USER_ERROR - user-generated error message
61; E_USER_WARNING - user-generated warning message
62; E_USER_NOTICE - user-generated notice message
63; E_DEPRECATED - warn about code that will not work in future versions
64; of PHP
65; E_USER_DEPRECATED - user-generated deprecation warnings
66;
67; Common Values:
68; E_ALL (Show all errors, warnings and notices including coding standards.)
69; E_ALL & ~E_NOTICE (Show all errors, except for notices)
70; E_ALL & ~E_NOTICE & ~E_STRICT (Show all errors, except for notices and coding standards warnings.)
71; E_COMPILE_ERROR|E_RECOVERABLE_ERROR|E_ERROR|E_CORE_ERROR (Show only errors)
72; Default Value: E_ALL & ~E_NOTICE & ~E_STRICT & ~E_DEPRECATED
73; Development Value: E_ALL
74; Production Value: E_ALL & ~E_DEPRECATED & ~E_STRICT
75; http://php.net/error-reporting
76error_reporting = E_ALL
77
78; This directive controls whether or not and where PHP will output errors,
79; notices and warnings too. Error output is very useful during development, but
80; it could be very dangerous in production environments. Depending on the code
81; which is triggering the error, sensitive information could potentially leak
82; out of your application such as database usernames and passwords or worse.
83; For production environments, we recommend logging errors rather than
84; sending them to STDOUT.
85; Possible Values:
86; Off = Do not display any errors
87; stderr = Display errors to STDERR (affects only CGI/CLI binaries!)
88; On or stdout = Display errors to STDOUT
89; Default Value: On
90; Development Value: On
91; Production Value: Off
92; http://php.net/display-errors
93display_errors = Off
94
95; The display of errors which occur during PHP's startup sequence are handled
96; separately from display_errors. PHP's default behavior is to suppress those
97; errors from clients. Turning the display of startup errors on can be useful in
98; debugging configuration problems. We strongly recommend you
99; set this to 'off' for production servers.
100; Default Value: Off
101; Development Value: On
102; Production Value: Off
103; http://php.net/display-startup-errors
104display_startup_errors = Off
105
106; Besides displaying errors, PHP can also log errors to locations such as a
107; server-specific log, STDERR, or a location specified by the error_log
108; directive found below. While errors should not be displayed on productions
109; servers they should still be monitored and logging is a great way to do that.
110; Default Value: Off
111; Development Value: On
112; Production Value: On
113; http://php.net/log-errors
114log_errors = On
115
116; Set maximum length of log_errors. In error_log information about the source is
117; added. The default is 1024 and 0 allows to not apply any maximum length at all.
118; http://php.net/log-errors-max-len
119log_errors_max_len = 1024
120
121; Do not log repeated messages. Repeated errors must occur in same file on same
122; line unless ignore_repeated_source is set true.
123; http://php.net/ignore-repeated-errors
124ignore_repeated_errors = Off
125
126; Ignore source of message when ignoring repeated messages. When this setting
127; is On you will not log errors with repeated messages from different files or
128; source lines.
129; http://php.net/ignore-repeated-source
130ignore_repeated_source = Off
131
132; If this parameter is set to Off, then memory leaks will not be shown (on
133; stdout or in the log). This has only effect in a debug compile, and if
134; error reporting includes E_WARNING in the allowed list
135; http://php.net/report-memleaks
136report_memleaks = On
137
138; This setting is on by default.
139;report_zend_debug = 0
140
141; Store the last error/warning message in $php_errormsg (boolean). Setting this value
142; to On can assist in debugging and is appropriate for development servers. It should
143; however be disabled on production servers.
144; Default Value: Off
145; Development Value: On
146; Production Value: Off
147; http://php.net/track-errors
148track_errors = On
149
150; Turn off normal error reporting and emit XML-RPC error XML
151; http://php.net/xmlrpc-errors
152;xmlrpc_errors = 0
153
154; An XML-RPC faultCode
155;xmlrpc_error_number = 0
156
157; When PHP displays or logs an error, it has the capability of formatting the
158; error message as HTML for easier reading. This directive controls whether
159; the error message is formatted as HTML or not.
160; Note: This directive is hardcoded to Off for the CLI SAPI
161; Default Value: On
162; Development Value: On
163; Production value: On
164; http://php.net/html-errors
165html_errors = Off
166
167; If html_errors is set to On *and* docref_root is not empty, then PHP
168; produces clickable error messages that direct to a page describing the error
169; or function causing the error in detail.
170; You can download a copy of the PHP manual from http://php.net/docs
171; and change docref_root to the base URL of your local copy including the
172; leading '/'. You must also specify the file extension being used including
173; the dot. PHP's default behavior is to leave these settings empty, in which
174; case no links to documentation are generated.
175; Note: Never use this feature for production boxes.
176; http://php.net/docref-root
177; Examples
178;docref_root = "/phpmanual/"
179
180; http://php.net/docref-ext
181;docref_ext = .html
182
183; String to output before an error message. PHP's default behavior is to leave
184; this setting blank.
185; http://php.net/error-prepend-string
186; Example:
187;error_prepend_string = "<span style='color: #ff0000'>"
188
189; String to output after an error message. PHP's default behavior is to leave
190; this setting blank.
191; http://php.net/error-append-string
192; Example:
193;error_append_string = "</span>"
194
195; Log errors to specified file. PHP's default behavior is to leave this value
196; empty.
197; http://php.net/error-log
198; Example:
199;error_log = php_errors.log
200; Log errors to syslog (Event Log on Windows).
201;error_log = syslog
202
203;windows.show_crt_warning
204; Default value: 0
205; Development value: 0
206; Production value: 0
207
208;;;;;;;;;;;;;;;;;
209; Data Handling ;
210;;;;;;;;;;;;;;;;;
211
212
213;;;;;;;;;;;;;;;;;;;;;;;;;
214; Paths and Directories ;
215;;;;;;;;;;;;;;;;;;;;;;;;;
216
217;;;;;;;;;;;;;;;;
218; File Uploads ;
219;;;;;;;;;;;;;;;;
220
221; Whether to allow HTTP file uploads.
222; http://php.net/file-uploads
223file_uploads = On
224
225; Temporary directory for HTTP uploaded files (will use system default if not
226; specified).
227; http://php.net/upload-tmp-dir
228;upload_tmp_dir =
229
230; Maximum allowed size for uploaded files.
231; http://php.net/upload-max-filesize
232upload_max_filesize = 2M
233
234; Maximum number of files that can be uploaded via a single request
235max_file_uploads = 20
236
237;;;;;;;;;;;;;;;;;;
238; Fopen wrappers ;
239;;;;;;;;;;;;;;;;;;
240
241; Whether to allow the treatment of URLs (like http:// or ftp://) as files.
242; http://php.net/allow-url-fopen
243allow_url_fopen = On
244
245; Whether to allow include/require to open URLs (like http:// or ftp://) as files.
246; http://php.net/allow-url-include
247allow_url_include = Off
248
249; Define the anonymous ftp password (your email address). PHP's default setting
250; for this is empty.
251; http://php.net/from
252;from="john@doe.com"
253
254; Define the User-Agent string. PHP's default setting for this is empty.
255; http://php.net/user-agent
256;user_agent="PHP"
257
258; Default timeout for socket based streams (seconds)
259; http://php.net/default-socket-timeout
260default_socket_timeout = 60
261
262; If your scripts have to deal with files from Macintosh systems,
263; or you are running on a Mac and need to deal with files from
264; unix or win32 systems, setting this flag will cause PHP to
265; automatically detect the EOL character in those files so that
266; fgets() and file() will work regardless of the source of the file.
267; http://php.net/auto-detect-line-endings
268;auto_detect_line_endings = Off
269
270;;;;;;;;;;;;;;;;;;;;;;
271; Dynamic Extensions ;
272;;;;;;;;;;;;;;;;;;;;;;
273
274; If you wish to have an extension loaded automatically, use the following
275; syntax:
276;
277; extension=modulename.extension
278;
279; For example, on Windows:
280;
281; extension=msql.dll
282;
283; ... or under UNIX:
284;
285; extension=msql.so
286;
287; ... or with a path:
288;
289; extension=/path/to/extension/msql.so
290;
291; If you only provide the name of the extension, PHP will look for it in its
292; default extension directory.
293;
294; Windows Extensions
295; Note that ODBC support is built in, so no dll is needed for it.
296; Note that many DLL files are located in the extensions/ (PHP 4) ext/ (PHP 5+)
297; extension folders as well as the separate PECL DLL download (PHP 5+).
298; Be sure to appropriately set the extension_dir directive.
299;
300extension=Z:\home\myusername\php-win\ext\php_bz2.dll
301extension=Z:\home\myusername\php-win\ext\php_curl.dll
302extension=Z:\home\myusername\php-win\ext\php_fileinfo.dll
303extension=Z:\home\myusername\php-win\ext\php_ftp.dll
304extension=Z:\home\myusername\php-win\ext\php_gd2.dll
305extension=Z:\home\myusername\php-win\ext\php_gettext.dll
306extension=Z:\home\myusername\php-win\ext\php_gmp.dll
307extension=Z:\home\myusername\php-win\ext\php_intl.dll
308extension=Z:\home\myusername\php-win\ext\php_imap.dll
309;extension=Z:\home\myusername\php-win\ext\php_interbase.dll
310extension=Z:\home\myusername\php-win\ext\php_ldap.dll
311extension=Z:\home\myusername\php-win\ext\php_mbstring.dll
312extension=Z:\home\myusername\php-win\ext\php_exif.dll
313extension=Z:\home\myusername\php-win\ext\php_mysqli.dll
314;extension=Z:\home\myusername\php-win\ext\php_oci8_12c.dll
315extension=Z:\home\myusername\php-win\ext\php_openssl.dll
316;extension=Z:\home\myusername\php-win\ext\php_pdo_firebird.dll
317extension=Z:\home\myusername\php-win\ext\php_pdo_mysql.dll
318;extension=Z:\home\myusername\php-win\ext\php_pdo_oci.dll
319extension=Z:\home\myusername\php-win\ext\php_pdo_odbc.dll
320extension=Z:\home\myusername\php-win\ext\php_pdo_pgsql.dll
321extension=Z:\home\myusername\php-win\ext\php_pdo_sqlite.dll
322extension=Z:\home\myusername\php-win\ext\php_pgsql.dll
323extension=Z:\home\myusername\php-win\ext\php_shmop.dll
324
325; The MIBS data available in the PHP distribution must be installed.
326; See http://www.php.net/manual/en/snmp.installation.php
327;extension=php_snmp.dll
328
329extension=Z:\home\myusername\php-win\ext\php_soap.dll
330extension=Z:\home\myusername\php-win\ext\php_sockets.dll
331extension=Z:\home\myusername\php-win\ext\php_sqlite3.dll
332extension=Z:\home\myusername\php-win\ext\php_tidy.dll
333extension=Z:\home\myusername\php-win\ext\php_xmlrpc.dll
334
335;extension=Z:\home\myusername\php-win\ext\php_xsl.dll
336;;;;;;;;;;;;;;;;;;;
337; Module Settings ;
338;;;;;;;;;;;;;;;;;;;
339
340[CLI Server]
341; Whether the CLI web server uses ANSI color coding in its terminal output.
342cli_server.color = On
343
344[Date]
345; Defines the default timezone used by the date functions
346; http://php.net/date.timezone
347;date.timezone =
348
349; http://php.net/date.default-latitude
350;date.default_latitude = 31.7667
351
352; http://php.net/date.default-longitude
353;date.default_longitude = 35.2333
354
355; http://php.net/date.sunrise-zenith
356;date.sunrise_zenith = 90.583333
357
358; http://php.net/date.sunset-zenith
359;date.sunset_zenith = 90.583333
360
361[filter]
362; http://php.net/filter.default
363;filter.default = unsafe_raw
364
365; http://php.net/filter.default-flags
366;filter.default_flags =
367
368[iconv]
369; Use of this INI entry is deprecated, use global input_encoding instead.
370; If empty, default_charset or input_encoding or iconv.input_encoding is used.
371; The precedence is: default_charset < intput_encoding < iconv.input_encoding
372;iconv.input_encoding =
373
374; Use of this INI entry is deprecated, use global internal_encoding instead.
375; If empty, default_charset or internal_encoding or iconv.internal_encoding is used.
376; The precedence is: default_charset < internal_encoding < iconv.internal_encoding
377;iconv.internal_encoding =
378
379; Use of this INI entry is deprecated, use global output_encoding instead.
380; If empty, default_charset or output_encoding or iconv.output_encoding is used.
381; The precedence is: default_charset < output_encoding < iconv.output_encoding
382; To use an output encoding conversion, iconv's output handler must be set
383; otherwise output encoding conversion cannot be performed.
384;iconv.output_encoding =
385
386[intl]
387;intl.default_locale =
388; This directive allows you to produce PHP errors when some error
389; happens within intl functions. The value is the level of the error produced.
390; Default is 0, which does not produce any errors.
391;intl.error_level = E_WARNING
392;intl.use_exceptions = 0
393
394[sqlite3]
395;sqlite3.extension_dir =
396
397[Pcre]
398;PCRE library backtracking limit.
399; http://php.net/pcre.backtrack-limit
400;pcre.backtrack_limit=100000
401
402;PCRE library recursion limit.
403;Please note that if you set this value to a high number you may consume all
404;the available process stack and eventually crash PHP (due to reaching the
405;stack size limit imposed by the Operating System).
406; http://php.net/pcre.recursion-limit
407;pcre.recursion_limit=100000
408
409;Enables or disables JIT compilation of patterns. This requires the PCRE
410;library to be compiled with JIT support.
411;pcre.jit=1
412
413[Pdo]
414; Whether to pool ODBC connections. Can be one of "strict", "relaxed" or "off"
415; http://php.net/pdo-odbc.connection-pooling
416;pdo_odbc.connection_pooling=strict
417
418;pdo_odbc.db2_instance_name
419
420[Pdo_mysql]
421; If mysqlnd is used: Number of cache slots for the internal result set cache
422; http://php.net/pdo_mysql.cache_size
423pdo_mysql.cache_size = 2000
424
425; Default socket name for local MySQL connects. If empty, uses the built-in
426; MySQL defaults.
427; http://php.net/pdo_mysql.default-socket
428pdo_mysql.default_socket=
429
430[Phar]
431; http://php.net/phar.readonly
432;phar.readonly = On
433
434; http://php.net/phar.require-hash
435;phar.require_hash = On
436
437;phar.cache_list =
438
439[mail function]
440; For Win32 only.
441; http://php.net/smtp
442SMTP = localhost
443; http://php.net/smtp-port
444smtp_port = 25
445
446; For Win32 only.
447; http://php.net/sendmail-from
448;sendmail_from = me@example.com
449
450; For Unix only. You may supply arguments as well (default: "sendmail -t -i").
451; http://php.net/sendmail-path
452;sendmail_path =
453
454; Force the addition of the specified parameters to be passed as extra parameters
455; to the sendmail binary. These parameters will always replace the value of
456; the 5th parameter to mail().
457;mail.force_extra_parameters =
458
459; Add X-PHP-Originating-Script: that will include uid of the script followed by the filename
460mail.add_x_header = On
461
462; The path to a log file that will log all mail() calls. Log entries include
463; the full path of the script, line number, To address and headers.
464;mail.log =
465; Log mail to syslog (Event Log on Windows).
466;mail.log = syslog
467
468[SQL]
469; http://php.net/sql.safe-mode
470sql.safe_mode = Off
471
472[ODBC]
473; http://php.net/odbc.default-db
474;odbc.default_db = Not yet implemented
475
476; http://php.net/odbc.default-user
477;odbc.default_user = Not yet implemented
478
479; http://php.net/odbc.default-pw
480;odbc.default_pw = Not yet implemented
481
482; Controls the ODBC cursor model.
483; Default: SQL_CURSOR_STATIC (default).
484;odbc.default_cursortype
485
486; Allow or prevent persistent links.
487; http://php.net/odbc.allow-persistent
488odbc.allow_persistent = On
489
490; Check that a connection is still valid before reuse.
491; http://php.net/odbc.check-persistent
492odbc.check_persistent = On
493
494; Maximum number of persistent links. -1 means no limit.
495; http://php.net/odbc.max-persistent
496odbc.max_persistent = -1
497
498; Maximum number of links (persistent + non-persistent). -1 means no limit.
499; http://php.net/odbc.max-links
500odbc.max_links = -1
501
502; Handling of LONG fields. Returns number of bytes to variables. 0 means
503; passthru.
504; http://php.net/odbc.defaultlrl
505odbc.defaultlrl = 4096
506
507; Handling of binary data. 0 means passthru, 1 return as is, 2 convert to char.
508; See the documentation on odbc_binmode and odbc_longreadlen for an explanation
509; of odbc.defaultlrl and odbc.defaultbinmode
510; http://php.net/odbc.defaultbinmode
511odbc.defaultbinmode = 1
512
513;birdstep.max_links = -1
514
515[Interbase]
516; Allow or prevent persistent links.
517ibase.allow_persistent = 1
518
519; Maximum number of persistent links. -1 means no limit.
520ibase.max_persistent = -1
521
522; Maximum number of links (persistent + non-persistent). -1 means no limit.
523ibase.max_links = -1
524
525; Default database name for ibase_connect().
526;ibase.default_db =
527
528; Default username for ibase_connect().
529;ibase.default_user =
530
531; Default password for ibase_connect().
532;ibase.default_password =
533
534; Default charset for ibase_connect().
535;ibase.default_charset =
536
537; Default timestamp format.
538ibase.timestampformat = "%Y-%m-%d %H:%M:%S"
539
540; Default date format.
541ibase.dateformat = "%Y-%m-%d"
542
543; Default time format.
544ibase.timeformat = "%H:%M:%S"
545
546[MySQLi]
547
548; Maximum number of persistent links. -1 means no limit.
549; http://php.net/mysqli.max-persistent
550mysqli.max_persistent = -1
551
552; Allow accessing, from PHP's perspective, local files with LOAD DATA statements
553; http://php.net/mysqli.allow_local_infile
554;mysqli.allow_local_infile = On
555
556; Allow or prevent persistent links.
557; http://php.net/mysqli.allow-persistent
558mysqli.allow_persistent = On
559
560; Maximum number of links. -1 means no limit.
561; http://php.net/mysqli.max-links
562mysqli.max_links = -1
563
564; If mysqlnd is used: Number of cache slots for the internal result set cache
565; http://php.net/mysqli.cache_size
566mysqli.cache_size = 2000
567
568; Default port number for mysqli_connect(). If unset, mysqli_connect() will use
569; the $MYSQL_TCP_PORT or the mysql-tcp entry in /etc/services or the
570; compile-time value defined MYSQL_PORT (in that order). Win32 will only look
571; at MYSQL_PORT.
572; http://php.net/mysqli.default-port
573mysqli.default_port = 3306
574
575; Default socket name for local MySQL connects. If empty, uses the built-in
576; MySQL defaults.
577; http://php.net/mysqli.default-socket
578mysqli.default_socket =
579
580; Default host for mysql_connect() (doesn't apply in safe mode).
581; http://php.net/mysqli.default-host
582mysqli.default_host =
583
584; Default user for mysql_connect() (doesn't apply in safe mode).
585; http://php.net/mysqli.default-user
586mysqli.default_user =
587
588; Default password for mysqli_connect() (doesn't apply in safe mode).
589; Note that this is generally a *bad* idea to store passwords in this file.
590; *Any* user with PHP access can run 'echo get_cfg_var("mysqli.default_pw")
591; and reveal this password! And of course, any users with read access to this
592; file will be able to reveal the password as well.
593; http://php.net/mysqli.default-pw
594mysqli.default_pw =
595
596; Allow or prevent reconnect
597mysqli.reconnect = Off
598
599[mysqlnd]
600; Enable / Disable collection of general statistics by mysqlnd which can be
601; used to tune and monitor MySQL operations.
602; http://php.net/mysqlnd.collect_statistics
603mysqlnd.collect_statistics = On
604
605; Enable / Disable collection of memory usage statistics by mysqlnd which can be
606; used to tune and monitor MySQL operations.
607; http://php.net/mysqlnd.collect_memory_statistics
608mysqlnd.collect_memory_statistics = On
609
610; Records communication from all extensions using mysqlnd to the specified log
611; file.
612; http://php.net/mysqlnd.debug
613;mysqlnd.debug =
614
615; Defines which queries will be logged.
616; http://php.net/mysqlnd.log_mask
617;mysqlnd.log_mask = 0
618
619; Default size of the mysqlnd memory pool, which is used by result sets.
620; http://php.net/mysqlnd.mempool_default_size
621;mysqlnd.mempool_default_size = 16000
622
623; Size of a pre-allocated buffer used when sending commands to MySQL in bytes.
624; http://php.net/mysqlnd.net_cmd_buffer_size
625;mysqlnd.net_cmd_buffer_size = 2048
626
627; Size of a pre-allocated buffer used for reading data sent by the server in
628; bytes.
629; http://php.net/mysqlnd.net_read_buffer_size
630;mysqlnd.net_read_buffer_size = 32768
631
632; Timeout for network requests in seconds.
633; http://php.net/mysqlnd.net_read_timeout
634;mysqlnd.net_read_timeout = 31536000
635
636; SHA-256 Authentication Plugin related. File with the MySQL server public RSA
637; key.
638; http://php.net/mysqlnd.sha256_server_public_key
639;mysqlnd.sha256_server_public_key =
640
641[OCI8]
642
643; Connection: Enables privileged connections using external
644; credentials (OCI_SYSOPER, OCI_SYSDBA)
645; http://php.net/oci8.privileged-connect
646;oci8.privileged_connect = Off
647
648; Connection: The maximum number of persistent OCI8 connections per
649; process. Using -1 means no limit.
650; http://php.net/oci8.max-persistent
651;oci8.max_persistent = -1
652
653; Connection: The maximum number of seconds a process is allowed to
654; maintain an idle persistent connection. Using -1 means idle
655; persistent connections will be maintained forever.
656; http://php.net/oci8.persistent-timeout
657;oci8.persistent_timeout = -1
658
659; Connection: The number of seconds that must pass before issuing a
660; ping during oci_pconnect() to check the connection validity. When
661; set to 0, each oci_pconnect() will cause a ping. Using -1 disables
662; pings completely.
663; http://php.net/oci8.ping-interval
664;oci8.ping_interval = 60
665
666; Connection: Set this to a user chosen connection class to be used
667; for all pooled server requests with Oracle 11g Database Resident
668; Connection Pooling (DRCP). To use DRCP, this value should be set to
669; the same string for all web servers running the same application,
670; the database pool must be configured, and the connection string must
671; specify to use a pooled server.
672;oci8.connection_class =
673
674; High Availability: Using On lets PHP receive Fast Application
675; Notification (FAN) events generated when a database node fails. The
676; database must also be configured to post FAN events.
677;oci8.events = Off
678
679; Tuning: This option enables statement caching, and specifies how
680; many statements to cache. Using 0 disables statement caching.
681; http://php.net/oci8.statement-cache-size
682;oci8.statement_cache_size = 20
683
684; Tuning: Enables statement prefetching and sets the default number of
685; rows that will be fetched automatically after statement execution.
686; http://php.net/oci8.default-prefetch
687;oci8.default_prefetch = 100
688
689; Compatibility. Using On means oci_close() will not close
690; oci_connect() and oci_new_connect() connections.
691; http://php.net/oci8.old-oci-close-semantics
692;oci8.old_oci_close_semantics = Off
693
694[PostgreSQL]
695; Allow or prevent persistent links.
696; http://php.net/pgsql.allow-persistent
697pgsql.allow_persistent = On
698
699; Detect broken persistent links always with pg_pconnect().
700; Auto reset feature requires a little overheads.
701; http://php.net/pgsql.auto-reset-persistent
702pgsql.auto_reset_persistent = Off
703
704; Maximum number of persistent links. -1 means no limit.
705; http://php.net/pgsql.max-persistent
706pgsql.max_persistent = -1
707
708; Maximum number of links (persistent+non persistent). -1 means no limit.
709; http://php.net/pgsql.max-links
710pgsql.max_links = -1
711
712; Ignore PostgreSQL backends Notice message or not.
713; Notice message logging require a little overheads.
714; http://php.net/pgsql.ignore-notice
715pgsql.ignore_notice = 0
716
717; Log PostgreSQL backends Notice message or not.
718; Unless pgsql.ignore_notice=0, module cannot log notice message.
719; http://php.net/pgsql.log-notice
720pgsql.log_notice = 0
721
722[bcmath]
723; Number of decimal digits for all bcmath functions.
724; http://php.net/bcmath.scale
725bcmath.scale = 0
726
727[browscap]
728; http://php.net/browscap
729;browscap = extra/browscap.ini
730
731[Session]
732; Handler used to store/retrieve data.
733; http://php.net/session.save-handler
734session.save_handler = files
735
736; Argument passed to save_handler. In the case of files, this is the path
737; where data files are stored. Note: Windows users have to change this
738; variable in order to use PHP's session functions.
739;
740; The path can be defined as:
741;
742; session.save_path = "N;/path"
743;
744; where N is an integer. Instead of storing all the session files in
745; /path, what this will do is use subdirectories N-levels deep, and
746; store the session data in those directories. This is useful if
747; your OS has problems with many files in one directory, and is
748; a more efficient layout for servers that handle many sessions.
749;
750; NOTE 1: PHP will not create this directory structure automatically.
751; You can use the script in the ext/session dir for that purpose.
752; NOTE 2: See the section on garbage collection below if you choose to
753; use subdirectories for session storage
754;
755; The file storage module creates files using mode 600 by default.
756; You can change that by using
757;
758; session.save_path = "N;MODE;/path"
759;
760; where MODE is the octal representation of the mode. Note that this
761; does not overwrite the process's umask.
762; http://php.net/session.save-path
763;session.save_path = "/tmp"
764
765; Whether to use strict session mode.
766; Strict session mode does not accept uninitialized session ID and regenerate
767; session ID if browser sends uninitialized session ID. Strict mode protects
768; applications from session fixation via session adoption vulnerability. It is
769; disabled by default for maximum compatibility, but enabling it is encouraged.
770; https://wiki.php.net/rfc/strict_sessions
771session.use_strict_mode = 0
772
773; Whether to use cookies.
774; http://php.net/session.use-cookies
775session.use_cookies = 1
776
777; http://php.net/session.cookie-secure
778;session.cookie_secure =
779
780; This option forces PHP to fetch and use a cookie for storing and maintaining
781; the session id. We encourage this operation as it's very helpful in combating
782; session hijacking when not specifying and managing your own session id. It is
783; not the be-all and end-all of session hijacking defense, but it's a good start.
784; http://php.net/session.use-only-cookies
785session.use_only_cookies = 1
786
787; Name of the session (used as cookie name).
788; http://php.net/session.name
789session.name = PHPSESSID
790
791; Initialize session on request startup.
792; http://php.net/session.auto-start
793session.auto_start = 0
794
795; Lifetime in seconds of cookie or, if 0, until browser is restarted.
796; http://php.net/session.cookie-lifetime
797session.cookie_lifetime = 0
798
799; The path for which the cookie is valid.
800; http://php.net/session.cookie-path
801session.cookie_path = /
802
803; The domain for which the cookie is valid.
804; http://php.net/session.cookie-domain
805session.cookie_domain =
806
807; Whether or not to add the httpOnly flag to the cookie, which makes it inaccessible to browser scripting languages such as JavaScript.
808; http://php.net/session.cookie-httponly
809session.cookie_httponly =
810
811; Handler used to serialize data. php is the standard serializer of PHP.
812; http://php.net/session.serialize-handler
813session.serialize_handler = php
814
815; Defines the probability that the 'garbage collection' process is started
816; on every session initialization. The probability is calculated by using
817; gc_probability/gc_divisor. Where session.gc_probability is the numerator
818; and gc_divisor is the denominator in the equation. Setting this value to 1
819; when the session.gc_divisor value is 100 will give you approximately a 1% chance
820; the gc will run on any give request.
821; Default Value: 1
822; Development Value: 1
823; Production Value: 1
824; http://php.net/session.gc-probability
825session.gc_probability = 1
826
827; Defines the probability that the 'garbage collection' process is started on every
828; session initialization. The probability is calculated by using the following equation:
829; gc_probability/gc_divisor. Where session.gc_probability is the numerator and
830; session.gc_divisor is the denominator in the equation. Setting this value to 1
831; when the session.gc_divisor value is 100 will give you approximately a 1% chance
832; the gc will run on any give request. Increasing this value to 1000 will give you
833; a 0.1% chance the gc will run on any give request. For high volume production servers,
834; this is a more efficient approach.
835; Default Value: 100
836; Development Value: 1000
837; Production Value: 1000
838; http://php.net/session.gc-divisor
839session.gc_divisor = 1000
840
841; After this number of seconds, stored data will be seen as 'garbage' and
842; cleaned up by the garbage collection process.
843; http://php.net/session.gc-maxlifetime
844session.gc_maxlifetime = 1440
845
846; NOTE: If you are using the subdirectory option for storing session files
847; (see session.save_path above), then garbage collection does *not*
848; happen automatically. You will need to do your own garbage
849; collection through a shell script, cron entry, or some other method.
850; For example, the following script would is the equivalent of
851; setting session.gc_maxlifetime to 1440 (1440 seconds = 24 minutes):
852; find /path/to/sessions -cmin +24 -type f | xargs rm
853
854; Check HTTP Referer to invalidate externally stored URLs containing ids.
855; HTTP_REFERER has to contain this substring for the session to be
856; considered as valid.
857; http://php.net/session.referer-check
858session.referer_check =
859
860; Set to {nocache,private,public,} to determine HTTP caching aspects
861; or leave this empty to avoid sending anti-caching headers.
862; http://php.net/session.cache-limiter
863session.cache_limiter = nocache
864
865; Document expires after n minutes.
866; http://php.net/session.cache-expire
867session.cache_expire = 180
868
869; trans sid support is disabled by default.
870; Use of trans sid may risk your users' security.
871; Use this option with caution.
872; - User may send URL contains active session ID
873; to other person via. email/irc/etc.
874; - URL that contains active session ID may be stored
875; in publicly accessible computer.
876; - User may access your site with the same session ID
877; always using URL stored in browser's history or bookmarks.
878; http://php.net/session.use-trans-sid
879session.use_trans_sid = 0
880
881; Set session ID character length. This value could be between 22 to 256.
882; Shorter length than default is supported only for compatibility reason.
883; Users should use 32 or more chars.
884; http://php.net/session.sid-length
885; Default Value: 32
886; Development Value: 26
887; Production Value: 26
888session.sid_length = 26
889
890; The URL rewriter will look for URLs in a defined set of HTML tags.
891; <form> is special; if you include them here, the rewriter will
892; add a hidden <input> field with the info which is otherwise appended
893; to URLs. <form> tag's action attribute URL will not be modified
894; unless it is specified.
895; Note that all valid entries require a "=", even if no value follows.
896; Default Value: "a=href,area=href,frame=src,form="
897; Development Value: "a=href,area=href,frame=src,form="
898; Production Value: "a=href,area=href,frame=src,form="
899; http://php.net/url-rewriter.tags
900session.trans_sid_tags = "a=href,area=href,frame=src,form="
901
902; URL rewriter does not rewrite absolute URLs by default.
903; To enable rewrites for absolute pathes, target hosts must be specified
904; at RUNTIME. i.e. use ini_set()
905; <form> tags is special. PHP will check action attribute's URL regardless
906; of session.trans_sid_tags setting.
907; If no host is defined, HTTP_HOST will be used for allowed host.
908; Example value: php.net,www.php.net,wiki.php.net
909; Use "," for multiple hosts. No spaces are allowed.
910; Default Value: ""
911; Development Value: ""
912; Production Value: ""
913;session.trans_sid_hosts=""
914
915; Define how many bits are stored in each character when converting
916; the binary hash data to something readable.
917; Possible values:
918; 4 (4 bits: 0-9, a-f)
919; 5 (5 bits: 0-9, a-v)
920; 6 (6 bits: 0-9, a-z, A-Z, "-", ",")
921; Default Value: 4
922; Development Value: 5
923; Production Value: 5
924; http://php.net/session.hash-bits-per-character
925session.sid_bits_per_character = 5
926
927; Enable upload progress tracking in $_SESSION
928; Default Value: On
929; Development Value: On
930; Production Value: On
931; http://php.net/session.upload-progress.enabled
932;session.upload_progress.enabled = On
933
934; Cleanup the progress information as soon as all POST data has been read
935; (i.e. upload completed).
936; Default Value: On
937; Development Value: On
938; Production Value: On
939; http://php.net/session.upload-progress.cleanup
940;session.upload_progress.cleanup = On
941
942; A prefix used for the upload progress key in $_SESSION
943; Default Value: "upload_progress_"
944; Development Value: "upload_progress_"
945; Production Value: "upload_progress_"
946; http://php.net/session.upload-progress.prefix
947;session.upload_progress.prefix = "upload_progress_"
948
949; The index name (concatenated with the prefix) in $_SESSION
950; containing the upload progress information
951; Default Value: "PHP_SESSION_UPLOAD_PROGRESS"
952; Development Value: "PHP_SESSION_UPLOAD_PROGRESS"
953; Production Value: "PHP_SESSION_UPLOAD_PROGRESS"
954; http://php.net/session.upload-progress.name
955;session.upload_progress.name = "PHP_SESSION_UPLOAD_PROGRESS"
956
957; How frequently the upload progress should be updated.
958; Given either in percentages (per-file), or in bytes
959; Default Value: "1%"
960; Development Value: "1%"
961; Production Value: "1%"
962; http://php.net/session.upload-progress.freq
963;session.upload_progress.freq = "1%"
964
965; The minimum delay between updates, in seconds
966; Default Value: 1
967; Development Value: 1
968; Production Value: 1
969; http://php.net/session.upload-progress.min-freq
970;session.upload_progress.min_freq = "1"
971
972; Only write session data when session data is changed. Enabled by default.
973; http://php.net/session.lazy-write
974;session.lazy_write = On
975
976[Assertion]
977; Switch whether to compile assertions at all (to have no overhead at run-time)
978; -1: Do not compile at all
979; 0: Jump over assertion at run-time
980; 1: Execute assertions
981; Changing from or to a negative value is only possible in php.ini! (For turning assertions on and off at run-time, see assert.active, when zend.assertions = 1)
982; Default Value: 1
983; Development Value: 1
984; Production Value: -1
985; http://php.net/zend.assertions
986zend.assertions = 1
987
988; Assert(expr); active by default.
989; http://php.net/assert.active
990;assert.active = On
991
992; Throw an AssertationException on failed assertions
993; http://php.net/assert.exception
994;assert.exception = On
995
996; Issue a PHP warning for each failed assertion. (Overridden by assert.exception if active)
997; http://php.net/assert.warning
998;assert.warning = On
999
1000; Don't bail out by default.
1001; http://php.net/assert.bail
1002;assert.bail = Off
1003
1004; User-function to be called if an assertion fails.
1005; http://php.net/assert.callback
1006;assert.callback = 0
1007
1008; Eval the expression with current error_reporting(). Set to true if you want
1009; error_reporting(0) around the eval().
1010; http://php.net/assert.quiet-eval
1011;assert.quiet_eval = 0
1012
1013[COM]
1014; path to a file containing GUIDs, IIDs or filenames of files with TypeLibs
1015; http://php.net/com.typelib-file
1016;com.typelib_file =
1017
1018; allow Distributed-COM calls
1019; http://php.net/com.allow-dcom
1020;com.allow_dcom = true
1021
1022; autoregister constants of a components typlib on com_load()
1023; http://php.net/com.autoregister-typelib
1024;com.autoregister_typelib = true
1025
1026; register constants casesensitive
1027; http://php.net/com.autoregister-casesensitive
1028;com.autoregister_casesensitive = false
1029
1030; show warnings on duplicate constant registrations
1031; http://php.net/com.autoregister-verbose
1032;com.autoregister_verbose = true
1033
1034; The default character set code-page to use when passing strings to and from COM objects.
1035; Default: system ANSI code page
1036;com.code_page=
1037
1038[mbstring]
1039; language for internal character representation.
1040; This affects mb_send_mail() and mbstring.detect_order.
1041; http://php.net/mbstring.language
1042;mbstring.language = Japanese
1043
1044; Use of this INI entry is deprecated, use global internal_encoding instead.
1045; internal/script encoding.
1046; Some encoding cannot work as internal encoding. (e.g. SJIS, BIG5, ISO-2022-*)
1047; If empty, default_charset or internal_encoding or iconv.internal_encoding is used.
1048; The precedence is: default_charset < internal_encoding < iconv.internal_encoding
1049;mbstring.internal_encoding =
1050
1051; Use of this INI entry is deprecated, use global input_encoding instead.
1052; http input encoding.
1053; mbstring.encoding_traslation = On is needed to use this setting.
1054; If empty, default_charset or input_encoding or mbstring.input is used.
1055; The precedence is: default_charset < intput_encoding < mbsting.http_input
1056; http://php.net/mbstring.http-input
1057;mbstring.http_input =
1058
1059; Use of this INI entry is deprecated, use global output_encoding instead.
1060; http output encoding.
1061; mb_output_handler must be registered as output buffer to function.
1062; If empty, default_charset or output_encoding or mbstring.http_output is used.
1063; The precedence is: default_charset < output_encoding < mbstring.http_output
1064; To use an output encoding conversion, mbstring's output handler must be set
1065; otherwise output encoding conversion cannot be performed.
1066; http://php.net/mbstring.http-output
1067;mbstring.http_output =
1068
1069; enable automatic encoding translation according to
1070; mbstring.internal_encoding setting. Input chars are
1071; converted to internal encoding by setting this to On.
1072; Note: Do _not_ use automatic encoding translation for
1073; portable libs/applications.
1074; http://php.net/mbstring.encoding-translation
1075;mbstring.encoding_translation = Off
1076
1077; automatic encoding detection order.
1078; "auto" detect order is changed according to mbstring.language
1079; http://php.net/mbstring.detect-order
1080;mbstring.detect_order = auto
1081
1082; substitute_character used when character cannot be converted
1083; one from another
1084; http://php.net/mbstring.substitute-character
1085;mbstring.substitute_character = none
1086
1087; overload(replace) single byte functions by mbstring functions.
1088; mail(), ereg(), etc are overloaded by mb_send_mail(), mb_ereg(),
1089; etc. Possible values are 0,1,2,4 or combination of them.
1090; For example, 7 for overload everything.
1091; 0: No overload
1092; 1: Overload mail() function
1093; 2: Overload str*() functions
1094; 4: Overload ereg*() functions
1095; http://php.net/mbstring.func-overload
1096;mbstring.func_overload = 0
1097
1098; enable strict encoding detection.
1099; Default: Off
1100;mbstring.strict_detection = On
1101
1102; This directive specifies the regex pattern of content types for which mb_output_handler()
1103; is activated.
1104; Default: mbstring.http_output_conv_mimetype=^(text/|application/xhtml\+xml)
1105;mbstring.http_output_conv_mimetype=
1106
1107[gd]
1108; Tell the jpeg decode to ignore warnings and try to create
1109; a gd image. The warning will then be displayed as notices
1110; disabled by default
1111; http://php.net/gd.jpeg-ignore-warning
1112;gd.jpeg_ignore_warning = 1
1113
1114[exif]
1115; Exif UNICODE user comments are handled as UCS-2BE/UCS-2LE and JIS as JIS.
1116; With mbstring support this will automatically be converted into the encoding
1117; given by corresponding encode setting. When empty mbstring.internal_encoding
1118; is used. For the decode settings you can distinguish between motorola and
1119; intel byte order. A decode setting cannot be empty.
1120; http://php.net/exif.encode-unicode
1121;exif.encode_unicode = ISO-8859-15
1122
1123; http://php.net/exif.decode-unicode-motorola
1124;exif.decode_unicode_motorola = UCS-2BE
1125
1126; http://php.net/exif.decode-unicode-intel
1127;exif.decode_unicode_intel = UCS-2LE
1128
1129; http://php.net/exif.encode-jis
1130;exif.encode_jis =
1131
1132; http://php.net/exif.decode-jis-motorola
1133;exif.decode_jis_motorola = JIS
1134
1135; http://php.net/exif.decode-jis-intel
1136;exif.decode_jis_intel = JIS
1137
1138[Tidy]
1139; The path to a default tidy configuration file to use when using tidy
1140; http://php.net/tidy.default-config
1141;tidy.default_config = /usr/local/lib/php/default.tcfg
1142
1143; Should tidy clean and repair output automatically?
1144; WARNING: Do not use this option if you are generating non-html content
1145; such as dynamic images
1146; http://php.net/tidy.clean-output
1147tidy.clean_output = Off
1148
1149[soap]
1150; Enables or disables WSDL caching feature.
1151; http://php.net/soap.wsdl-cache-enabled
1152soap.wsdl_cache_enabled=1
1153
1154; Sets the directory name where SOAP extension will put cache files.
1155; http://php.net/soap.wsdl-cache-dir
1156soap.wsdl_cache_dir="/tmp"
1157
1158; (time to live) Sets the number of second while cached file will be used
1159; instead of original one.
1160; http://php.net/soap.wsdl-cache-ttl
1161soap.wsdl_cache_ttl=86400
1162
1163; Sets the size of the cache limit. (Max. number of WSDL files to cache)
1164soap.wsdl_cache_limit = 5
1165
1166[sysvshm]
1167; A default size of the shared memory segment
1168;sysvshm.init_mem = 10000
1169
1170[ldap]
1171; Sets the maximum number of open links or -1 for unlimited.
1172ldap.max_links = -1
1173
1174[mcrypt]
1175; For more information about mcrypt settings see http://php.net/mcrypt-module-open
1176
1177; Directory where to load mcrypt algorithms
1178; Default: Compiled in into libmcrypt (usually /usr/local/lib/libmcrypt)
1179;mcrypt.algorithms_dir=
1180
1181; Directory where to load mcrypt modes
1182; Default: Compiled in into libmcrypt (usually /usr/local/lib/libmcrypt)
1183;mcrypt.modes_dir=
1184
1185[dba]
1186;dba.default_handler=
1187
1188[opcache]
1189; Determines if Zend OPCache is enabled
1190;opcache.enable=1
1191
1192; Determines if Zend OPCache is enabled for the CLI version of PHP
1193;opcache.enable_cli=1
1194
1195; The OPcache shared memory storage size.
1196;opcache.memory_consumption=128
1197
1198; The amount of memory for interned strings in Mbytes.
1199;opcache.interned_strings_buffer=8
1200
1201; The maximum number of keys (scripts) in the OPcache hash table.
1202; Only numbers between 200 and 100000 are allowed.
1203;opcache.max_accelerated_files=10000
1204
1205; The maximum percentage of "wasted" memory until a restart is scheduled.
1206;opcache.max_wasted_percentage=5
1207
1208; When this directive is enabled, the OPcache appends the current working
1209; directory to the script key, thus eliminating possible collisions between
1210; files with the same name (basename). Disabling the directive improves
1211; performance, but may break existing applications.
1212;opcache.use_cwd=1
1213
1214; When disabled, you must reset the OPcache manually or restart the
1215; webserver for changes to the filesystem to take effect.
1216;opcache.validate_timestamps=1
1217
1218; How often (in seconds) to check file timestamps for changes to the shared
1219; memory storage allocation. ("1" means validate once per second, but only
1220; once per request. "0" means always validate)
1221;opcache.revalidate_freq=2
1222
1223; Enables or disables file search in include_path optimization
1224;opcache.revalidate_path=0
1225
1226; If disabled, all PHPDoc comments are dropped from the code to reduce the
1227; size of the optimized code.
1228;opcache.save_comments=1
1229
1230; If enabled, a fast shutdown sequence is used for the accelerated code
1231; Depending on the used Memory Manager this may cause some incompatibilities.
1232;opcache.fast_shutdown=0
1233
1234; Allow file existence override (file_exists, etc.) performance feature.
1235;opcache.enable_file_override=0
1236
1237; A bitmask, where each bit enables or disables the appropriate OPcache
1238; passes
1239;opcache.optimization_level=0xffffffff
1240
1241;opcache.inherited_hack=1
1242;opcache.dups_fix=0
1243
1244; The location of the OPcache blacklist file (wildcards allowed).
1245; Each OPcache blacklist file is a text file that holds the names of files
1246; that should not be accelerated. The file format is to add each filename
1247; to a new line. The filename may be a full path or just a file prefix
1248; (i.e., /var/www/x blacklists all the files and directories in /var/www
1249; that start with 'x'). Line starting with a ; are ignored (comments).
1250;opcache.blacklist_filename=
1251
1252; Allows exclusion of large files from being cached. By default all files
1253; are cached.
1254;opcache.max_file_size=0
1255
1256; Check the cache checksum each N requests.
1257; The default value of "0" means that the checks are disabled.
1258;opcache.consistency_checks=0
1259
1260; How long to wait (in seconds) for a scheduled restart to begin if the cache
1261; is not being accessed.
1262;opcache.force_restart_timeout=180
1263
1264; OPcache error_log file name. Empty string assumes "stderr".
1265;opcache.error_log=
1266
1267; All OPcache errors go to the Web server log.
1268; By default, only fatal errors (level 0) or errors (level 1) are logged.
1269; You can also enable warnings (level 2), info messages (level 3) or
1270; debug messages (level 4).
1271;opcache.log_verbosity_level=1
1272
1273; Preferred Shared Memory back-end. Leave empty and let the system decide.
1274;opcache.preferred_memory_model=
1275
1276; Protect the shared memory from unexpected writing during script execution.
1277; Useful for internal debugging only.
1278;opcache.protect_memory=0
1279
1280; Allows calling OPcache API functions only from PHP scripts which path is
1281; started from specified string. The default "" means no restriction
1282;opcache.restrict_api=
1283
1284; Mapping base of shared memory segments (for Windows only). All the PHP
1285; processes have to map shared memory into the same address space. This
1286; directive allows to manually fix the "Unable to reattach to base address"
1287; errors.
1288;opcache.mmap_base=
1289
1290; Enables and sets the second level cache directory.
1291; It should improve performance when SHM memory is full, at server restart or
1292; SHM reset. The default "" disables file based caching.
1293;opcache.file_cache=
1294
1295; Enables or disables opcode caching in shared memory.
1296;opcache.file_cache_only=0
1297
1298; Enables or disables checksum validation when script loaded from file cache.
1299;opcache.file_cache_consistency_checks=1
1300
1301; Implies opcache.file_cache_only=1 for a certain process that failed to
1302; reattach to the shared memory (for Windows only). Explicitly enabled file
1303; cache is required.
1304;opcache.file_cache_fallback=1
1305
1306; Enables or disables copying of PHP code (text segment) into HUGE PAGES.
1307; This should improve performance, but requires appropriate OS configuration.
1308;opcache.huge_code_pages=0
1309
1310; Validate cached file permissions.
1311;opcache.validate_permission=0
1312
1313; Prevent name collisions in chroot'ed environment.
1314;opcache.validate_root=0
1315
1316[curl]
1317; A default value for the CURLOPT_CAINFO option. This is required to be an
1318; absolute path.
1319;curl.cainfo =
1320
1321[openssl]
1322; The location of a Certificate Authority (CA) file on the local filesystem
1323; to use when verifying the identity of SSL/TLS peers. Most users should
1324; not specify a value for this directive as PHP will attempt to use the
1325; OS-managed cert stores in its absence. If specified, this value may still
1326; be overridden on a per-stream basis via the "cafile" SSL stream context
1327; option.
1328;openssl.cafile=
1329
1330; If openssl.cafile is not specified or if the CA file is not found, the
1331; directory pointed to by openssl.capath is searched for a suitable
1332; certificate. This value must be a correctly hashed certificate directory.
1333; Most users should not specify a value for this directive as PHP will
1334; attempt to use the OS-managed cert stores in its absence. If specified,
1335; this value may still be overridden on a per-stream basis via the "capath"
1336; SSL stream context option.
1337;openssl.capath=
1338
1339; Local Variables:
1340; tab-width: 4
1341; End: