You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

1918 lines
68 KiB

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