PageRenderTime 59ms CodeModel.GetById 18ms RepoModel.GetById 1ms app.codeStats 0ms

/proto/tmp-php.ini

http://php-scheme.googlecode.com/
INI | 1792 lines | 163 code | 305 blank | 1324 comment | 0 complexity | 386b30855ec15ecb002f168e24bf6262 MD5 | raw file
Possible License(s): BSD-3-Clause

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

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