PageRenderTime 54ms CodeModel.GetById 13ms RepoModel.GetById 0ms app.codeStats 0ms

/epia/etc/php/php.ini.pacnew

http://max-repo.googlecode.com/
Unknown | 1804 lines | 1497 code | 307 blank | 0 comment | 0 complexity | 629d367cb7672262bea4de34905f5f7b MD5 | raw file
Possible License(s): GPL-2.0

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

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