PageRenderTime 63ms CodeModel.GetById 24ms RepoModel.GetById 1ms app.codeStats 0ms

/pspautotests/utils/win32/php.ini

http://pspemu.googlecode.com/
INI | 1760 lines | 156 code | 302 blank | 1302 comment | 0 complexity | 3d558d25952fb89651999fa5a1c639e8 MD5 | raw file
Possible License(s): AGPL-1.0, LGPL-2.1, ISC

Large files files are truncated, but you can click here to view the full file

  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. ;;;;;;;;;;;;;;;;;;;
  72. ; Quick Reference ;
  73. ;;;;;;;;;;;;;;;;;;;
  74. ; The following are all the settings which are different in either the production
  75. ; or development versions of the INIs with respect to PHP's default behavior.
  76. ; Please see the actual settings later in the document for more details as to why
  77. ; we recommend these changes in PHP's behavior.
  78. ; display_errors
  79. ; Default Value: On
  80. ; Development Value: On
  81. ; Production Value: Off
  82. ; display_startup_errors
  83. ; Default Value: Off
  84. ; Development Value: On
  85. ; Production Value: Off
  86. ; error_reporting
  87. ; Default Value: E_ALL & ~E_NOTICE & ~E_STRICT & ~E_DEPRECATED
  88. ; Development Value: E_ALL
  89. ; Production Value: E_ALL & ~E_DEPRECATED & ~E_STRICT
  90. ; html_errors
  91. ; Default Value: On
  92. ; Development Value: On
  93. ; Production value: On
  94. ; log_errors
  95. ; Default Value: Off
  96. ; Development Value: On
  97. ; Production Value: On
  98. ; max_input_time
  99. ; Default Value: -1 (Unlimited)
  100. ; Development Value: 60 (60 seconds)
  101. ; Production Value: 60 (60 seconds)
  102. ; output_buffering
  103. ; Default Value: Off
  104. ; Development Value: 4096
  105. ; Production Value: 4096
  106. ; register_argc_argv
  107. ; Default Value: On
  108. ; Development Value: Off
  109. ; Production Value: Off
  110. ; request_order
  111. ; Default Value: None
  112. ; Development Value: "GP"
  113. ; Production Value: "GP"
  114. ; session.bug_compat_42
  115. ; Default Value: On
  116. ; Development Value: On
  117. ; Production Value: Off
  118. ; session.bug_compat_warn
  119. ; Default Value: On
  120. ; Development Value: On
  121. ; Production Value: Off
  122. ; session.gc_divisor
  123. ; Default Value: 100
  124. ; Development Value: 1000
  125. ; Production Value: 1000
  126. ; session.hash_bits_per_character
  127. ; Default Value: 4
  128. ; Development Value: 5
  129. ; Production Value: 5
  130. ; short_open_tag
  131. ; Default Value: On
  132. ; Development Value: Off
  133. ; Production Value: Off
  134. ; track_errors
  135. ; Default Value: Off
  136. ; Development Value: On
  137. ; Production Value: Off
  138. ; url_rewriter.tags
  139. ; Default Value: "a=href,area=href,frame=src,form=,fieldset="
  140. ; Development Value: "a=href,area=href,frame=src,input=src,form=fakeentry"
  141. ; Production Value: "a=href,area=href,frame=src,input=src,form=fakeentry"
  142. ; variables_order
  143. ; Default Value: "EGPCS"
  144. ; Development Value: "GPCS"
  145. ; Production Value: "GPCS"
  146. ;;;;;;;;;;;;;;;;;;;;
  147. ; php.ini Options ;
  148. ;;;;;;;;;;;;;;;;;;;;
  149. ; Name for user-defined php.ini (.htaccess) files. Default is ".user.ini"
  150. ;user_ini.filename = ".user.ini"
  151. ; To disable this feature set this option to empty value
  152. ;user_ini.filename =
  153. ; TTL for user-defined php.ini files (time-to-live) in seconds. Default is 300 seconds (5 minutes)
  154. ;user_ini.cache_ttl = 300
  155. ;;;;;;;;;;;;;;;;;;;;
  156. ; Language Options ;
  157. ;;;;;;;;;;;;;;;;;;;;
  158. ; Enable the PHP scripting language engine under Apache.
  159. ; http://php.net/engine
  160. engine = On
  161. ; This directive determines whether or not PHP will recognize code between
  162. ; <? and ?> tags as PHP source which should be processed as such. It's been
  163. ; recommended for several years that you not use the short tag "short cut" and
  164. ; instead to use the full <?php and ?> tag combination. With the wide spread use
  165. ; of XML and use of these tags by other languages, the server can become easily
  166. ; confused and end up parsing the wrong code in the wrong context. But because
  167. ; this short cut has been a feature for such a long time, it's currently still
  168. ; supported for backwards compatibility, but we recommend you don't use them.
  169. ; Default Value: On
  170. ; Development Value: Off
  171. ; Production Value: Off
  172. ; http://php.net/short-open-tag
  173. short_open_tag = Off
  174. ; Allow ASP-style <% %> tags.
  175. ; http://php.net/asp-tags
  176. asp_tags = Off
  177. ; The number of significant digits displayed in floating point numbers.
  178. ; http://php.net/precision
  179. precision = 14
  180. ; Output buffering is a mechanism for controlling how much output data
  181. ; (excluding headers and cookies) PHP should keep internally before pushing that
  182. ; data to the client. If your application's output exceeds this setting, PHP
  183. ; will send that data in chunks of roughly the size you specify.
  184. ; Turning on this setting and managing its maximum buffer size can yield some
  185. ; interesting side-effects depending on your application and web server.
  186. ; You may be able to send headers and cookies after you've already sent output
  187. ; through print or echo. You also may see performance benefits if your server is
  188. ; emitting less packets due to buffered output versus PHP streaming the output
  189. ; as it gets it. On production servers, 4096 bytes is a good setting for performance
  190. ; reasons.
  191. ; Note: Output buffering can also be controlled via Output Buffering Control
  192. ; functions.
  193. ; Possible Values:
  194. ; On = Enabled and buffer is unlimited. (Use with caution)
  195. ; Off = Disabled
  196. ; Integer = Enables the buffer and sets its maximum size in bytes.
  197. ; Note: This directive is hardcoded to Off for the CLI SAPI
  198. ; Default Value: Off
  199. ; Development Value: 4096
  200. ; Production Value: 4096
  201. ; http://php.net/output-buffering
  202. output_buffering = 4096
  203. ; You can redirect all of the output of your scripts to a function. For
  204. ; example, if you set output_handler to "mb_output_handler", character
  205. ; encoding will be transparently converted to the specified encoding.
  206. ; Setting any output handler automatically turns on output buffering.
  207. ; Note: People who wrote portable scripts should not depend on this ini
  208. ; directive. Instead, explicitly set the output handler using ob_start().
  209. ; Using this ini directive may cause problems unless you know what script
  210. ; is doing.
  211. ; Note: You cannot use both "mb_output_handler" with "ob_iconv_handler"
  212. ; and you cannot use both "ob_gzhandler" and "zlib.output_compression".
  213. ; Note: output_handler must be empty if this is set 'On' !!!!
  214. ; Instead you must use zlib.output_handler.
  215. ; http://php.net/output-handler
  216. ;output_handler =
  217. ; Transparent output compression using the zlib library
  218. ; Valid values for this option are 'off', 'on', or a specific buffer size
  219. ; to be used for compression (default is 4KB)
  220. ; Note: Resulting chunk size may vary due to nature of compression. PHP
  221. ; outputs chunks that are few hundreds bytes each as a result of
  222. ; compression. If you prefer a larger chunk size for better
  223. ; performance, enable output_buffering in addition.
  224. ; Note: You need to use zlib.output_handler instead of the standard
  225. ; output_handler, or otherwise the output will be corrupted.
  226. ; http://php.net/zlib.output-compression
  227. zlib.output_compression = Off
  228. ; http://php.net/zlib.output-compression-level
  229. ;zlib.output_compression_level = -1
  230. ; You cannot specify additional output handlers if zlib.output_compression
  231. ; is activated here. This setting does the same as output_handler but in
  232. ; a different order.
  233. ; http://php.net/zlib.output-handler
  234. ;zlib.output_handler =
  235. ; Implicit flush tells PHP to tell the output layer to flush itself
  236. ; automatically after every output block. This is equivalent to calling the
  237. ; PHP function flush() after each and every call to print() or echo() and each
  238. ; and every HTML block. Turning this option on has serious performance
  239. ; implications and is generally recommended for debugging purposes only.
  240. ; http://php.net/implicit-flush
  241. ; Note: This directive is hardcoded to On for the CLI SAPI
  242. implicit_flush = Off
  243. ; The unserialize callback function will be called (with the undefined class'
  244. ; name as parameter), if the unserializer finds an undefined class
  245. ; which should be instantiated. A warning appears if the specified function is
  246. ; not defined, or if the function doesn't include/implement the missing class.
  247. ; So only set this entry, if you really want to implement such a
  248. ; callback-function.
  249. unserialize_callback_func =
  250. ; When floats & doubles are serialized store serialize_precision significant
  251. ; digits after the floating point. The default value ensures that when floats
  252. ; are decoded with unserialize, the data will remain the same.
  253. serialize_precision = 17
  254. ; open_basedir, if set, limits all file operations to the defined directory
  255. ; and below. This directive makes most sense if used in a per-directory
  256. ; or per-virtualhost web server configuration file. This directive is
  257. ; *NOT* affected by whether Safe Mode is turned On or Off.
  258. ; http://php.net/open-basedir
  259. ;open_basedir =
  260. ; This directive allows you to disable certain functions for security reasons.
  261. ; It receives a comma-delimited list of function names. This directive is
  262. ; *NOT* affected by whether Safe Mode is turned On or Off.
  263. ; http://php.net/disable-functions
  264. disable_functions =
  265. ; This directive allows you to disable certain classes for security reasons.
  266. ; It receives a comma-delimited list of class names. This directive is
  267. ; *NOT* affected by whether Safe Mode is turned On or Off.
  268. ; http://php.net/disable-classes
  269. disable_classes =
  270. ; Colors for Syntax Highlighting mode. Anything that's acceptable in
  271. ; <span style="color: ???????"> would work.
  272. ; http://php.net/syntax-highlighting
  273. ;highlight.string = #DD0000
  274. ;highlight.comment = #FF9900
  275. ;highlight.keyword = #007700
  276. ;highlight.default = #0000BB
  277. ;highlight.html = #000000
  278. ; If enabled, the request will be allowed to complete even if the user aborts
  279. ; the request. Consider enabling it if executing long requests, which may end up
  280. ; being interrupted by the user or a browser timing out. PHP's default behavior
  281. ; is to disable this feature.
  282. ; http://php.net/ignore-user-abort
  283. ;ignore_user_abort = On
  284. ; Determines the size of the realpath cache to be used by PHP. This value should
  285. ; be increased on systems where PHP opens many files to reflect the quantity of
  286. ; the file operations performed.
  287. ; http://php.net/realpath-cache-size
  288. ;realpath_cache_size = 16k
  289. ; Duration of time, in seconds for which to cache realpath information for a given
  290. ; file or directory. For systems with rarely changing files, consider increasing this
  291. ; value.
  292. ; http://php.net/realpath-cache-ttl
  293. ;realpath_cache_ttl = 120
  294. ; Enables or disables the circular reference collector.
  295. ; http://php.net/zend.enable-gc
  296. zend.enable_gc = On
  297. ; If enabled, scripts may be written in encodings that are incompatible with
  298. ; the scanner. CP936, Big5, CP949 and Shift_JIS are the examples of such
  299. ; encodings. To use this feature, mbstring extension must be enabled.
  300. ; Default: Off
  301. ;zend.multibyte = Off
  302. ; Allows to set the default encoding for the scripts. This value will be used
  303. ; unless "declare(encoding=...)" directive appears at the top of the script.
  304. ; Only affects if zend.multibyte is set.
  305. ; Default: ""
  306. ;zend.script_encoding =
  307. ;;;;;;;;;;;;;;;;;
  308. ; Miscellaneous ;
  309. ;;;;;;;;;;;;;;;;;
  310. ; Decides whether PHP may expose the fact that it is installed on the server
  311. ; (e.g. by adding its signature to the Web server header). It is no security
  312. ; threat in any way, but it makes it possible to determine whether you use PHP
  313. ; on your server or not.
  314. ; http://php.net/expose-php
  315. expose_php = On
  316. ;;;;;;;;;;;;;;;;;;;
  317. ; Resource Limits ;
  318. ;;;;;;;;;;;;;;;;;;;
  319. ; Maximum execution time of each script, in seconds
  320. ; http://php.net/max-execution-time
  321. ; Note: This directive is hardcoded to 0 for the CLI SAPI
  322. max_execution_time = 30
  323. ; Maximum amount of time each script may spend parsing request data. It's a good
  324. ; idea to limit this time on productions servers in order to eliminate unexpectedly
  325. ; long running scripts.
  326. ; Note: This directive is hardcoded to -1 for the CLI SAPI
  327. ; Default Value: -1 (Unlimited)
  328. ; Development Value: 60 (60 seconds)
  329. ; Production Value: 60 (60 seconds)
  330. ; http://php.net/max-input-time
  331. max_input_time = 60
  332. ; Maximum input variable nesting level
  333. ; http://php.net/max-input-nesting-level
  334. ;max_input_nesting_level = 64
  335. ; How many GET/POST/COOKIE input variables may be accepted
  336. ; max_input_vars = 1000
  337. ; Maximum amount of memory a script may consume (128MB)
  338. ; http://php.net/memory-limit
  339. memory_limit = 128M
  340. ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
  341. ; Error handling and logging ;
  342. ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
  343. ; This directive informs PHP of which errors, warnings and notices you would like
  344. ; it to take action for. The recommended way of setting values for this
  345. ; directive is through the use of the error level constants and bitwise
  346. ; operators. The error level constants are below here for convenience as well as
  347. ; some common settings and their meanings.
  348. ; By default, PHP is set to take action on all errors, notices and warnings EXCEPT
  349. ; those related to E_NOTICE and E_STRICT, which together cover best practices and
  350. ; recommended coding standards in PHP. For performance reasons, this is the
  351. ; recommend error reporting setting. Your production server shouldn't be wasting
  352. ; resources complaining about best practices and coding standards. That's what
  353. ; development servers and development settings are for.
  354. ; Note: The php.ini-development file has this setting as E_ALL. This
  355. ; means it pretty much reports everything which is exactly what you want during
  356. ; development and early testing.
  357. ;
  358. ; Error Level Constants:
  359. ; E_ALL - All errors and warnings (includes E_STRICT as of PHP 6.0.0)
  360. ; E_ERROR - fatal run-time errors
  361. ; E_RECOVERABLE_ERROR - almost fatal run-time errors
  362. ; E_WARNING - run-time warnings (non-fatal errors)
  363. ; E_PARSE - compile-time parse errors
  364. ; E_NOTICE - run-time notices (these are warnings which often result
  365. ; from a bug in your code, but it's possible that it was
  366. ; intentional (e.g., using an uninitialized variable and
  367. ; relying on the fact it's automatically initialized to an
  368. ; empty string)
  369. ; E_STRICT - run-time notices, enable to have PHP suggest changes
  370. ; to your code which will ensure the best interoperability
  371. ; and forward compatibility of your code
  372. ; E_CORE_ERROR - fatal errors that occur during PHP's initial startup
  373. ; E_CORE_WARNING - warnings (non-fatal errors) that occur during PHP's
  374. ; initial startup
  375. ; E_COMPILE_ERROR - fatal compile-time errors
  376. ; E_COMPILE_WARNING - compile-time warnings (non-fatal errors)
  377. ; E_USER_ERROR - user-generated error message
  378. ; E_USER_WARNING - user-generated warning message
  379. ; E_USER_NOTICE - user-generated notice message
  380. ; E_DEPRECATED - warn about code that will not work in future versions
  381. ; of PHP
  382. ; E_USER_DEPRECATED - user-generated deprecation warnings
  383. ;
  384. ; Common Values:
  385. ; E_ALL (Show all errors, warnings and notices including coding standards.)
  386. ; E_ALL & ~E_NOTICE (Show all errors, except for notices)
  387. ; E_ALL & ~E_NOTICE & ~E_STRICT (Show all errors, except for notices and coding standards warnings.)
  388. ; E_COMPILE_ERROR|E_RECOVERABLE_ERROR|E_ERROR|E_CORE_ERROR (Show only errors)
  389. ; Default Value: E_ALL & ~E_NOTICE & ~E_STRICT & ~E_DEPRECATED
  390. ; Development Value: E_ALL
  391. ; Production Value: E_ALL & ~E_DEPRECATED & ~E_STRICT
  392. ; http://php.net/error-reporting
  393. error_reporting = E_ALL
  394. ; This directive controls whether or not and where PHP will output errors,
  395. ; notices and warnings too. Error output is very useful during development, but
  396. ; it could be very dangerous in production environments. Depending on the code
  397. ; which is triggering the error, sensitive information could potentially leak
  398. ; out of your application such as database usernames and passwords or worse.
  399. ; It's recommended that errors be logged on production servers rather than
  400. ; having the errors sent to STDOUT.
  401. ; Possible Values:
  402. ; Off = Do not display any errors
  403. ; stderr = Display errors to STDERR (affects only CGI/CLI binaries!)
  404. ; On or stdout = Display errors to STDOUT
  405. ; Default Value: On
  406. ; Development Value: On
  407. ; Production Value: Off
  408. ; http://php.net/display-errors
  409. display_errors = On
  410. ; The display of errors which occur during PHP's startup sequence are handled
  411. ; separately from display_errors. PHP's default behavior is to suppress those
  412. ; errors from clients. Turning the display of startup errors on can be useful in
  413. ; debugging configuration problems. But, it's strongly recommended that you
  414. ; leave this setting off on production servers.
  415. ; Default Value: Off
  416. ; Development Value: On
  417. ; Production Value: Off
  418. ; http://php.net/display-startup-errors
  419. display_startup_errors = On
  420. ; Besides displaying errors, PHP can also log errors to locations such as a
  421. ; server-specific log, STDERR, or a location specified by the error_log
  422. ; directive found below. While errors should not be displayed on productions
  423. ; servers they should still be monitored and logging is a great way to do that.
  424. ; Default Value: Off
  425. ; Development Value: On
  426. ; Production Value: On
  427. ; http://php.net/log-errors
  428. log_errors = On
  429. ; Set maximum length of log_errors. In error_log information about the source is
  430. ; added. The default is 1024 and 0 allows to not apply any maximum length at all.
  431. ; http://php.net/log-errors-max-len
  432. log_errors_max_len = 1024
  433. ; Do not log repeated messages. Repeated errors must occur in same file on same
  434. ; line unless ignore_repeated_source is set true.
  435. ; http://php.net/ignore-repeated-errors
  436. ignore_repeated_errors = Off
  437. ; Ignore source of message when ignoring repeated messages. When this setting
  438. ; is On you will not log errors with repeated messages from different files or
  439. ; source lines.
  440. ; http://php.net/ignore-repeated-source
  441. ignore_repeated_source = Off
  442. ; If this parameter is set to Off, then memory leaks will not be shown (on
  443. ; stdout or in the log). This has only effect in a debug compile, and if
  444. ; error reporting includes E_WARNING in the allowed list
  445. ; http://php.net/report-memleaks
  446. report_memleaks = On
  447. ; This setting is on by default.
  448. ;report_zend_debug = 0
  449. ; Store the last error/warning message in $php_errormsg (boolean). Setting this value
  450. ; to On can assist in debugging and is appropriate for development servers. It should
  451. ; however be disabled on production servers.
  452. ; Default Value: Off
  453. ; Development Value: On
  454. ; Production Value: Off
  455. ; http://php.net/track-errors
  456. track_errors = On
  457. ; Turn off normal error reporting and emit XML-RPC error XML
  458. ; http://php.net/xmlrpc-errors
  459. ;xmlrpc_errors = 0
  460. ; An XML-RPC faultCode
  461. ;xmlrpc_error_number = 0
  462. ; When PHP displays or logs an error, it has the capability of formatting the
  463. ; error message as HTML for easier reading. This directive controls whether
  464. ; the error message is formatted as HTML or not.
  465. ; Note: This directive is hardcoded to Off for the CLI SAPI
  466. ; Default Value: On
  467. ; Development Value: On
  468. ; Production value: On
  469. ; http://php.net/html-errors
  470. html_errors = On
  471. ; If html_errors is set to On *and* docref_root is not empty, then PHP
  472. ; produces clickable error messages that direct to a page describing the error
  473. ; or function causing the error in detail.
  474. ; You can download a copy of the PHP manual from http://php.net/docs
  475. ; and change docref_root to the base URL of your local copy including the
  476. ; leading '/'. You must also specify the file extension being used including
  477. ; the dot. PHP's default behavior is to leave these settings empty, in which
  478. ; case no links to documentation are generated.
  479. ; Note: Never use this feature for production boxes.
  480. ; http://php.net/docref-root
  481. ; Examples
  482. ;docref_root = "/phpmanual/"
  483. ; http://php.net/docref-ext
  484. ;docref_ext = .html
  485. ; String to output before an error message. PHP's default behavior is to leave
  486. ; this setting blank.
  487. ; http://php.net/error-prepend-string
  488. ; Example:
  489. ;error_prepend_string = "<span style='color: #ff0000'>"
  490. ; String to output after an error message. PHP's default behavior is to leave
  491. ; this setting blank.
  492. ; http://php.net/error-append-string
  493. ; Example:
  494. ;error_append_string = "</span>"
  495. ; Log errors to specified file. PHP's default behavior is to leave this value
  496. ; empty.
  497. ; http://php.net/error-log
  498. ; Example:
  499. ;error_log = php_errors.log
  500. ; Log errors to syslog (Event Log on NT, not valid in Windows 95).
  501. ;error_log = syslog
  502. ;windows.show_crt_warning
  503. ; Default value: 0
  504. ; Development value: 0
  505. ; Production value: 0
  506. ;;;;;;;;;;;;;;;;;
  507. ; Data Handling ;
  508. ;;;;;;;;;;;;;;;;;
  509. ; The separator used in PHP generated URLs to separate arguments.
  510. ; PHP's default setting is "&".
  511. ; http://php.net/arg-separator.output
  512. ; Example:
  513. ;arg_separator.output = "&amp;"
  514. ; List of separator(s) used by PHP to parse input URLs into variables.
  515. ; PHP's default setting is "&".
  516. ; NOTE: Every character in this directive is considered as separator!
  517. ; http://php.net/arg-separator.input
  518. ; Example:
  519. ;arg_separator.input = ";&"
  520. ; This directive determines which super global arrays are registered when PHP
  521. ; starts up. G,P,C,E & S are abbreviations for the following respective super
  522. ; globals: GET, POST, COOKIE, ENV and SERVER. There is a performance penalty
  523. ; paid for the registration of these arrays and because ENV is not as commonly
  524. ; used as the others, ENV is not recommended on productions servers. You
  525. ; can still get access to the environment variables through getenv() should you
  526. ; need to.
  527. ; Default Value: "EGPCS"
  528. ; Development Value: "GPCS"
  529. ; Production Value: "GPCS";
  530. ; http://php.net/variables-order
  531. variables_order = "GPCS"
  532. ; This directive determines which super global data (G,P,C,E & S) should
  533. ; be registered into the super global array REQUEST. If so, it also determines
  534. ; the order in which that data is registered. The values for this directive are
  535. ; specified in the same manner as the variables_order directive, EXCEPT one.
  536. ; Leaving this value empty will cause PHP to use the value set in the
  537. ; variables_order directive. It does not mean it will leave the super globals
  538. ; array REQUEST empty.
  539. ; Default Value: None
  540. ; Development Value: "GP"
  541. ; Production Value: "GP"
  542. ; http://php.net/request-order
  543. request_order = "GP"
  544. ; This directive determines whether PHP registers $argv & $argc each time it
  545. ; runs. $argv contains an array of all the arguments passed to PHP when a script
  546. ; is invoked. $argc contains an integer representing the number of arguments
  547. ; that were passed when the script was invoked. These arrays are extremely
  548. ; useful when running scripts from the command line. When this directive is
  549. ; enabled, registering these variables consumes CPU cycles and memory each time
  550. ; a script is executed. For performance reasons, this feature should be disabled
  551. ; on production servers.
  552. ; Note: This directive is hardcoded to On for the CLI SAPI
  553. ; Default Value: On
  554. ; Development Value: Off
  555. ; Production Value: Off
  556. ; http://php.net/register-argc-argv
  557. register_argc_argv = Off
  558. ; When enabled, the ENV, REQUEST and SERVER variables are created when they're
  559. ; first used (Just In Time) instead of when the script starts. If these
  560. ; variables are not used within a script, having this directive on will result
  561. ; in a performance gain. The PHP directive register_argc_argv must be disabled
  562. ; for this directive to have any affect.
  563. ; http://php.net/auto-globals-jit
  564. auto_globals_jit = On
  565. ; Whether PHP will read the POST data.
  566. ; This option is enabled by default.
  567. ; Most likely, you won't want to disable this option globally. It causes $_POST
  568. ; and $_FILES to always be empty; the only way you will be able to read the
  569. ; POST data will be through the php://input stream wrapper. This can be useful
  570. ; to proxy requests or to process the POST data in a memory efficient fashion.
  571. ; http://php.net/enable-post-data-reading
  572. ;enable_post_data_reading = Off
  573. ; Maximum size of POST data that PHP will accept.
  574. ; Its value may be 0 to disable the limit. It is ignored if POST data reading
  575. ; is disabled through enable_post_data_reading.
  576. ; http://php.net/post-max-size
  577. post_max_size = 8M
  578. ; Automatically add files before PHP document.
  579. ; http://php.net/auto-prepend-file
  580. auto_prepend_file =
  581. ; Automatically add files after PHP document.
  582. ; http://php.net/auto-append-file
  583. auto_append_file =
  584. ; By default, PHP will output a character encoding using
  585. ; the Content-type: header. To disable sending of the charset, simply
  586. ; set it to be empty.
  587. ;
  588. ; PHP's built-in default is text/html
  589. ; http://php.net/default-mimetype
  590. default_mimetype = "text/html"
  591. ; PHP's default character set is set to empty.
  592. ; http://php.net/default-charset
  593. ;default_charset = "UTF-8"
  594. ; Always populate the $HTTP_RAW_POST_DATA variable. PHP's default behavior is
  595. ; to disable this feature. If post reading is disabled through
  596. ; enable_post_data_reading, $HTTP_RAW_POST_DATA is *NOT* populated.
  597. ; http://php.net/always-populate-raw-post-data
  598. ;always_populate_raw_post_data = On
  599. ;;;;;;;;;;;;;;;;;;;;;;;;;
  600. ; Paths and Directories ;
  601. ;;;;;;;;;;;;;;;;;;;;;;;;;
  602. ; UNIX: "/path1:/path2"
  603. ;include_path = ".:/php/includes"
  604. ;
  605. ; Windows: "\path1;\path2"
  606. ;include_path = ".;c:\php\includes"
  607. ;
  608. ; PHP's default setting for include_path is ".;/path/to/php/pear"
  609. ; http://php.net/include-path
  610. ; The root of the PHP pages, used only if nonempty.
  611. ; if PHP was not compiled with FORCE_REDIRECT, you SHOULD set doc_root
  612. ; if you are running php as a CGI under any web server (other than IIS)
  613. ; see documentation for security issues. The alternate is to use the
  614. ; cgi.force_redirect configuration below
  615. ; http://php.net/doc-root
  616. doc_root =
  617. ; The directory under which PHP opens the script using /~username used only
  618. ; if nonempty.
  619. ; http://php.net/user-dir
  620. user_dir =
  621. ; Directory in which the loadable extensions (modules) reside.
  622. ; http://php.net/extension-dir
  623. ; extension_dir = "./"
  624. ; On windows:
  625. ; extension_dir = "ext"
  626. ; Whether or not to enable the dl() function. The dl() function does NOT work
  627. ; properly in multithreaded servers, such as IIS or Zeus, and is automatically
  628. ; disabled on them.
  629. ; http://php.net/enable-dl
  630. enable_dl = Off
  631. ; cgi.force_redirect is necessary to provide security running PHP as a CGI under
  632. ; most web servers. Left undefined, PHP turns this on by default. You can
  633. ; turn it off here AT YOUR OWN RISK
  634. ; **You CAN safely turn this off for IIS, in fact, you MUST.**
  635. ; http://php.net/cgi.force-redirect
  636. ;cgi.force_redirect = 1
  637. ; if cgi.nph is enabled it will force cgi to always sent Status: 200 with
  638. ; every request. PHP's default behavior is to disable this feature.
  639. ;cgi.nph = 1
  640. ; if cgi.force_redirect is turned on, and you are not running under Apache or Netscape
  641. ; (iPlanet) web servers, you MAY need to set an environment variable name that PHP
  642. ; will look for to know it is OK to continue execution. Setting this variable MAY
  643. ; cause security issues, KNOW WHAT YOU ARE DOING FIRST.
  644. ; http://php.net/cgi.redirect-status-env
  645. ;cgi.redirect_status_env = ;
  646. ; cgi.fix_pathinfo provides *real* PATH_INFO/PATH_TRANSLATED support for CGI. PHP's
  647. ; previous behaviour was to set PATH_TRANSLATED to SCRIPT_FILENAME, and to not grok
  648. ; what PATH_INFO is. For more information on PATH_INFO, see the cgi specs. Setting
  649. ; this to 1 will cause PHP CGI to fix its paths to conform to the spec. A setting
  650. ; of zero causes PHP to behave as before. Default is 1. You should fix your scripts
  651. ; to use SCRIPT_FILENAME rather than PATH_TRANSLATED.
  652. ; http://php.net/cgi.fix-pathinfo
  653. ;cgi.fix_pathinfo=1
  654. ; FastCGI under IIS (on WINNT based OS) supports the ability to impersonate
  655. ; security tokens of the calling client. This allows IIS to define the
  656. ; security context that the request runs under. mod_fastcgi under Apache
  657. ; does not currently support this feature (03/17/2002)
  658. ; Set to 1 if running under IIS. Default is zero.
  659. ; http://php.net/fastcgi.impersonate
  660. ;fastcgi.impersonate = 1;
  661. ; Disable logging through FastCGI connection. PHP's default behavior is to enable
  662. ; this feature.
  663. ;fastcgi.logging = 0
  664. ; cgi.rfc2616_headers configuration option tells PHP what type of headers to
  665. ; use when sending HTTP response code. If it's set 0 PHP sends Status: header that
  666. ; is supported by Apache. When this option is set to 1 PHP will send
  667. ; RFC2616 compliant header.
  668. ; Default is zero.
  669. ; http://php.net/cgi.rfc2616-headers
  670. ;cgi.rfc2616_headers = 0
  671. ;;;;;;;;;;;;;;;;
  672. ; File Uploads ;
  673. ;;;;;;;;;;;;;;;;
  674. ; Whether to allow HTTP file uploads.
  675. ; http://php.net/file-uploads
  676. file_uploads = On
  677. ; Temporary directory for HTTP uploaded files (will use system default if not
  678. ; specified).
  679. ; http://php.net/upload-tmp-dir
  680. ;upload_tmp_dir =
  681. ; Maximum allowed size for uploaded files.
  682. ; http://php.net/upload-max-filesize
  683. upload_max_filesize = 2M
  684. ; Maximum number of files that can be uploaded via a single request
  685. max_file_uploads = 20
  686. ;;;;;;;;;;;;;;;;;;
  687. ; Fopen wrappers ;
  688. ;;;;;;;;;;;;;;;;;;
  689. ; Whether to allow the treatment of URLs (like http:// or ftp://) as files.
  690. ; http://php.net/allow-url-fopen
  691. allow_url_fopen = On
  692. ; Whether to allow include/require to open URLs (like http:// or ftp://) as files.
  693. ; http://php.net/allow-url-include
  694. allow_url_include = Off
  695. ; Define the anonymous ftp password (your email address). PHP's default setting
  696. ; for this is empty.
  697. ; http://php.net/from
  698. ;from="john@doe.com"
  699. ; Define the User-Agent string. PHP's default setting for this is empty.
  700. ; http://php.net/user-agent
  701. ;user_agent="PHP"
  702. ; Default timeout for socket based streams (seconds)
  703. ; http://php.net/default-socket-timeout
  704. default_socket_timeout = 60
  705. ; If your scripts have to deal with files from Macintosh systems,
  706. ; or you are running on a Mac and need to deal with files from
  707. ; unix or win32 systems, setting this flag will cause PHP to
  708. ; automatically detect the EOL character in those files so that
  709. ; fgets() and file() will work regardless of the source of the file.
  710. ; http://php.net/auto-detect-line-endings
  711. ;auto_detect_line_endings = Off
  712. ;;;;;;;;;;;;;;;;;;;;;;
  713. ; Dynamic Extensions ;
  714. ;;;;;;;;;;;;;;;;;;;;;;
  715. ; If you wish to have an extension loaded automatically, use the following
  716. ; syntax:
  717. ;
  718. ; extension=modulename.extension
  719. ;
  720. ; For example, on Windows:
  721. ;
  722. ; extension=msql.dll
  723. ;
  724. ; ... or under UNIX:
  725. ;
  726. ; extension=msql.so
  727. ;
  728. ; ... or with a path:
  729. ;
  730. ; extension=/path/to/extension/msql.so
  731. ;
  732. ; If you only provide the name of the extension, PHP will look for it in its
  733. ; default extension directory.
  734. ;
  735. ; Windows Extensions
  736. ; Note that ODBC support is built in, so no dll is needed for it.
  737. ; Note that many DLL files are located in the extensions/ (PHP 4) ext/ (PHP 5)
  738. ; extension folders as well as the separate PECL DLL download (PHP 5).
  739. ; Be sure to appropriately set the extension_dir directive.
  740. ;
  741. ;extension=php_bz2.dll
  742. ;extension=php_curl.dll
  743. ;extension=php_fileinfo.dll
  744. ;extension=php_gd2.dll
  745. ;extension=php_gettext.dll
  746. ;extension=php_gmp.dll
  747. ;extension=php_intl.dll
  748. ;extension=php_imap.dll
  749. ;extension=php_interbase.dll
  750. ;extension=php_ldap.dll
  751. ;extension=php_mbstring.dll
  752. ;extension=php_exif.dll ; Must be after mbstring as it depends on it
  753. ;extension=php_mysql.dll
  754. ;extension=php_mysqli.dll
  755. ;extension=php_oci8.dll ; Use with Oracle 10gR2 Instant Client
  756. ;extension=php_oci8_11g.dll ; Use with Oracle 11gR2 Instant Client
  757. ;extension=php_openssl.dll
  758. ;extension=php_pdo_firebird.dll
  759. ;extension=php_pdo_mysql.dll
  760. ;extension=php_pdo_oci.dll
  761. ;extension=php_pdo_odbc.dll
  762. ;extension=php_pdo_pgsql.dll
  763. ;extension=php_pdo_sqlite.dll
  764. ;extension=php_pgsql.dll
  765. ;extension=php_pspell.dll
  766. ;extension=php_shmop.dll
  767. ; The MIBS data available in the PHP distribution must be installed.
  768. ; See http://www.php.net/manual/en/snmp.installation.php
  769. ;extension=php_snmp.dll
  770. ;extension=php_soap.dll
  771. ;extension=php_sockets.dll
  772. ;extension=php_sqlite.dll
  773. ;extension=php_sqlite3.dll
  774. ;extension=php_sybase_ct.dll
  775. ;extension=php_tidy.dll
  776. ;extension=php_xmlrpc.dll
  777. ;extension=php_xsl.dll
  778. ;extension=php_zip.dll
  779. ;;;;;;;;;;;;;;;;;;;
  780. ; Module Settings ;
  781. ;;;;;;;;;;;;;;;;;;;
  782. [CLI Server]
  783. ; Whether the CLI web server uses ANSI color coding in its terminal output.
  784. cli_server.color = On
  785. [Date]
  786. ; Defines the default timezone used by the date functions
  787. ; http://php.net/date.timezone
  788. ;date.timezone =
  789. ; http://php.net/date.default-latitude
  790. ;date.default_latitude = 31.7667
  791. ; http://php.net/date.default-longitude
  792. ;date.default_longitude = 35.2333
  793. ; http://php.net/date.sunrise-zenith
  794. ;date.sunrise_zenith = 90.583333
  795. ; http://php.net/date.sunset-zenith
  796. ;date.sunset_zenith = 90.583333
  797. [filter]
  798. ; http://php.net/filter.default
  799. ;filter.default = unsafe_raw
  800. ; http://php.net/filter.default-flags
  801. ;filter.default_flags =
  802. [iconv]
  803. ;iconv.input_encoding = ISO-8859-1
  804. ;iconv.internal_encoding = ISO-8859-1
  805. ;iconv.output_encoding = ISO-8859-1
  806. [intl]
  807. ;intl.default_locale =
  808. ; This directive allows you to produce PHP errors when some error
  809. ; happens within intl functions. The value is the level of the error produced.
  810. ; Default is 0, which does not produce any errors.
  811. ;intl.error_level = E_WARNING
  812. [sqlite]
  813. ; http://php.net/sqlite.assoc-case
  814. ;sqlite.assoc_case = 0
  815. [sqlite3]
  816. ;sqlite3.extension_dir =
  817. [Pcre]
  818. ;PCRE library backtracking limit.
  819. ; http://php.net/pcre.backtrack-limit
  820. ;pcre.backtrack_limit=100000
  821. ;PCRE library recursion limit.
  822. ;Please note that if you set this value to a high number you may consume all
  823. ;the available process stack and eventually crash PHP (due to reaching the
  824. ;stack size limit imposed by the Operating System).
  825. ; http://php.net/pcre.recursion-limit
  826. ;pcre.recursion_limit=100000
  827. [Pdo]
  828. ; Whether to pool ODBC connections. Can be one of "strict", "relaxed" or "off"
  829. ; http://php.net/pdo-odbc.connection-pooling
  830. ;pdo_odbc.connection_pooling=strict
  831. ;pdo_odbc.db2_instance_name
  832. [Pdo_mysql]
  833. ; If mysqlnd is used: Number of cache slots for the internal result set cache
  834. ; http://php.net/pdo_mysql.cache_size
  835. pdo_mysql.cache_size = 2000
  836. ; Default socket name for local MySQL connects. If empty, uses the built-in
  837. ; MySQL defaults.
  838. ; http://php.net/pdo_mysql.default-socket
  839. pdo_mysql.default_socket=
  840. [Phar]
  841. ; http://php.net/phar.readonly
  842. ;phar.readonly = On
  843. ; http://php.net/phar.require-hash
  844. ;phar.require_hash = On
  845. ;phar.cache_list =
  846. [mail function]
  847. ; For Win32 only.
  848. ; http://php.net/smtp
  849. SMTP = localhost
  850. ; http://php.net/smtp-port
  851. smtp_port = 25
  852. ; For Win32 only.
  853. ; http://php.net/sendmail-from
  854. ;sendmail_from = me@example.com
  855. ; For Unix only. You may supply arguments as well (default: "sendmail -t -i").
  856. ; http://php.net/sendmail-path
  857. ;sendmail_path =
  858. ; Force the addition of the specified parameters to be passed as extra parameters
  859. ; to the sendmail binary. These parameters will always replace the value of
  860. ; the 5th parameter to mail(), even in safe mode.
  861. ;mail.force_extra_parameters =
  862. ; Add X-PHP-Originating-Script: that will include uid of the script followed by the filename
  863. mail.add_x_header = On
  864. ; The path to a log file that will log all mail() calls. Log entries include
  865. ; the full path of the script, line number, To address and headers.
  866. ;mail.log =
  867. [SQL]
  868. ; http://php.net/sql.safe-mode
  869. sql.safe_mode = Off
  870. [ODBC]
  871. ; http://php.net/odbc.default-db
  872. ;odbc.default_db = Not yet implemented
  873. ; http://php.net/odbc.default-user
  874. ;odbc.default_user = Not yet implemented
  875. ; http://php.net/odbc.default-pw
  876. ;odbc.default_pw = Not yet implemented
  877. ; Controls the ODBC cursor model.
  878. ; Default: SQL_CURSOR_STATIC (default).
  879. ;odbc.default_cursortype
  880. ; Allow or prevent persistent links.
  881. ; http://php.net/odbc.allow-persistent
  882. odbc.allow_persistent = On
  883. ; Check that a connection is still valid before reuse.
  884. ; http://php.net/odbc.check-persistent
  885. odbc.check_persistent = On
  886. ; Maximum number of persistent links. -1 means no limit.
  887. ; http://php.net/odbc.max-persistent
  888. odbc.max_persistent = -1
  889. ; Maximum number of links (persistent + non-persistent). -1 means no limit.
  890. ; http://php.net/odbc.max-links
  891. odbc.max_links = -1
  892. ; Handling of LONG fields. Returns number of bytes to variables. 0 means
  893. ; passthru.
  894. ; http://php.net/odbc.defaultlrl
  895. odbc.defaultlrl = 4096
  896. ; Handling of binary data. 0 means passthru, 1 return as is, 2 convert to char.
  897. ; See the documentation on odbc_binmode and odbc_longreadlen for an explanation
  898. ; of odbc.defaultlrl and odbc.defaultbinmode
  899. ; http://php.net/odbc.defaultbinmode
  900. odbc.defaultbinmode = 1
  901. ;birdstep.max_links = -1
  902. [Interbase]
  903. ; Allow or prevent persistent links.
  904. ibase.allow_persistent = 1
  905. ; Maximum number of persistent links. -1 means no limit.
  906. ibase.max_persistent = -1
  907. ; Maximum number of links (persistent + non-persistent). -1 means no limit.
  908. ibase.max_links = -1
  909. ; Default database name for ibase_connect().
  910. ;ibase.default_db =
  911. ; Default username for ibase_connect().
  912. ;ibase.default_user =
  913. ; Default password for ibase_connect().
  914. ;ibase.default_password =
  915. ; Default charset for ibase_connect().
  916. ;ibase.default_charset =
  917. ; Default timestamp format.
  918. ibase.timestampformat = "%Y-%m-%d %H:%M:%S"
  919. ; Default date format.
  920. ibase.dateformat = "%Y-%m-%d"
  921. ; Default time format.
  922. ibase.timeformat = "%H:%M:%S"
  923. [MySQL]
  924. ; Allow accessing, from PHP's perspective, local files with LOAD DATA statements
  925. ; http://php.net/mysql.allow_local_infile
  926. mysql.allow_local_infile = On
  927. ; Allow or prevent persistent links.
  928. ; http://php.net/mysql.allow-persistent
  929. mysql.allow_persistent = On
  930. ; If mysqlnd is used: Number of cache slots for the internal result set cache
  931. ; http://php.net/mysql.cache_size
  932. mysql.cache_size = 2000
  933. ; Maximum number of persistent links. -1 means no limit.
  934. ; http://php.net/mysql.max-persistent
  935. mysql.max_persistent = -1
  936. ; Maximum number of links (persistent + non-persistent). -1 means no limit.
  937. ; http://php.net/mysql.max-links
  938. mysql.max_links = -1
  939. ; Default port number for mysql_connect(). If unset, mysql_connect() will use
  940. ; the $MYSQL_TCP_PORT or the mysql-tcp entry in /etc/services or the
  941. ; compile-time value defined MYSQL_PORT (in that order). Win32 will only look
  942. ; at MYSQL_PORT.
  943. ; http://php.net/mysql.default-port
  944. mysql.default_port =
  945. ; Default socket name for local MySQL connects. If empty, uses the built-in
  946. ; MySQL defaults.
  947. ; http://php.net/mysql.default-socket
  948. mysql.default_socket =
  949. ; Default host for mysql_connect() (doesn't apply in safe mode).
  950. ; http://php.net/mysql.default-host
  951. mysql.default_host =
  952. ; Default user for mysql_connect() (doesn't apply in safe mode).
  953. ; http://php.net/mysql.default-user
  954. mysql.default_user =
  955. ; Default password for mysql_connect() (doesn't apply in safe mode).
  956. ; Note that this is generally a *bad* idea to store passwords in this file.
  957. ; *Any* user with PHP access can run 'echo get_cfg_var("mysql.default_password")
  958. ; and reveal this password! And of course, any users with read access to this
  959. ; file will be able to reveal the password as well.
  960. ; http://php.net/mysql.default-password
  961. mysql.default_password =
  962. ; Maximum time (in seconds) for connect timeout. -1 means no limit
  963. ; http://php.net/mysql.connect-timeout
  964. mysql.connect_timeout = 60
  965. ; Trace mode. When trace_mode is active (=On), warnings for table/index scans and
  966. ; SQL-Errors will be displayed.
  967. ; http://php.net/mysql.trace-mode
  968. mysql.trace_mode = Off
  969. [MySQLi]
  970. ; Maximum number of persistent links. -1 means no limit.
  971. ; http://php.net/mysqli.max-persistent
  972. mysqli.max_persistent = -1
  973. ; Allow accessing, from PHP's perspective, local files with LOAD DATA statements
  974. ; http://php.net/mysqli.allow_local_infile
  975. ;mysqli.allow_local_infile = On
  976. ; Allow or prevent persistent links.
  977. ; http://php.net/mysqli.allow-persistent
  978. mysqli.allow_persistent = On
  979. ; Maximum number of links. -1 means no limit.
  980. ; http://php.net/mysqli.max-links
  981. mysqli.max_links = -1
  982. ; If mysqlnd is used: Number of cache slots for the internal result set cache
  983. ; http://php.net/mysqli.cache_size
  984. mysqli.cache_size = 2000
  985. ; Default port number for mysqli_connect(). If unset, mysqli_connect() will use
  986. ; the $MYSQL_TCP_PORT or the mysql-tcp entry in /etc/services or the
  987. ; compile-time value defined MYSQL_PORT (in that order). Win32 will only look
  988. ; at MYSQL_PORT.
  989. ; http://php.net/mysqli.default-port
  990. mysqli.default_port = 3306
  991. ; Default socket name for local MySQL connects. If empty, uses the built-in
  992. ; MySQL defaults.
  993. ; http://php.net/mysqli.default-socket
  994. mysqli.default_socket =
  995. ; Default host for mysql_connect() (doesn't apply in safe mode).
  996. ; http://php.net/mysqli.default-host
  997. mysqli.default_host =
  998. ; Default user for mysql_connect() (doesn't apply in safe mode).
  999. ; http://php.net/mysqli.default-user
  1000. mysqli.default_user =
  1001. ; Default password for mysqli_connect() (doesn't apply in safe mode).
  1002. ; Note that this is generally a *bad* idea to store passwords in this file.
  1003. ; *Any* user with PHP access can run 'echo get_cfg_var("mysqli.default_pw")
  1004. ; and reveal this password! And of course, any users with read access to this
  1005. ; file will be able to reveal the password as well.
  1006. ; http://php.net/mysqli.default-pw
  1007. mysqli.default_pw =
  1008. ; Allow or prevent reconnect
  1009. mysqli.reconnect = Off
  1010. [mysqlnd]
  1011. ; Enable / Disable collection of general statistics by mysqlnd which can be
  1012. ; used to tune and monitor MySQL operations.
  1013. ; http://php.net/mysqlnd.collect_statistics
  1014. mysqlnd.collect_statistics = On
  1015. ; Enable / Disable collection of memory usage statistics by mysqlnd which can be
  1016. ; used to tune and monitor MySQL operations.
  1017. ; http://php.net/mysqlnd.collect_memory_statistics
  1018. mysqlnd.collect_memory_statistics = On
  1019. ; Size of a pre-allocated buffer used when sending commands to MySQL in bytes.
  1020. ; http://php.net/mysqlnd.net_cmd_buffer_size
  1021. ;mysqlnd.net_cmd_buffer_size = 2048
  1022. ; Size of a pre-allocated buffer used for reading data sent by the server in
  1023. ; bytes.
  1024. ; http://php.net/mysqlnd.net_read_buffer_size
  1025. ;mysqlnd.net_read_buffer_size = 32768
  1026. [OCI8]
  1027. ; Connection: Enables privileged connections using external
  1028. ; credentials (OCI_SYSOPER, OCI_SYSDBA)
  1029. ; http://php.net/oci8.privileged-connect
  1030. ;oci8.privileged_connect = Off
  1031. ; Connection: The maximum number of persistent OCI8 connections per
  1032. ; process. Using -1 means no limit.
  1033. ; http://php.net/oci8.max-persistent
  1034. ;oci8.max_persistent = -1
  1035. ; Connection: The maximum number of seconds a process is allowed to
  1036. ; maintain an idle persistent connection. Using -1 means idle
  1037. ; persistent connections will be maintained forever.
  1038. ; http://php.net/oci8.persistent-timeout
  1039. ;oci8.persistent_timeout = -1
  1040. ; Connection: The number of seconds that must pass before issuing a
  1041. ; ping during oci_pconnect() to check the connection validity. When
  1042. ; set to 0, each oci_pconnect() will cause a ping. Using -1 disables
  1043. ; pings completely.
  1044. ; http://php.net/oci8.ping-interval
  1045. ;oci8.ping_interval = 60
  1046. ; Connection: Set this to a user chosen connection class to be used
  1047. ; for all pooled server requests with Oracle 11g Database Resident
  1048. ; Connection Pooling (DRCP). To use DRCP, this value should be set to
  1049. ; the same string for all web servers running the same application,
  1050. ; the database pool must be configured, and the connection string must
  1051. ; specify to use a pooled server.
  1052. ;oci8.connection_class =
  1053. ; High Availability: Using On lets PHP receive Fast Application
  1054. ; Notification (FAN) events generated when a database node fails. The
  1055. ; database must also be configured to post FAN events.
  1056. ;oci8.events = Off
  1057. ; Tuning: This option enables statement caching, and specifies how
  1058. ; many statements to cache. Using 0 disables statement caching.
  1059. ; http://php.net/oci8.statement-cache-size
  1060. ;oci8.statement_cache_size = 20
  1061. ; Tuning: Enables statement prefetching and sets the default number of
  1062. ; rows that will be fetched automatically after statement execution.
  1063. ; http://php.net/oci8.default-prefetch
  1064. ;oci8.default_prefetch = 100
  1065. ; Compatibility. Using On means oci_close() will not close
  1066. ; oci_connect() and oci_new_connect() connections.
  1067. ; http://php.net/oci8.old-oci-close-semantics
  1068. ;oci8.old_oci_close_semantics = Off
  1069. [PostgreSQL]
  1070. ; Allow or prevent persistent links.
  1071. ; http://php.net/pgsql.allow-persistent
  1072. pgsql.allow_persistent = On
  1073. ; Detect broken persistent links always with pg_pconnect().
  1074. ; Auto reset feature requires a little overheads.
  1075. ; http://php.net/pgsql.auto-reset-persistent
  1076. pgsql.auto_reset_persistent = Off
  1077. ; Maximum number of persistent links. -1 means no limit.
  1078. ; http://php.net/pgsql.max-persistent
  1079. pgsql.max_persistent = -1
  1080. ; Maximum number of links (persistent+non persistent). -1 means no limit.
  1081. ; http://php.net/pgsql.max-links
  1082. pgsql.max_links = -1
  1083. ; Ignore PostgreSQL backends Notice message or not.
  1084. ; Notice message logging require a little overheads.
  1085. ; http://php.net/pgsql.ignore-notice
  1086. pgsql.ignore_notice = 0
  1087. ; Log PostgreSQL backends Notice message or not.
  1088. ; Unless pgsql.ignore_notice=0, module cannot log notice message.
  1089. ; http://php.net/pgsql.log-notice
  1090. pgsql.log_notice = 0
  1091. [Sybase-CT]
  1092. ; Allow or prevent persistent links.
  1093. ; http://php.net/sybct.allow-persistent
  1094. sybct.allow_persistent = On
  1095. ; Maximum number of persistent links. -1 means no limit.
  1096. ; http://php.net/sybct.max-persistent
  1097. sybct.max_persistent = -1
  1098. ; Maximum number of links (persistent + non-persistent). -1 means no limit.
  1099. ; http://php.net/sybct.max-links
  1100. sybct.max_links = -1
  1101. ; Minimum server message severity to display.
  1102. ; http://php.net/sybct.min-server-severity
  1103. sybct.min_server_severity = 10
  1104. ; Minimum client message severity to display.
  1105. ; http://php.net/sybct.min-client-severity
  1106. sybct.min_client_severity = 10
  1107. ; Set per-context timeout
  1108. ; http://php.net/sybct.timeout
  1109. ;sybct.timeout=
  1110. ;sybct.packet_size
  1111. ; The maximum time in seconds to wait for a connection attempt to succeed bef

Large files files are truncated, but you can click here to view the full file