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