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.

1936 lines
68 KiB

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