PageRenderTime 69ms CodeModel.GetById 27ms RepoModel.GetById 0ms app.codeStats 1ms

/php5/cli/php.ini

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