You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

1999 lines
71 KiB

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