Guest User

Untitled

a guest
Jun 6th, 2018
258
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 63.39 KB | None | 0 0
  1. [PHP]
  2.  
  3. ;;;;;;;;;;;;;;;;;;;
  4. ; About php.ini ;
  5. ;;;;;;;;;;;;;;;;;;;
  6. ; PHP's initialization file, generally called php.ini, is responsible for
  7. ; configuring many of the aspects of PHP's behavior.
  8.  
  9. ; PHP attempts to find and load this configuration from a number of locations.
  10. ; The following is a summary of its search order:
  11. ; 1. SAPI module specific location.
  12. ; 2. The PHPRC environment variable. (As of PHP 5.2.0)
  13. ; 3. A number of predefined registry keys on Windows (As of PHP 5.2.0)
  14. ; 4. Current working directory (except CLI)
  15. ; 5. The web server's directory (for SAPI modules), or directory of PHP
  16. ; (otherwise in Windows)
  17. ; 6. The directory from the --with-config-file-path compile time option, or the
  18. ; Windows directory (C:\windows or C:\winnt)
  19. ; See the PHP docs for more specific information.
  20. ; http://php.net/configuration.file
  21.  
  22. ; The syntax of the file is extremely simple. Whitespace and lines
  23. ; beginning with a semicolon are silently ignored (as you probably guessed).
  24. ; Section headers (e.g. [Foo]) are also silently ignored, even though
  25. ; they might mean something in the future.
  26.  
  27. ; Directives following the section heading [PATH=/www/mysite] only
  28. ; apply to PHP files in the /www/mysite directory. Directives
  29. ; following the section heading [HOST=www.example.com] only apply to
  30. ; PHP files served from www.example.com. Directives set in these
  31. ; special sections cannot be overridden by user-defined INI files or
  32. ; at runtime. Currently, [PATH=] and [HOST=] sections only work under
  33. ; CGI/FastCGI.
  34. ; http://php.net/ini.sections
  35.  
  36. ; Directives are specified using the following syntax:
  37. ; directive = value
  38. ; Directive names are *case sensitive* - foo=bar is different from FOO=bar.
  39. ; Directives are variables used to configure PHP or PHP extensions.
  40. ; There is no name validation. If PHP can't find an expected
  41. ; directive because it is not set or is mistyped, a default value will be used.
  42.  
  43. ; The value can be a string, a number, a PHP constant (e.g. E_ALL or M_PI), one
  44. ; of the INI constants (On, Off, True, False, Yes, No and None) or an expression
  45. ; (e.g. E_ALL & ~E_NOTICE), a quoted string ("bar"), or a reference to a
  46. ; previously set variable or directive (e.g. ${foo})
  47.  
  48. ; Expressions in the INI file are limited to bitwise operators and parentheses:
  49. ; | bitwise OR
  50. ; ^ bitwise XOR
  51. ; & bitwise AND
  52. ; ~ bitwise NOT
  53. ; ! boolean NOT
  54.  
  55. ; Boolean flags can be turned on using the values 1, On, True or Yes.
  56. ; They can be turned off using the values 0, Off, False or No.
  57.  
  58. ; An empty string can be denoted by simply not writing anything after the equal
  59. ; sign, or by using the None keyword:
  60.  
  61. ; foo = ; sets foo to an empty string
  62. ; foo = None ; sets foo to an empty string
  63. ; foo = "None" ; sets foo to the string 'None'
  64.  
  65. ; If you use constants in your value, and these constants belong to a
  66. ; dynamically loaded extension (either a PHP extension or a Zend extension),
  67. ; you may only use these constants *after* the line that loads the extension.
  68.  
  69. ;;;;;;;;;;;;;;;;;;;
  70. ; About this file ;
  71. ;;;;;;;;;;;;;;;;;;;
  72. ; PHP comes packaged with two INI files. One that is recommended to be used
  73. ; in production environments and one that is recommended to be used in
  74. ; development environments.
  75.  
  76. ; php.ini-production contains settings which hold security, performance and
  77. ; best practices at its core. But please be aware, these settings may break
  78. ; compatibility with older or less security conscience applications. We
  79. ; recommending using the production ini in production and testing environments.
  80.  
  81. ; php.ini-development is very similar to its production variant, except it is
  82. ; much more verbose when it comes to errors. We recommend using the
  83. ; development version only in development environments, as errors shown to
  84. ; application users can inadvertently leak otherwise secure information.
  85.  
  86. ; This is php.ini-production INI file.
  87.  
  88. ;;;;;;;;;;;;;;;;;;;
  89. ; Quick Reference ;
  90. ;;;;;;;;;;;;;;;;;;;
  91. ; The following are all the settings which are different in either the production
  92. ; or development versions of the INIs with respect to PHP's default behavior.
  93. ; Please see the actual settings later in the document for more details as to why
  94. ; we recommend these changes in PHP's behavior.
  95.  
  96. ; display_errors
  97. ; Default Value: On
  98. ; Development Value: On
  99. ; Production Value: Off
  100.  
  101. ; display_startup_errors
  102. ; Default Value: Off
  103. ; Development Value: On
  104. ; Production Value: Off
  105.  
  106. ; error_reporting
  107. ; Default Value: E_ALL & ~E_NOTICE & ~E_STRICT & ~E_DEPRECATED
  108. ; Development Value: E_ALL
  109. ; Production Value: E_ALL & ~E_DEPRECATED & ~E_STRICT
  110.  
  111. ; html_errors
  112. ; Default Value: On
  113. ; Development Value: On
  114. ; Production value: On
  115.  
  116. ; log_errors
  117. ; Default Value: Off
  118. ; Development Value: On
  119. ; Production Value: On
  120.  
  121. ; max_input_time
  122. ; Default Value: -1 (Unlimited)
  123. ; Development Value: 60 (60 seconds)
  124. ; Production Value: 60 (60 seconds)
  125.  
  126. ; output_buffering
  127. ; Default Value: Off
  128. ; Development Value: 4096
  129. ; Production Value: 4096
  130.  
  131. ; register_argc_argv
  132. ; Default Value: On
  133. ; Development Value: Off
  134. ; Production Value: Off
  135.  
  136. ; request_order
  137. ; Default Value: None
  138. ; Development Value: "GP"
  139. ; Production Value: "GP"
  140.  
  141. ; session.gc_divisor
  142. ; Default Value: 100
  143. ; Development Value: 1000
  144. ; Production Value: 1000
  145.  
  146. ; session.hash_bits_per_character
  147. ; Default Value: 4
  148. ; Development Value: 5
  149. ; Production Value: 5
  150.  
  151. ; short_open_tag
  152. ; Default Value: On
  153. ; Development Value: Off
  154. ; Production Value: Off
  155.  
  156. ; track_errors
  157. ; Default Value: Off
  158. ; Development Value: On
  159. ; Production Value: Off
  160.  
  161. ; url_rewriter.tags
  162. ; Default Value: "a=href,area=href,frame=src,form=,fieldset="
  163. ; Development Value: "a=href,area=href,frame=src,input=src,form=fakeentry"
  164. ; Production Value: "a=href,area=href,frame=src,input=src,form=fakeentry"
  165.  
  166. ; variables_order
  167. ; Default Value: "EGPCS"
  168. ; Development Value: "GPCS"
  169. ; Production Value: "GPCS"
  170.  
  171. ;;;;;;;;;;;;;;;;;;;;
  172. ; php.ini Options ;
  173. ;;;;;;;;;;;;;;;;;;;;
  174. ; Name for user-defined php.ini (.htaccess) files. Default is ".user.ini"
  175. ;user_ini.filename = ".user.ini"
  176.  
  177. ; To disable this feature set this option to empty value
  178. ;user_ini.filename =
  179.  
  180. ; TTL for user-defined php.ini files (time-to-live) in seconds. Default is 300 seconds (5 minutes)
  181. ;user_ini.cache_ttl = 300
  182.  
  183. ;;;;;;;;;;;;;;;;;;;;
  184. ; Language Options ;
  185. ;;;;;;;;;;;;;;;;;;;;
  186.  
  187. ; Enable the PHP scripting language engine under Apache.
  188. ; http://php.net/engine
  189. engine = On
  190.  
  191. ; This directive determines whether or not PHP will recognize code between
  192. ; <? and ?> tags as PHP source which should be processed as such. It is
  193. ; generally recommended that <?php and ?> should be used and that this feature
  194. ; should be disabled, as enabling it may result in issues when generating XML
  195. ; documents, however this remains supported for backward compatibility reasons.
  196. ; Note that this directive does not control the <?= shorthand tag, which can be
  197. ; used regardless of this directive.
  198. ; Default Value: On
  199. ; Development Value: Off
  200. ; Production Value: Off
  201. ; http://php.net/short-open-tag
  202. short_open_tag = On
  203.  
  204. ; The number of significant digits displayed in floating point numbers.
  205. ; http://php.net/precision
  206. precision = 14
  207.  
  208. ; Output buffering is a mechanism for controlling how much output data
  209. ; (excluding headers and cookies) PHP should keep internally before pushing that
  210. ; data to the client. If your application's output exceeds this setting, PHP
  211. ; will send that data in chunks of roughly the size you specify.
  212. ; Turning on this setting and managing its maximum buffer size can yield some
  213. ; interesting side-effects depending on your application and web server.
  214. ; You may be able to send headers and cookies after you've already sent output
  215. ; through print or echo. You also may see performance benefits if your server is
  216. ; emitting less packets due to buffered output versus PHP streaming the output
  217. ; as it gets it. On production servers, 4096 bytes is a good setting for performance
  218. ; reasons.
  219. ; Note: Output buffering can also be controlled via Output Buffering Control
  220. ; functions.
  221. ; Possible Values:
  222. ; On = Enabled and buffer is unlimited. (Use with caution)
  223. ; Off = Disabled
  224. ; Integer = Enables the buffer and sets its maximum size in bytes.
  225. ; Note: This directive is hardcoded to Off for the CLI SAPI
  226. ; Default Value: Off
  227. ; Development Value: 4096
  228. ; Production Value: 4096
  229. ; http://php.net/output-buffering
  230. output_buffering = Off
  231.  
  232. ; You can redirect all of the output of your scripts to a function. For
  233. ; example, if you set output_handler to "mb_output_handler", character
  234. ; encoding will be transparently converted to the specified encoding.
  235. ; Setting any output handler automatically turns on output buffering.
  236. ; Note: People who wrote portable scripts should not depend on this ini
  237. ; directive. Instead, explicitly set the output handler using ob_start().
  238. ; Using this ini directive may cause problems unless you know what script
  239. ; is doing.
  240. ; Note: You cannot use both "mb_output_handler" with "ob_iconv_handler"
  241. ; and you cannot use both "ob_gzhandler" and "zlib.output_compression".
  242. ; Note: output_handler must be empty if this is set 'On' !!!!
  243. ; Instead you must use zlib.output_handler.
  244. ; http://php.net/output-handler
  245. ;output_handler =
  246.  
  247. ; Transparent output compression using the zlib library
  248. ; Valid values for this option are 'off', 'on', or a specific buffer size
  249. ; to be used for compression (default is 4KB)
  250. ; Note: Resulting chunk size may vary due to nature of compression. PHP
  251. ; outputs chunks that are few hundreds bytes each as a result of
  252. ; compression. If you prefer a larger chunk size for better
  253. ; performance, enable output_buffering in addition.
  254. ; Note: You need to use zlib.output_handler instead of the standard
  255. ; output_handler, or otherwise the output will be corrupted.
  256. ; http://php.net/zlib.output-compression
  257. zlib.output_compression = Off
  258.  
  259. ; http://php.net/zlib.output-compression-level
  260. ;zlib.output_compression_level = -1
  261.  
  262. ; You cannot specify additional output handlers if zlib.output_compression
  263. ; is activated here. This setting does the same as output_handler but in
  264. ; a different order.
  265. ; http://php.net/zlib.output-handler
  266. ;zlib.output_handler =
  267.  
  268. ; Implicit flush tells PHP to tell the output layer to flush itself
  269. ; automatically after every output block. This is equivalent to calling the
  270. ; PHP function flush() after each and every call to print() or echo() and each
  271. ; and every HTML block. Turning this option on has serious performance
  272. ; implications and is generally recommended for debugging purposes only.
  273. ; http://php.net/implicit-flush
  274. ; Note: This directive is hardcoded to On for the CLI SAPI
  275. implicit_flush = Off
  276.  
  277. ; The unserialize callback function will be called (with the undefined class'
  278. ; name as parameter), if the unserializer finds an undefined class
  279. ; which should be instantiated. A warning appears if the specified function is
  280. ; not defined, or if the function doesn't include/implement the missing class.
  281. ; So only set this entry, if you really want to implement such a
  282. ; callback-function.
  283. unserialize_callback_func =
  284.  
  285. ; When floats & doubles are serialized store serialize_precision significant
  286. ; digits after the floating point. The default value ensures that when floats
  287. ; are decoded with unserialize, the data will remain the same.
  288. serialize_precision = 100
  289.  
  290. ; open_basedir, if set, limits all file operations to the defined directory
  291. ; and below. This directive makes most sense if used in a per-directory
  292. ; or per-virtualhost web server configuration file.
  293. ; http://php.net/open-basedir
  294. ;open_basedir =
  295.  
  296. ; This directive allows you to disable certain functions for security reasons.
  297. ; It receives a comma-delimited list of function names.
  298. ; http://php.net/disable-functions
  299. disable_functions = dl,exec,passthru,shell_exec,system,proc_open,popen,curl_exec,curl_multi_exec,parse_ini_file,show_source
  300.  
  301.  
  302. ; This directive allows you to disable certain classes for security reasons.
  303. ; It receives a comma-delimited list of class names.
  304. ; http://php.net/disable-classes
  305. disable_classes =
  306.  
  307. ; Colors for Syntax Highlighting mode. Anything that's acceptable in
  308. ; <span style="color: ???????"> would work.
  309. ; http://php.net/syntax-highlighting
  310. ;highlight.string = #DD0000
  311. ;highlight.comment = #FF9900
  312. ;highlight.keyword = #007700
  313. ;highlight.default = #0000BB
  314. ;highlight.html = #000000
  315.  
  316. ; If enabled, the request will be allowed to complete even if the user aborts
  317. ; the request. Consider enabling it if executing long requests, which may end up
  318. ; being interrupted by the user or a browser timing out. PHP's default behavior
  319. ; is to disable this feature.
  320. ; http://php.net/ignore-user-abort
  321. ;ignore_user_abort = On
  322.  
  323. ; Determines the size of the realpath cache to be used by PHP. This value should
  324. ; be increased on systems where PHP opens many files to reflect the quantity of
  325. ; the file operations performed.
  326. ; http://php.net/realpath-cache-size
  327. ;realpath_cache_size = 16k
  328.  
  329. ; Duration of time, in seconds for which to cache realpath information for a given
  330. ; file or directory. For systems with rarely changing files, consider increasing this
  331. ; value.
  332. ; http://php.net/realpath-cache-ttl
  333. ;realpath_cache_ttl = 120
  334.  
  335. ; Enables or disables the circular reference collector.
  336. ; http://php.net/zend.enable-gc
  337. zend.enable_gc = On
  338.  
  339. ; If enabled, scripts may be written in encodings that are incompatible with
  340. ; the scanner. CP936, Big5, CP949 and Shift_JIS are the examples of such
  341. ; encodings. To use this feature, mbstring extension must be enabled.
  342. ; Default: Off
  343. ;zend.multibyte = Off
  344.  
  345. ; Allows to set the default encoding for the scripts. This value will be used
  346. ; unless "declare(encoding=...)" directive appears at the top of the script.
  347. ; Only affects if zend.multibyte is set.
  348. ; Default: ""
  349. ;zend.script_encoding =
  350.  
  351. ;;;;;;;;;;;;;;;;;
  352. ; Miscellaneous ;
  353. ;;;;;;;;;;;;;;;;;
  354.  
  355. ; Decides whether PHP may expose the fact that it is installed on the server
  356. ; (e.g. by adding its signature to the Web server header). It is no security
  357. ; threat in any way, but it makes it possible to determine whether you use PHP
  358. ; on your server or not.
  359. ; http://php.net/expose-php
  360. expose_php = Off
  361.  
  362. ;;;;;;;;;;;;;;;;;;;
  363. ; Resource Limits ;
  364. ;;;;;;;;;;;;;;;;;;;
  365.  
  366. ; Maximum execution time of each script, in seconds
  367. ; http://php.net/max-execution-time
  368. ; Note: This directive is hardcoded to 0 for the CLI SAPI
  369. max_execution_time = 30
  370.  
  371. ; Maximum amount of time each script may spend parsing request data. It's a good
  372. ; idea to limit this time on productions servers in order to eliminate unexpectedly
  373. ; long running scripts.
  374. ; Note: This directive is hardcoded to -1 for the CLI SAPI
  375. ; Default Value: -1 (Unlimited)
  376. ; Development Value: 60 (60 seconds)
  377. ; Production Value: 60 (60 seconds)
  378. ; http://php.net/max-input-time
  379. max_input_time = 60
  380.  
  381. ; Maximum input variable nesting level
  382. ; http://php.net/max-input-nesting-level
  383. ;max_input_nesting_level = 64
  384.  
  385. ; How many GET/POST/COOKIE input variables may be accepted
  386. ; max_input_vars = 1000
  387.  
  388. ; Maximum amount of memory a script may consume (128MB)
  389. ; http://php.net/memory-limit
  390. memory_limit = 256M
  391.  
  392. ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
  393. ; Error handling and logging ;
  394. ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
  395.  
  396. ; This directive informs PHP of which errors, warnings and notices you would like
  397. ; it to take action for. The recommended way of setting values for this
  398. ; directive is through the use of the error level constants and bitwise
  399. ; operators. The error level constants are below here for convenience as well as
  400. ; some common settings and their meanings.
  401. ; By default, PHP is set to take action on all errors, notices and warnings EXCEPT
  402. ; those related to E_NOTICE and E_STRICT, which together cover best practices and
  403. ; recommended coding standards in PHP. For performance reasons, this is the
  404. ; recommend error reporting setting. Your production server shouldn't be wasting
  405. ; resources complaining about best practices and coding standards. That's what
  406. ; development servers and development settings are for.
  407. ; Note: The php.ini-development file has this setting as E_ALL. This
  408. ; means it pretty much reports everything which is exactly what you want during
  409. ; development and early testing.
  410. ;
  411. ; Error Level Constants:
  412. ; E_ALL - All errors and warnings (includes E_STRICT as of PHP 5.4.0)
  413. ; E_ERROR - fatal run-time errors
  414. ; E_RECOVERABLE_ERROR - almost fatal run-time errors
  415. ; E_WARNING - run-time warnings (non-fatal errors)
  416. ; E_PARSE - compile-time parse errors
  417. ; E_NOTICE - run-time notices (these are warnings which often result
  418. ; from a bug in your code, but it's possible that it was
  419. ; intentional (e.g., using an uninitialized variable and
  420. ; relying on the fact it is automatically initialized to an
  421. ; empty string)
  422. ; E_STRICT - run-time notices, enable to have PHP suggest changes
  423. ; to your code which will ensure the best interoperability
  424. ; and forward compatibility of your code
  425. ; E_CORE_ERROR - fatal errors that occur during PHP's initial startup
  426. ; E_CORE_WARNING - warnings (non-fatal errors) that occur during PHP's
  427. ; initial startup
  428. ; E_COMPILE_ERROR - fatal compile-time errors
  429. ; E_COMPILE_WARNING - compile-time warnings (non-fatal errors)
  430. ; E_USER_ERROR - user-generated error message
  431. ; E_USER_WARNING - user-generated warning message
  432. ; E_USER_NOTICE - user-generated notice message
  433. ; E_DEPRECATED - warn about code that will not work in future versions
  434. ; of PHP
  435. ; E_USER_DEPRECATED - user-generated deprecation warnings
  436. ;
  437. ; Common Values:
  438. ; E_ALL (Show all errors, warnings and notices including coding standards.)
  439. ; E_ALL & ~E_NOTICE (Show all errors, except for notices)
  440. ; E_ALL & ~E_NOTICE & ~E_STRICT (Show all errors, except for notices and coding standards warnings.)
  441. ; E_COMPILE_ERROR|E_RECOVERABLE_ERROR|E_ERROR|E_CORE_ERROR (Show only errors)
  442. ; Default Value: E_ALL & ~E_NOTICE & ~E_STRICT & ~E_DEPRECATED
  443. ; Development Value: E_ALL
  444. ; Production Value: E_ALL & ~E_DEPRECATED & ~E_STRICT
  445. ; http://php.net/error-reporting
  446. error_reporting = E_ALL & ~E_NOTICE
  447.  
  448. ; This directive controls whether or not and where PHP will output errors,
  449. ; notices and warnings too. Error output is very useful during development, but
  450. ; it could be very dangerous in production environments. Depending on the code
  451. ; which is triggering the error, sensitive information could potentially leak
  452. ; out of your application such as database usernames and passwords or worse.
  453. ; For production environments, we recommend logging errors rather than
  454. ; sending them to STDOUT.
  455. ; Possible Values:
  456. ; Off = Do not display any errors
  457. ; stderr = Display errors to STDERR (affects only CGI/CLI binaries!)
  458. ; On or stdout = Display errors to STDOUT
  459. ; Default Value: On
  460. ; Development Value: On
  461. ; Production Value: Off
  462. ; http://php.net/display-errors
  463. display_errors = off
  464.  
  465. ; The display of errors which occur during PHP's startup sequence are handled
  466. ; separately from display_errors. PHP's default behavior is to suppress those
  467. ; errors from clients. Turning the display of startup errors on can be useful in
  468. ; debugging configuration problems. We strongly recommend you
  469. ; set this to 'off' for production servers.
  470. ; Default Value: Off
  471. ; Development Value: On
  472. ; Production Value: Off
  473. ; http://php.net/display-startup-errors
  474. display_startup_errors = Off
  475.  
  476. ; Besides displaying errors, PHP can also log errors to locations such as a
  477. ; server-specific log, STDERR, or a location specified by the error_log
  478. ; directive found below. While errors should not be displayed on productions
  479. ; servers they should still be monitored and logging is a great way to do that.
  480. ; Default Value: Off
  481. ; Development Value: On
  482. ; Production Value: On
  483. ; http://php.net/log-errors
  484. log_errors = On
  485.  
  486. ; Set maximum length of log_errors. In error_log information about the source is
  487. ; added. The default is 1024 and 0 allows to not apply any maximum length at all.
  488. ; http://php.net/log-errors-max-len
  489. log_errors_max_len = 1024
  490.  
  491. ; Do not log repeated messages. Repeated errors must occur in same file on same
  492. ; line unless ignore_repeated_source is set true.
  493. ; http://php.net/ignore-repeated-errors
  494. ignore_repeated_errors = Off
  495.  
  496. ; Ignore source of message when ignoring repeated messages. When this setting
  497. ; is On you will not log errors with repeated messages from different files or
  498. ; source lines.
  499. ; http://php.net/ignore-repeated-source
  500. ignore_repeated_source = Off
  501.  
  502. ; If this parameter is set to Off, then memory leaks will not be shown (on
  503. ; stdout or in the log). This has only effect in a debug compile, and if
  504. ; error reporting includes E_WARNING in the allowed list
  505. ; http://php.net/report-memleaks
  506. report_memleaks = On
  507.  
  508. ; This setting is on by default.
  509. ;report_zend_debug = 0
  510.  
  511. ; Store the last error/warning message in $php_errormsg (boolean). Setting this value
  512. ; to On can assist in debugging and is appropriate for development servers. It should
  513. ; however be disabled on production servers.
  514. ; Default Value: Off
  515. ; Development Value: On
  516. ; Production Value: Off
  517. ; http://php.net/track-errors
  518. track_errors = Off
  519.  
  520. ; Turn off normal error reporting and emit XML-RPC error XML
  521. ; http://php.net/xmlrpc-errors
  522. ;xmlrpc_errors = 0
  523.  
  524. ; An XML-RPC faultCode
  525. ;xmlrpc_error_number = 0
  526.  
  527. ; When PHP displays or logs an error, it has the capability of formatting the
  528. ; error message as HTML for easier reading. This directive controls whether
  529. ; the error message is formatted as HTML or not.
  530. ; Note: This directive is hardcoded to Off for the CLI SAPI
  531. ; Default Value: On
  532. ; Development Value: On
  533. ; Production value: On
  534. ; http://php.net/html-errors
  535. html_errors = On
  536.  
  537. ; If html_errors is set to On *and* docref_root is not empty, then PHP
  538. ; produces clickable error messages that direct to a page describing the error
  539. ; or function causing the error in detail.
  540. ; You can download a copy of the PHP manual from http://php.net/docs
  541. ; and change docref_root to the base URL of your local copy including the
  542. ; leading '/'. You must also specify the file extension being used including
  543. ; the dot. PHP's default behavior is to leave these settings empty, in which
  544. ; case no links to documentation are generated.
  545. ; Note: Never use this feature for production boxes.
  546. ; http://php.net/docref-root
  547. ; Examples
  548. ;docref_root = "/phpmanual/"
  549.  
  550. ; http://php.net/docref-ext
  551. ;docref_ext = .html
  552.  
  553. ; String to output before an error message. PHP's default behavior is to leave
  554. ; this setting blank.
  555. ; http://php.net/error-prepend-string
  556. ; Example:
  557. ;error_prepend_string = "<span style='color: #ff0000'>"
  558.  
  559. ; String to output after an error message. PHP's default behavior is to leave
  560. ; this setting blank.
  561. ; http://php.net/error-append-string
  562. ; Example:
  563. ;error_append_string = "</span>"
  564.  
  565. ; Log errors to specified file. PHP's default behavior is to leave this value
  566. ; empty.
  567. ; http://php.net/error-log
  568. ; Example:
  569. ;error_log = php_errors.log
  570. ; Log errors to syslog (Event Log on Windows).
  571. ;error_log = syslog
  572. error_log = error_log;
  573.  
  574. ;windows.show_crt_warning
  575. ; Default value: 0
  576. ; Development value: 0
  577. ; Production value: 0
  578.  
  579. ;;;;;;;;;;;;;;;;;
  580. ; Data Handling ;
  581. ;;;;;;;;;;;;;;;;;
  582.  
  583. ; The separator used in PHP generated URLs to separate arguments.
  584. ; PHP's default setting is "&".
  585. ; http://php.net/arg-separator.output
  586. ; Example:
  587. ;arg_separator.output = "&amp;"
  588.  
  589. ; List of separator(s) used by PHP to parse input URLs into variables.
  590. ; PHP's default setting is "&".
  591. ; NOTE: Every character in this directive is considered as separator!
  592. ; http://php.net/arg-separator.input
  593. ; Example:
  594. ;arg_separator.input = ";&"
  595.  
  596. ; This directive determines which super global arrays are registered when PHP
  597. ; starts up. G,P,C,E & S are abbreviations for the following respective super
  598. ; globals: GET, POST, COOKIE, ENV and SERVER. There is a performance penalty
  599. ; paid for the registration of these arrays and because ENV is not as commonly
  600. ; used as the others, ENV is not recommended on productions servers. You
  601. ; can still get access to the environment variables through getenv() should you
  602. ; need to.
  603. ; Default Value: "EGPCS"
  604. ; Development Value: "GPCS"
  605. ; Production Value: "GPCS";
  606. ; http://php.net/variables-order
  607. variables_order = "EGPCS"
  608.  
  609. ; This directive determines which super global data (G,P & C) should be
  610. ; registered into the super global array REQUEST. If so, it also determines
  611. ; the order in which that data is registered. The values for this directive
  612. ; are specified in the same manner as the variables_order directive,
  613. ; EXCEPT one. Leaving this value empty will cause PHP to use the value set
  614. ; in the variables_order directive. It does not mean it will leave the super
  615. ; globals array REQUEST empty.
  616. ; Default Value: None
  617. ; Development Value: "GP"
  618. ; Production Value: "GP"
  619. ; http://php.net/request-order
  620. request_order = "GP"
  621.  
  622. ; This directive determines whether PHP registers $argv & $argc each time it
  623. ; runs. $argv contains an array of all the arguments passed to PHP when a script
  624. ; is invoked. $argc contains an integer representing the number of arguments
  625. ; that were passed when the script was invoked. These arrays are extremely
  626. ; useful when running scripts from the command line. When this directive is
  627. ; enabled, registering these variables consumes CPU cycles and memory each time
  628. ; a script is executed. For performance reasons, this feature should be disabled
  629. ; on production servers.
  630. ; Note: This directive is hardcoded to On for the CLI SAPI
  631. ; Default Value: On
  632. ; Development Value: Off
  633. ; Production Value: Off
  634. ; http://php.net/register-argc-argv
  635. register_argc_argv = On
  636.  
  637. ; When enabled, the ENV, REQUEST and SERVER variables are created when they're
  638. ; first used (Just In Time) instead of when the script starts. If these
  639. ; variables are not used within a script, having this directive on will result
  640. ; in a performance gain. The PHP directive register_argc_argv must be disabled
  641. ; for this directive to have any affect.
  642. ; http://php.net/auto-globals-jit
  643. auto_globals_jit = On
  644.  
  645. ; Whether PHP will read the POST data.
  646. ; This option is enabled by default.
  647. ; Most likely, you won't want to disable this option globally. It causes $_POST
  648. ; and $_FILES to always be empty; the only way you will be able to read the
  649. ; POST data will be through the php://input stream wrapper. This can be useful
  650. ; to proxy requests or to process the POST data in a memory efficient fashion.
  651. ; http://php.net/enable-post-data-reading
  652. ;enable_post_data_reading = Off
  653.  
  654. ; Maximum size of POST data that PHP will accept.
  655. ; Its value may be 0 to disable the limit. It is ignored if POST data reading
  656. ; is disabled through enable_post_data_reading.
  657. ; http://php.net/post-max-size
  658. post_max_size = 64M
  659.  
  660. ; Automatically add files before PHP document.
  661. ; http://php.net/auto-prepend-file
  662. auto_prepend_file =
  663.  
  664. ; Automatically add files after PHP document.
  665. ; http://php.net/auto-append-file
  666. auto_append_file =
  667.  
  668. ; By default, PHP will output a character encoding using
  669. ; the Content-type: header. To disable sending of the charset, simply
  670. ; set it to be empty.
  671. ;
  672. ; PHP's built-in default is text/html
  673. ; http://php.net/default-mimetype
  674. default_mimetype = "text/html"
  675.  
  676. ; PHP's default character set is set to UTF-8.
  677. ; http://php.net/default-charset
  678. default_charset = "UTF-8"
  679.  
  680. ; PHP internal character encoding is set to empty.
  681. ; If empty, default_charset is used.
  682. ; http://php.net/internal-encoding
  683. ;internal_encoding =
  684.  
  685. ; PHP input character encoding is set to empty.
  686. ; If empty, default_charset is used.
  687. ; http://php.net/input-encoding
  688. ;input_encoding =
  689.  
  690. ; PHP output character encoding is set to empty.
  691. ; If empty, default_charset is used.
  692. ; mbstring or iconv output handler is used.
  693. ; See also output_buffer.
  694. ; http://php.net/output-encoding
  695. ;output_encoding =
  696.  
  697. ;;;;;;;;;;;;;;;;;;;;;;;;;
  698. ; Paths and Directories ;
  699. ;;;;;;;;;;;;;;;;;;;;;;;;;
  700.  
  701. ; UNIX: "/path1:/path2"
  702. ;include_path = ".:/php/includes"
  703. include_path = ".:/opt/php70/lib/php"
  704. ; Windows: "\path1;\path2"
  705. ;include_path = ".;c:\php\includes"
  706. ;
  707. ; PHP's default setting for include_path is ".;/path/to/php/pear"
  708. ; http://php.net/include-path
  709.  
  710. ; The root of the PHP pages, used only if nonempty.
  711. ; if PHP was not compiled with FORCE_REDIRECT, you SHOULD set doc_root
  712. ; if you are running php as a CGI under any web server (other than IIS)
  713. ; see documentation for security issues. The alternate is to use the
  714. ; cgi.force_redirect configuration below
  715. ; http://php.net/doc-root
  716. doc_root =
  717.  
  718. ; The directory under which PHP opens the script using /~username used only
  719. ; if nonempty.
  720. ; http://php.net/user-dir
  721. user_dir =
  722.  
  723. ; Directory in which the loadable extensions (modules) reside.
  724. ; http://php.net/extension-dir
  725. ; extension_dir = "./"
  726. ; On windows:
  727. ; extension_dir = "ext"
  728. extension_dir = "/opt/php70/lib/php/extensions/no-debug-non-zts-20151012"
  729.  
  730. ; Directory where the temporary files should be placed.
  731. ; Defaults to the system default (see sys_get_temp_dir)
  732. ; sys_temp_dir = "/tmp"
  733.  
  734. ; Whether or not to enable the dl() function. The dl() function does NOT work
  735. ; properly in multithreaded servers, such as IIS or Zeus, and is automatically
  736. ; disabled on them.
  737. ; http://php.net/enable-dl
  738. enable_dl = Off
  739.  
  740. ; cgi.force_redirect is necessary to provide security running PHP as a CGI under
  741. ; most web servers. Left undefined, PHP turns this on by default. You can
  742. ; turn it off here AT YOUR OWN RISK
  743. ; **You CAN safely turn this off for IIS, in fact, you MUST.**
  744. ; http://php.net/cgi.force-redirect
  745. ;cgi.force_redirect = 1
  746.  
  747. ; if cgi.nph is enabled it will force cgi to always sent Status: 200 with
  748. ; every request. PHP's default behavior is to disable this feature.
  749. ;cgi.nph = 1
  750.  
  751. ; if cgi.force_redirect is turned on, and you are not running under Apache or Netscape
  752. ; (iPlanet) web servers, you MAY need to set an environment variable name that PHP
  753. ; will look for to know it is OK to continue execution. Setting this variable MAY
  754. ; cause security issues, KNOW WHAT YOU ARE DOING FIRST.
  755. ; http://php.net/cgi.redirect-status-env
  756. ;cgi.redirect_status_env =
  757.  
  758. ; cgi.fix_pathinfo provides *real* PATH_INFO/PATH_TRANSLATED support for CGI. PHP's
  759. ; previous behaviour was to set PATH_TRANSLATED to SCRIPT_FILENAME, and to not grok
  760. ; what PATH_INFO is. For more information on PATH_INFO, see the cgi specs. Setting
  761. ; this to 1 will cause PHP CGI to fix its paths to conform to the spec. A setting
  762. ; of zero causes PHP to behave as before. Default is 1. You should fix your scripts
  763. ; to use SCRIPT_FILENAME rather than PATH_TRANSLATED.
  764. ; http://php.net/cgi.fix-pathinfo
  765. ;cgi.fix_pathinfo=1
  766.  
  767. ; FastCGI under IIS (on WINNT based OS) supports the ability to impersonate
  768. ; security tokens of the calling client. This allows IIS to define the
  769. ; security context that the request runs under. mod_fastcgi under Apache
  770. ; does not currently support this feature (03/17/2002)
  771. ; Set to 1 if running under IIS. Default is zero.
  772. ; http://php.net/fastcgi.impersonate
  773. ;fastcgi.impersonate = 1
  774.  
  775. ; Disable logging through FastCGI connection. PHP's default behavior is to enable
  776. ; this feature.
  777. ;fastcgi.logging = 0
  778.  
  779. ; cgi.rfc2616_headers configuration option tells PHP what type of headers to
  780. ; use when sending HTTP response code. If set to 0, PHP sends Status: header that
  781. ; is supported by Apache. When this option is set to 1, PHP will send
  782. ; RFC2616 compliant header.
  783. ; Default is zero.
  784. ; http://php.net/cgi.rfc2616-headers
  785. ;cgi.rfc2616_headers = 0
  786.  
  787. ;;;;;;;;;;;;;;;;
  788. ; File Uploads ;
  789. ;;;;;;;;;;;;;;;;
  790.  
  791. ; Whether to allow HTTP file uploads.
  792. ; http://php.net/file-uploads
  793. file_uploads = On
  794.  
  795. ; Temporary directory for HTTP uploaded files (will use system default if not
  796. ; specified).
  797. ; http://php.net/upload-tmp-dir
  798. ;upload_tmp_dir =
  799.  
  800. ; Maximum allowed size for uploaded files.
  801. ; http://php.net/upload-max-filesize
  802. upload_max_filesize = 64M
  803.  
  804. ; Maximum number of files that can be uploaded via a single request
  805. max_file_uploads = 20
  806.  
  807. ;;;;;;;;;;;;;;;;;;
  808. ; Fopen wrappers ;
  809. ;;;;;;;;;;;;;;;;;;
  810.  
  811. ; Whether to allow the treatment of URLs (like http:// or ftp://) as files.
  812. ; http://php.net/allow-url-fopen
  813. allow_url_fopen = On
  814.  
  815. ; Whether to allow include/require to open URLs (like http:// or ftp://) as files.
  816. ; http://php.net/allow-url-include
  817. allow_url_include = On
  818.  
  819. ; Define the anonymous ftp password (your email address). PHP's default setting
  820. ; for this is empty.
  821. ; http://php.net/from
  822. ;from="john@doe.com"
  823.  
  824. ; Define the User-Agent string. PHP's default setting for this is empty.
  825. ; http://php.net/user-agent
  826. ;user_agent="PHP"
  827.  
  828. ; Default timeout for socket based streams (seconds)
  829. ; http://php.net/default-socket-timeout
  830. default_socket_timeout = 60
  831.  
  832. ; If your scripts have to deal with files from Macintosh systems,
  833. ; or you are running on a Mac and need to deal with files from
  834. ; unix or win32 systems, setting this flag will cause PHP to
  835. ; automatically detect the EOL character in those files so that
  836. ; fgets() and file() will work regardless of the source of the file.
  837. ; http://php.net/auto-detect-line-endings
  838. ;auto_detect_line_endings = Off
  839.  
  840. ;;;;;;;;;;;;;;;;;;;;;;
  841. ; Dynamic Extensions ;
  842. ;;;;;;;;;;;;;;;;;;;;;;
  843.  
  844. ; If you wish to have an extension loaded automatically, use the following
  845. ; syntax:
  846. ;
  847. ; extension=modulename.extension
  848. ;
  849. ; For example, on Windows:
  850. ;
  851. ; extension=msql.dll
  852. ;
  853. ; ... or under UNIX:
  854. ;
  855. ; extension=msql.so
  856. ;
  857. ; ... or with a path:
  858. ;
  859. ; extension=/path/to/extension/msql.so
  860. ;
  861. ; If you only provide the name of the extension, PHP will look for it in its
  862. ; default extension directory.
  863.  
  864. ;;;;
  865. ; Note: packaged extension modules are now loaded via the .ini files
  866. ; found in the directory /etc/php.d; these are loaded by default.
  867. ;;;;
  868.  
  869. ;;;;;;;;;;;;;;;;;;;
  870. ; Module Settings ;
  871. ;;;;;;;;;;;;;;;;;;;
  872.  
  873. [CLI Server]
  874. ; Whether the CLI web server uses ANSI color coding in its terminal output.
  875. cli_server.color = On
  876.  
  877. [Date]
  878. ; Defines the default timezone used by the date functions
  879. ; http://php.net/date.timezone
  880. date.timezone = America/Chicago
  881.  
  882. ; http://php.net/date.default-latitude
  883. ;date.default_latitude = 31.7667
  884.  
  885. ; http://php.net/date.default-longitude
  886. ;date.default_longitude = 35.2333
  887.  
  888. ; http://php.net/date.sunrise-zenith
  889. ;date.sunrise_zenith = 90.583333
  890.  
  891. ; http://php.net/date.sunset-zenith
  892. ;date.sunset_zenith = 90.583333
  893.  
  894. [filter]
  895. ; http://php.net/filter.default
  896. ;filter.default = unsafe_raw
  897.  
  898. ; http://php.net/filter.default-flags
  899. ;filter.default_flags =
  900.  
  901. [iconv]
  902. ; Use of this INI entry is deprecated, use global input_encoding instead.
  903. ; If empty, default_charset or input_encoding or iconv.input_encoding is used.
  904. ; The precedence is: default_charset < intput_encoding < iconv.input_encoding
  905. ;iconv.input_encoding =
  906.  
  907. ; Use of this INI entry is deprecated, use global internal_encoding instead.
  908. ; If empty, default_charset or internal_encoding or iconv.internal_encoding is used.
  909. ; The precedence is: default_charset < internal_encoding < iconv.internal_encoding
  910. ;iconv.internal_encoding =
  911.  
  912. ; Use of this INI entry is deprecated, use global output_encoding instead.
  913. ; If empty, default_charset or output_encoding or iconv.output_encoding is used.
  914. ; The precedence is: default_charset < output_encoding < iconv.output_encoding
  915. ; To use an output encoding conversion, iconv's output handler must be set
  916. ; otherwise output encoding conversion cannot be performed.
  917. ;iconv.output_encoding =
  918.  
  919. [intl]
  920. ;intl.default_locale =
  921. ; This directive allows you to produce PHP errors when some error
  922. ; happens within intl functions. The value is the level of the error produced.
  923. ; Default is 0, which does not produce any errors.
  924. ;intl.error_level = E_WARNING
  925.  
  926. [sqlite]
  927. ; http://php.net/sqlite.assoc-case
  928. ;sqlite.assoc_case = 0
  929.  
  930. [sqlite3]
  931. ;sqlite3.extension_dir =
  932.  
  933. [Pcre]
  934. ;PCRE library backtracking limit.
  935. ; http://php.net/pcre.backtrack-limit
  936. ;pcre.backtrack_limit=100000
  937.  
  938. ;PCRE library recursion limit.
  939. ;Please note that if you set this value to a high number you may consume all
  940. ;the available process stack and eventually crash PHP (due to reaching the
  941. ;stack size limit imposed by the Operating System).
  942. ; http://php.net/pcre.recursion-limit
  943. ;pcre.recursion_limit=100000
  944.  
  945. [Pdo]
  946. ; Whether to pool ODBC connections. Can be one of "strict", "relaxed" or "off"
  947. ; http://php.net/pdo-odbc.connection-pooling
  948. ;pdo_odbc.connection_pooling=strict
  949.  
  950. ;pdo_odbc.db2_instance_name
  951.  
  952. [Pdo_mysql]
  953. ; If mysqlnd is used: Number of cache slots for the internal result set cache
  954. ; http://php.net/pdo_mysql.cache_size
  955. pdo_mysql.cache_size = 2000
  956.  
  957. ; Default socket name for local MySQL connects. If empty, uses the built-in
  958. ; MySQL defaults.
  959. ; http://php.net/pdo_mysql.default-socket
  960. pdo_mysql.default_socket=
  961.  
  962. [Phar]
  963. ; http://php.net/phar.readonly
  964. ;phar.readonly = On
  965.  
  966. ; http://php.net/phar.require-hash
  967. ;phar.require_hash = On
  968.  
  969. ;phar.cache_list =
  970.  
  971. [mail function]
  972. ; For Unix only. You may supply arguments as well (default: "sendmail -t -i").
  973. ; http://php.net/sendmail-path
  974. sendmail_path = /usr/sbin/sendmail -t -i;
  975.  
  976. ; Force the addition of the specified parameters to be passed as extra parameters
  977. ; to the sendmail binary. These parameters will always replace the value of
  978. ; the 5th parameter to mail().
  979. ;mail.force_extra_parameters =
  980.  
  981. ; Add X-PHP-Originating-Script: that will include uid of the script followed by the filename
  982. mail.add_x_header = On
  983.  
  984. ; The path to a log file that will log all mail() calls. Log entries include
  985. ; the full path of the script, line number, To address and headers.
  986. ;mail.log =
  987. ; Log mail to syslog (Event Log on Windows).
  988. ;mail.log = syslog
  989.  
  990. [SQL]
  991. ; http://php.net/sql.safe-mode
  992. sql.safe_mode = Off
  993.  
  994. [ODBC]
  995. ; http://php.net/odbc.default-db
  996. ;odbc.default_db = Not yet implemented
  997.  
  998. ; http://php.net/odbc.default-user
  999. ;odbc.default_user = Not yet implemented
  1000.  
  1001. ; http://php.net/odbc.default-pw
  1002. ;odbc.default_pw = Not yet implemented
  1003.  
  1004. ; Controls the ODBC cursor model.
  1005. ; Default: SQL_CURSOR_STATIC (default).
  1006. ;odbc.default_cursortype
  1007.  
  1008. ; Allow or prevent persistent links.
  1009. ; http://php.net/odbc.allow-persistent
  1010. odbc.allow_persistent = Off
  1011.  
  1012. ; Check that a connection is still valid before reuse.
  1013. ; http://php.net/odbc.check-persistent
  1014. odbc.check_persistent = Off
  1015.  
  1016. ; Maximum number of persistent links. -1 means no limit.
  1017. ; http://php.net/odbc.max-persistent
  1018. odbc.max_persistent = -1
  1019.  
  1020. ; Maximum number of links (persistent + non-persistent). -1 means no limit.
  1021. ; http://php.net/odbc.max-links
  1022. odbc.max_links = -1
  1023.  
  1024. ; Handling of LONG fields. Returns number of bytes to variables. 0 means
  1025. ; passthru.
  1026. ; http://php.net/odbc.defaultlrl
  1027. odbc.defaultlrl = 4096
  1028.  
  1029. ; Handling of binary data. 0 means passthru, 1 return as is, 2 convert to char.
  1030. ; See the documentation on odbc_binmode and odbc_longreadlen for an explanation
  1031. ; of odbc.defaultlrl and odbc.defaultbinmode
  1032. ; http://php.net/odbc.defaultbinmode
  1033. odbc.defaultbinmode = 1
  1034.  
  1035. ;birdstep.max_links = -1
  1036.  
  1037. [Interbase]
  1038. ; Allow or prevent persistent links.
  1039. ibase.allow_persistent = 1
  1040.  
  1041. ; Maximum number of persistent links. -1 means no limit.
  1042. ibase.max_persistent = -1
  1043.  
  1044. ; Maximum number of links (persistent + non-persistent). -1 means no limit.
  1045. ibase.max_links = -1
  1046.  
  1047. ; Default database name for ibase_connect().
  1048. ;ibase.default_db =
  1049.  
  1050. ; Default username for ibase_connect().
  1051. ;ibase.default_user =
  1052.  
  1053. ; Default password for ibase_connect().
  1054. ;ibase.default_password =
  1055.  
  1056. ; Default charset for ibase_connect().
  1057. ;ibase.default_charset =
  1058.  
  1059. ; Default timestamp format.
  1060. ibase.timestampformat = "%Y-%m-%d %H:%M:%S"
  1061.  
  1062. ; Default date format.
  1063. ibase.dateformat = "%Y-%m-%d"
  1064.  
  1065. ; Default time format.
  1066. ibase.timeformat = "%H:%M:%S"
  1067.  
  1068. [MySQLi]
  1069.  
  1070. ; Maximum number of persistent links. -1 means no limit.
  1071. ; http://php.net/mysqli.max-persistent
  1072. mysqli.max_persistent = -1
  1073.  
  1074. ; Allow accessing, from PHP's perspective, local files with LOAD DATA statements
  1075. ; http://php.net/mysqli.allow_local_infile
  1076. ;mysqli.allow_local_infile = On
  1077.  
  1078. ; Allow or prevent persistent links.
  1079. ; http://php.net/mysqli.allow-persistent
  1080. mysqli.allow_persistent = Off
  1081.  
  1082. ; Maximum number of links. -1 means no limit.
  1083. ; http://php.net/mysqli.max-links
  1084. mysqli.max_links = -1
  1085.  
  1086. ; If mysqlnd is used: Number of cache slots for the internal result set cache
  1087. ; http://php.net/mysqli.cache_size
  1088. mysqli.cache_size = 2000
  1089.  
  1090. ; Default port number for mysqli_connect(). If unset, mysqli_connect() will use
  1091. ; the $MYSQL_TCP_PORT or the mysql-tcp entry in /etc/services or the
  1092. ; compile-time value defined MYSQL_PORT (in that order). Win32 will only look
  1093. ; at MYSQL_PORT.
  1094. ; http://php.net/mysqli.default-port
  1095. mysqli.default_port = 3306
  1096.  
  1097. ; Default socket name for local MySQL connects. If empty, uses the built-in
  1098. ; MySQL defaults.
  1099. ; http://php.net/mysqli.default-socket
  1100. mysqli.default_socket =
  1101.  
  1102. ; Default host for mysql_connect() (doesn't apply in safe mode).
  1103. ; http://php.net/mysqli.default-host
  1104. mysqli.default_host =
  1105.  
  1106. ; Default user for mysql_connect() (doesn't apply in safe mode).
  1107. ; http://php.net/mysqli.default-user
  1108. mysqli.default_user =
  1109.  
  1110. ; Default password for mysqli_connect() (doesn't apply in safe mode).
  1111. ; Note that this is generally a *bad* idea to store passwords in this file.
  1112. ; *Any* user with PHP access can run 'echo get_cfg_var("mysqli.default_pw")
  1113. ; and reveal this password! And of course, any users with read access to this
  1114. ; file will be able to reveal the password as well.
  1115. ; http://php.net/mysqli.default-pw
  1116. mysqli.default_pw =
  1117.  
  1118. ; Allow or prevent reconnect
  1119. mysqli.reconnect = Off
  1120.  
  1121. [mysqlnd]
  1122. ; Enable / Disable collection of general statistics by mysqlnd which can be
  1123. ; used to tune and monitor MySQL operations.
  1124. ; http://php.net/mysqlnd.collect_statistics
  1125. mysqlnd.collect_statistics = Off
  1126.  
  1127. ; Enable / Disable collection of memory usage statistics by mysqlnd which can be
  1128. ; used to tune and monitor MySQL operations.
  1129. ; http://php.net/mysqlnd.collect_memory_statistics
  1130. mysqlnd.collect_memory_statistics = Off
  1131.  
  1132. ; Size of a pre-allocated buffer used when sending commands to MySQL in bytes.
  1133. ; http://php.net/mysqlnd.net_cmd_buffer_size
  1134. ;mysqlnd.net_cmd_buffer_size = 2048
  1135.  
  1136. ; Size of a pre-allocated buffer used for reading data sent by the server in
  1137. ; bytes.
  1138. ; http://php.net/mysqlnd.net_read_buffer_size
  1139. ;mysqlnd.net_read_buffer_size = 32768
  1140.  
  1141. [OCI8]
  1142.  
  1143. ; Connection: Enables privileged connections using external
  1144. ; credentials (OCI_SYSOPER, OCI_SYSDBA)
  1145. ; http://php.net/oci8.privileged-connect
  1146. ;oci8.privileged_connect = Off
  1147.  
  1148. ; Connection: The maximum number of persistent OCI8 connections per
  1149. ; process. Using -1 means no limit.
  1150. ; http://php.net/oci8.max-persistent
  1151. ;oci8.max_persistent = -1
  1152.  
  1153. ; Connection: The maximum number of seconds a process is allowed to
  1154. ; maintain an idle persistent connection. Using -1 means idle
  1155. ; persistent connections will be maintained forever.
  1156. ; http://php.net/oci8.persistent-timeout
  1157. ;oci8.persistent_timeout = -1
  1158.  
  1159. ; Connection: The number of seconds that must pass before issuing a
  1160. ; ping during oci_pconnect() to check the connection validity. When
  1161. ; set to 0, each oci_pconnect() will cause a ping. Using -1 disables
  1162. ; pings completely.
  1163. ; http://php.net/oci8.ping-interval
  1164. ;oci8.ping_interval = 60
  1165.  
  1166. ; Connection: Set this to a user chosen connection class to be used
  1167. ; for all pooled server requests with Oracle 11g Database Resident
  1168. ; Connection Pooling (DRCP). To use DRCP, this value should be set to
  1169. ; the same string for all web servers running the same application,
  1170. ; the database pool must be configured, and the connection string must
  1171. ; specify to use a pooled server.
  1172. ;oci8.connection_class =
  1173.  
  1174. ; High Availability: Using On lets PHP receive Fast Application
  1175. ; Notification (FAN) events generated when a database node fails. The
  1176. ; database must also be configured to post FAN events.
  1177. ;oci8.events = Off
  1178.  
  1179. ; Tuning: This option enables statement caching, and specifies how
  1180. ; many statements to cache. Using 0 disables statement caching.
  1181. ; http://php.net/oci8.statement-cache-size
  1182. ;oci8.statement_cache_size = 20
  1183.  
  1184. ; Tuning: Enables statement prefetching and sets the default number of
  1185. ; rows that will be fetched automatically after statement execution.
  1186. ; http://php.net/oci8.default-prefetch
  1187. ;oci8.default_prefetch = 100
  1188.  
  1189. ; Compatibility. Using On means oci_close() will not close
  1190. ; oci_connect() and oci_new_connect() connections.
  1191. ; http://php.net/oci8.old-oci-close-semantics
  1192. ;oci8.old_oci_close_semantics = Off
  1193.  
  1194. [PostgreSQL]
  1195. ; Allow or prevent persistent links.
  1196. ; http://php.net/pgsql.allow-persistent
  1197. pgsql.allow_persistent = Off
  1198.  
  1199. ; Detect broken persistent links always with pg_pconnect().
  1200. ; Auto reset feature requires a little overheads.
  1201. ; http://php.net/pgsql.auto-reset-persistent
  1202. pgsql.auto_reset_persistent = Off
  1203.  
  1204. ; Maximum number of persistent links. -1 means no limit.
  1205. ; http://php.net/pgsql.max-persistent
  1206. pgsql.max_persistent = -1
  1207.  
  1208. ; Maximum number of links (persistent+non persistent). -1 means no limit.
  1209. ; http://php.net/pgsql.max-links
  1210. pgsql.max_links = -1
  1211.  
  1212. ; Ignore PostgreSQL backends Notice message or not.
  1213. ; Notice message logging require a little overheads.
  1214. ; http://php.net/pgsql.ignore-notice
  1215. pgsql.ignore_notice = 0
  1216.  
  1217. ; Log PostgreSQL backends Notice message or not.
  1218. ; Unless pgsql.ignore_notice=0, module cannot log notice message.
  1219. ; http://php.net/pgsql.log-notice
  1220. pgsql.log_notice = 0
  1221.  
  1222. [bcmath]
  1223. ; Number of decimal digits for all bcmath functions.
  1224. ; http://php.net/bcmath.scale
  1225. bcmath.scale = 0
  1226.  
  1227. [browscap]
  1228. ; http://php.net/browscap
  1229. ;browscap = extra/browscap.ini
  1230.  
  1231. [Session]
  1232. ; Handler used to store/retrieve data.
  1233. ; http://php.net/session.save-handler
  1234. session.save_handler = files
  1235.  
  1236. ; Argument passed to save_handler. In the case of files, this is the path
  1237. ; where data files are stored. Note: Windows users have to change this
  1238. ; variable in order to use PHP's session functions.
  1239. ;
  1240. ; The path can be defined as:
  1241. ;
  1242. ; session.save_path = "N;/path"
  1243. ;
  1244. ; where N is an integer. Instead of storing all the session files in
  1245. ; /path, what this will do is use subdirectories N-levels deep, and
  1246. ; store the session data in those directories. This is useful if
  1247. ; your OS has problems with many files in one directory, and is
  1248. ; a more efficient layout for servers that handle many sessions.
  1249. ;
  1250. ; NOTE 1: PHP will not create this directory structure automatically.
  1251. ; You can use the script in the ext/session dir for that purpose.
  1252. ; NOTE 2: See the section on garbage collection below if you choose to
  1253. ; use subdirectories for session storage
  1254. ;
  1255. ; The file storage module creates files using mode 600 by default.
  1256. ; You can change that by using
  1257. ;
  1258. ; session.save_path = "N;MODE;/path"
  1259. ;
  1260. ; where MODE is the octal representation of the mode. Note that this
  1261. ; does not overwrite the process's umask.
  1262. ; http://php.net/session.save-path
  1263.  
  1264. ; RPM note : session directory must be owned by process owner
  1265. ; for mod_php, see /etc/httpd/conf.d/php.conf
  1266. ; for php-fpm, see /etc/php-fpm.d/*conf
  1267. session.save_path = "/tmp"
  1268.  
  1269. ; Whether to use strict session mode.
  1270. ; Strict session mode does not accept uninitialized session ID and regenerate
  1271. ; session ID if browser sends uninitialized session ID. Strict mode protects
  1272. ; applications from session fixation via session adoption vulnerability. It is
  1273. ; disabled by default for maximum compatibility, but enabling it is encouraged.
  1274. ; https://wiki.php.net/rfc/strict_sessions
  1275. session.use_strict_mode = 0
  1276.  
  1277. ; Whether to use cookies.
  1278. ; http://php.net/session.use-cookies
  1279. session.use_cookies = 1
  1280.  
  1281. ; http://php.net/session.cookie-secure
  1282. ;session.cookie_secure =
  1283.  
  1284. ; This option forces PHP to fetch and use a cookie for storing and maintaining
  1285. ; the session id. We encourage this operation as it's very helpful in combating
  1286. ; session hijacking when not specifying and managing your own session id. It is
  1287. ; not the be-all and end-all of session hijacking defense, but it's a good start.
  1288. ; http://php.net/session.use-only-cookies
  1289. session.use_only_cookies = 1
  1290.  
  1291. ; Name of the session (used as cookie name).
  1292. ; http://php.net/session.name
  1293. session.name = PHPSESSID
  1294.  
  1295. ; Initialize session on request startup.
  1296. ; http://php.net/session.auto-start
  1297. session.auto_start = 0
  1298.  
  1299. ; Lifetime in seconds of cookie or, if 0, until browser is restarted.
  1300. ; http://php.net/session.cookie-lifetime
  1301. session.cookie_lifetime = 0
  1302.  
  1303. ; The path for which the cookie is valid.
  1304. ; http://php.net/session.cookie-path
  1305. session.cookie_path = /
  1306.  
  1307. ; The domain for which the cookie is valid.
  1308. ; http://php.net/session.cookie-domain
  1309. session.cookie_domain =
  1310.  
  1311. ; Whether or not to add the httpOnly flag to the cookie, which makes it inaccessible to browser scripting languages such as JavaScript.
  1312. ; http://php.net/session.cookie-httponly
  1313. session.cookie_httponly =
  1314.  
  1315. ; Handler used to serialize data. php is the standard serializer of PHP.
  1316. ; http://php.net/session.serialize-handler
  1317. session.serialize_handler = php
  1318.  
  1319. ; Defines the probability that the 'garbage collection' process is started
  1320. ; on every session initialization. The probability is calculated by using
  1321. ; gc_probability/gc_divisor. Where session.gc_probability is the numerator
  1322. ; and gc_divisor is the denominator in the equation. Setting this value to 1
  1323. ; when the session.gc_divisor value is 100 will give you approximately a 1% chance
  1324. ; the gc will run on any give request.
  1325. ; Default Value: 1
  1326. ; Development Value: 1
  1327. ; Production Value: 1
  1328. ; http://php.net/session.gc-probability
  1329. session.gc_probability = 1
  1330.  
  1331. ; Defines the probability that the 'garbage collection' process is started on every
  1332. ; session initialization. The probability is calculated by using the following equation:
  1333. ; gc_probability/gc_divisor. Where session.gc_probability is the numerator and
  1334. ; session.gc_divisor is the denominator in the equation. Setting this value to 1
  1335. ; when the session.gc_divisor value is 100 will give you approximately a 1% chance
  1336. ; the gc will run on any give request. Increasing this value to 1000 will give you
  1337. ; a 0.1% chance the gc will run on any give request. For high volume production servers,
  1338. ; this is a more efficient approach.
  1339. ; Default Value: 100
  1340. ; Development Value: 1000
  1341. ; Production Value: 1000
  1342. ; http://php.net/session.gc-divisor
  1343. session.gc_divisor = 100
  1344.  
  1345. ; After this number of seconds, stored data will be seen as 'garbage' and
  1346. ; cleaned up by the garbage collection process.
  1347. ; http://php.net/session.gc-maxlifetime
  1348. session.gc_maxlifetime = 1440
  1349.  
  1350. ; NOTE: If you are using the subdirectory option for storing session files
  1351. ; (see session.save_path above), then garbage collection does *not*
  1352. ; happen automatically. You will need to do your own garbage
  1353. ; collection through a shell script, cron entry, or some other method.
  1354. ; For example, the following script would is the equivalent of
  1355. ; setting session.gc_maxlifetime to 1440 (1440 seconds = 24 minutes):
  1356. ; find /path/to/sessions -cmin +24 -type f | xargs rm
  1357.  
  1358. ; Check HTTP Referer to invalidate externally stored URLs containing ids.
  1359. ; HTTP_REFERER has to contain this substring for the session to be
  1360. ; considered as valid.
  1361. ; http://php.net/session.referer-check
  1362. session.referer_check =
  1363.  
  1364. ; How many bytes to read from the file.
  1365. ; http://php.net/session.entropy-length
  1366. ;session.entropy_length = 32
  1367.  
  1368. ; Specified here to create the session id.
  1369. ; http://php.net/session.entropy-file
  1370. ; Defaults to /dev/urandom
  1371. ; On systems that don't have /dev/urandom but do have /dev/arandom, this will default to /dev/arandom
  1372. ; If neither are found at compile time, the default is no entropy file.
  1373. ; On windows, setting the entropy_length setting will activate the
  1374. ; Windows random source (using the CryptoAPI)
  1375. ;session.entropy_file = /dev/urandom
  1376.  
  1377. ; Set to {nocache,private,public,} to determine HTTP caching aspects
  1378. ; or leave this empty to avoid sending anti-caching headers.
  1379. ; http://php.net/session.cache-limiter
  1380. session.cache_limiter = nocache
  1381.  
  1382. ; Document expires after n minutes.
  1383. ; http://php.net/session.cache-expire
  1384. session.cache_expire = 180
  1385.  
  1386. ; trans sid support is disabled by default.
  1387. ; Use of trans sid may risk your users' security.
  1388. ; Use this option with caution.
  1389. ; - User may send URL contains active session ID
  1390. ; to other person via. email/irc/etc.
  1391. ; - URL that contains active session ID may be stored
  1392. ; in publicly accessible computer.
  1393. ; - User may access your site with the same session ID
  1394. ; always using URL stored in browser's history or bookmarks.
  1395. ; http://php.net/session.use-trans-sid
  1396. session.use_trans_sid = 0
  1397.  
  1398. ; Select a hash function for use in generating session ids.
  1399. ; Possible Values
  1400. ; 0 (MD5 128 bits)
  1401. ; 1 (SHA-1 160 bits)
  1402. ; This option may also be set to the name of any hash function supported by
  1403. ; the hash extension. A list of available hashes is returned by the hash_algos()
  1404. ; function.
  1405. ; http://php.net/session.hash-function
  1406. session.hash_function = 0
  1407.  
  1408. ; Define how many bits are stored in each character when converting
  1409. ; the binary hash data to something readable.
  1410. ; Possible values:
  1411. ; 4 (4 bits: 0-9, a-f)
  1412. ; 5 (5 bits: 0-9, a-v)
  1413. ; 6 (6 bits: 0-9, a-z, A-Z, "-", ",")
  1414. ; Default Value: 4
  1415. ; Development Value: 5
  1416. ; Production Value: 5
  1417. ; http://php.net/session.hash-bits-per-character
  1418. session.hash_bits_per_character = 5
  1419.  
  1420. ; The URL rewriter will look for URLs in a defined set of HTML tags.
  1421. ; form/fieldset are special; if you include them here, the rewriter will
  1422. ; add a hidden <input> field with the info which is otherwise appended
  1423. ; to URLs. If you want XHTML conformity, remove the form entry.
  1424. ; Note that all valid entries require a "=", even if no value follows.
  1425. ; Default Value: "a=href,area=href,frame=src,form=,fieldset="
  1426. ; Development Value: "a=href,area=href,frame=src,input=src,form=fakeentry"
  1427. ; Production Value: "a=href,area=href,frame=src,input=src,form=fakeentry"
  1428. ; http://php.net/url-rewriter.tags
  1429. url_rewriter.tags = "a=href,area=href,frame=src,input=src,form=,fieldset="
  1430.  
  1431. ; Enable upload progress tracking in $_SESSION
  1432. ; Default Value: On
  1433. ; Development Value: On
  1434. ; Production Value: On
  1435. ; http://php.net/session.upload-progress.enabled
  1436. ;session.upload_progress.enabled = On
  1437.  
  1438. ; Cleanup the progress information as soon as all POST data has been read
  1439. ; (i.e. upload completed).
  1440. ; Default Value: On
  1441. ; Development Value: On
  1442. ; Production Value: On
  1443. ; http://php.net/session.upload-progress.cleanup
  1444. ;session.upload_progress.cleanup = On
  1445.  
  1446. ; A prefix used for the upload progress key in $_SESSION
  1447. ; Default Value: "upload_progress_"
  1448. ; Development Value: "upload_progress_"
  1449. ; Production Value: "upload_progress_"
  1450. ; http://php.net/session.upload-progress.prefix
  1451. ;session.upload_progress.prefix = "upload_progress_"
  1452.  
  1453. ; The index name (concatenated with the prefix) in $_SESSION
  1454. ; containing the upload progress information
  1455. ; Default Value: "PHP_SESSION_UPLOAD_PROGRESS"
  1456. ; Development Value: "PHP_SESSION_UPLOAD_PROGRESS"
  1457. ; Production Value: "PHP_SESSION_UPLOAD_PROGRESS"
  1458. ; http://php.net/session.upload-progress.name
  1459. ;session.upload_progress.name = "PHP_SESSION_UPLOAD_PROGRESS"
  1460.  
  1461. ; How frequently the upload progress should be updated.
  1462. ; Given either in percentages (per-file), or in bytes
  1463. ; Default Value: "1%"
  1464. ; Development Value: "1%"
  1465. ; Production Value: "1%"
  1466. ; http://php.net/session.upload-progress.freq
  1467. ;session.upload_progress.freq = "1%"
  1468.  
  1469. ; The minimum delay between updates, in seconds
  1470. ; Default Value: 1
  1471. ; Development Value: 1
  1472. ; Production Value: 1
  1473. ; http://php.net/session.upload-progress.min-freq
  1474. ;session.upload_progress.min_freq = "1"
  1475.  
  1476. [Assertion]
  1477. ; Switch whether to compile assertions at all (to have no overhead at run-time)
  1478. ; -1: Do not compile at all
  1479. ; 0: Jump over assertion at run-time
  1480. ; 1: Execute assertions
  1481. ; 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)
  1482. ; Default Value: 1
  1483. ; Development Value: 1
  1484. ; Production Value: -1
  1485. ; http://php.net/zend.assertions
  1486. zend.assertions = -1
  1487.  
  1488. ; Assert(expr); active by default.
  1489. ; http://php.net/assert.active
  1490. ;assert.active = On
  1491.  
  1492. ; Throw an AssertationException on failed assertions
  1493. ; http://php.net/assert.exception
  1494. ;assert.exception = On
  1495.  
  1496. ; Issue a PHP warning for each failed assertion. (Overridden by assert.exception if active)
  1497. ; http://php.net/assert.warning
  1498. ;assert.warning = On
  1499.  
  1500. ; Don't bail out by default.
  1501. ; http://php.net/assert.bail
  1502. ;assert.bail = Off
  1503.  
  1504. ; User-function to be called if an assertion fails.
  1505. ; http://php.net/assert.callback
  1506. ;assert.callback = 0
  1507.  
  1508. ; Eval the expression with current error_reporting(). Set to true if you want
  1509. ; error_reporting(0) around the eval().
  1510. ; http://php.net/assert.quiet-eval
  1511. ;assert.quiet_eval = 0
  1512.  
  1513. [mbstring]
  1514. ; language for internal character representation.
  1515. ; This affects mb_send_mail() and mbstring.detect_order.
  1516. ; http://php.net/mbstring.language
  1517. ;mbstring.language = Japanese
  1518.  
  1519. ; Use of this INI entry is deprecated, use global internal_encoding instead.
  1520. ; internal/script encoding.
  1521. ; Some encoding cannot work as internal encoding. (e.g. SJIS, BIG5, ISO-2022-*)
  1522. ; If empty, default_charset or internal_encoding or iconv.internal_encoding is used.
  1523. ; The precedence is: default_charset < internal_encoding < iconv.internal_encoding
  1524. ;mbstring.internal_encoding =
  1525.  
  1526. ; Use of this INI entry is deprecated, use global input_encoding instead.
  1527. ; http input encoding.
  1528. ; mbstring.encoding_traslation = On is needed to use this setting.
  1529. ; If empty, default_charset or input_encoding or mbstring.input is used.
  1530. ; The precedence is: default_charset < intput_encoding < mbsting.http_input
  1531. ; http://php.net/mbstring.http-input
  1532. ;mbstring.http_input =
  1533.  
  1534. ; Use of this INI entry is deprecated, use global output_encoding instead.
  1535. ; http output encoding.
  1536. ; mb_output_handler must be registered as output buffer to function.
  1537. ; If empty, default_charset or output_encoding or mbstring.http_output is used.
  1538. ; The precedence is: default_charset < output_encoding < mbstring.http_output
  1539. ; To use an output encoding conversion, mbstring's output handler must be set
  1540. ; otherwise output encoding conversion cannot be performed.
  1541. ; http://php.net/mbstring.http-output
  1542. ;mbstring.http_output =
  1543.  
  1544. ; enable automatic encoding translation according to
  1545. ; mbstring.internal_encoding setting. Input chars are
  1546. ; converted to internal encoding by setting this to On.
  1547. ; Note: Do _not_ use automatic encoding translation for
  1548. ; portable libs/applications.
  1549. ; http://php.net/mbstring.encoding-translation
  1550. ;mbstring.encoding_translation = Off
  1551.  
  1552. ; automatic encoding detection order.
  1553. ; "auto" detect order is changed according to mbstring.language
  1554. ; http://php.net/mbstring.detect-order
  1555. ;mbstring.detect_order = auto
  1556.  
  1557. ; substitute_character used when character cannot be converted
  1558. ; one from another
  1559. ; http://php.net/mbstring.substitute-character
  1560. ;mbstring.substitute_character = none
  1561.  
  1562. ; overload(replace) single byte functions by mbstring functions.
  1563. ; mail(), ereg(), etc are overloaded by mb_send_mail(), mb_ereg(),
  1564. ; etc. Possible values are 0,1,2,4 or combination of them.
  1565. ; For example, 7 for overload everything.
  1566. ; 0: No overload
  1567. ; 1: Overload mail() function
  1568. ; 2: Overload str*() functions
  1569. ; 4: Overload ereg*() functions
  1570. ; http://php.net/mbstring.func-overload
  1571. ;mbstring.func_overload = 0
  1572.  
  1573. ; enable strict encoding detection.
  1574. ; Default: Off
  1575. ;mbstring.strict_detection = On
  1576.  
  1577. ; This directive specifies the regex pattern of content types for which mb_output_handler()
  1578. ; is activated.
  1579. ; Default: mbstring.http_output_conv_mimetype=^(text/|application/xhtml\+xml)
  1580. ;mbstring.http_output_conv_mimetype=
  1581.  
  1582. [gd]
  1583. ; Tell the jpeg decode to ignore warnings and try to create
  1584. ; a gd image. The warning will then be displayed as notices
  1585. ; disabled by default
  1586. ; http://php.net/gd.jpeg-ignore-warning
  1587. ;gd.jpeg_ignore_warning = 0
  1588.  
  1589. [exif]
  1590. ; Exif UNICODE user comments are handled as UCS-2BE/UCS-2LE and JIS as JIS.
  1591. ; With mbstring support this will automatically be converted into the encoding
  1592. ; given by corresponding encode setting. When empty mbstring.internal_encoding
  1593. ; is used. For the decode settings you can distinguish between motorola and
  1594. ; intel byte order. A decode setting cannot be empty.
  1595. ; http://php.net/exif.encode-unicode
  1596. ;exif.encode_unicode = ISO-8859-15
  1597.  
  1598. ; http://php.net/exif.decode-unicode-motorola
  1599. ;exif.decode_unicode_motorola = UCS-2BE
  1600.  
  1601. ; http://php.net/exif.decode-unicode-intel
  1602. ;exif.decode_unicode_intel = UCS-2LE
  1603.  
  1604. ; http://php.net/exif.encode-jis
  1605. ;exif.encode_jis =
  1606.  
  1607. ; http://php.net/exif.decode-jis-motorola
  1608. ;exif.decode_jis_motorola = JIS
  1609.  
  1610. ; http://php.net/exif.decode-jis-intel
  1611. ;exif.decode_jis_intel = JIS
  1612.  
  1613. [Tidy]
  1614. ; The path to a default tidy configuration file to use when using tidy
  1615. ; http://php.net/tidy.default-config
  1616. ;tidy.default_config = /usr/local/lib/php/default.tcfg
  1617.  
  1618. ; Should tidy clean and repair output automatically?
  1619. ; WARNING: Do not use this option if you are generating non-html content
  1620. ; such as dynamic images
  1621. ; http://php.net/tidy.clean-output
  1622. tidy.clean_output = Off
  1623.  
  1624. [soap]
  1625. ; Enables or disables WSDL caching feature.
  1626. ; http://php.net/soap.wsdl-cache-enabled
  1627. soap.wsdl_cache_enabled=1
  1628.  
  1629. ; Sets the directory name where SOAP extension will put cache files.
  1630. ; http://php.net/soap.wsdl-cache-dir
  1631.  
  1632. ; RPM note : cache directory must be owned by process owner
  1633. ; for mod_php, see /etc/httpd/conf.d/php.conf
  1634. ; for php-fpm, see /etc/php-fpm.d/*conf
  1635. soap.wsdl_cache_dir="/tmp"
  1636.  
  1637. ; (time to live) Sets the number of second while cached file will be used
  1638. ; instead of original one.
  1639. ; http://php.net/soap.wsdl-cache-ttl
  1640. soap.wsdl_cache_ttl=86400
  1641.  
  1642. ; Sets the size of the cache limit. (Max. number of WSDL files to cache)
  1643. soap.wsdl_cache_limit = 5
  1644.  
  1645. [sysvshm]
  1646. ; A default size of the shared memory segment
  1647. ;sysvshm.init_mem = 10000
  1648.  
  1649. [ldap]
  1650. ; Sets the maximum number of open links or -1 for unlimited.
  1651. ldap.max_links = -1
  1652.  
  1653. [mcrypt]
  1654. ; For more information about mcrypt settings see http://php.net/mcrypt-module-open
  1655.  
  1656. ; Directory where to load mcrypt algorithms
  1657. ; Default: Compiled in into libmcrypt (usually /usr/local/lib/libmcrypt)
  1658. ;mcrypt.algorithms_dir=
  1659.  
  1660. ; Directory where to load mcrypt modes
  1661. ; Default: Compiled in into libmcrypt (usually /usr/local/lib/libmcrypt)
  1662. ;mcrypt.modes_dir=
  1663.  
  1664. [dba]
  1665. ;dba.default_handler=
  1666.  
  1667. [curl]
  1668. ; A default value for the CURLOPT_CAINFO option. This is required to be an
  1669. ; absolute path.
  1670. ;curl.cainfo =
  1671.  
  1672. [openssl]
  1673. ; The location of a Certificate Authority (CA) file on the local filesystem
  1674. ; to use when verifying the identity of SSL/TLS peers. Most users should
  1675. ; not specify a value for this directive as PHP will attempt to use the
  1676. ; OS-managed cert stores in its absence. If specified, this value may still
  1677. ; be overridden on a per-stream basis via the "cafile" SSL stream context
  1678. ; option.
  1679. ;openssl.cafile=
  1680.  
  1681. ; If openssl.cafile is not specified or if the CA file is not found, the
  1682. ; directory pointed to by openssl.capath is searched for a suitable
  1683. ; certificate. This value must be a correctly hashed certificate directory.
  1684. ; Most users should not specify a value for this directive as PHP will
  1685. ; attempt to use the OS-managed cert stores in its absence. If specified,
  1686. ; this value may still be overridden on a per-stream basis via the "capath"
  1687. ; SSL stream context option.
  1688. ;openssl.capath=
  1689.  
  1690. ; Local Variables:
  1691. ; tab-width: 4
  1692. ; End:
  1693.  
  1694. ;;;;;;;;;;;;;;;;;;;
  1695. ; Bundled modules ;
  1696. ;;;;;;;;;;;;;;;;;;;
  1697.  
  1698. extension="mailparse.so"
  1699. extension="uploadprogress.so"
  1700. extension="imagick.so"
  1701. extension="magickwand.so"
  1702. extension="oauth.so"
  1703.  
  1704. zend_extension="/opt/ioncube/ioncube_loader_lin_7.0.so"
  1705. ;zend_extension="/opt/php70/lib/php/extensions/no-debug-non-zts-20151012/opcache.so"
Add Comment
Please, Sign In to add comment