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

php.ini