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.

1659 lines
68 KiB

4 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://www.php.net/manual/en/configuration.file.php
  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://www.php.net/manual/en/ini.sections.php
  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. ; This 2 files are provided, by RPM, in /usr/share/doc/php-common-*/
  72. ; File used by RPM (the /etc/php.ini) is mainly the php.ini-production
  73. ;;;;;;;;;;;;;;;;;;;
  74. ; Quick Reference ;
  75. ;;;;;;;;;;;;;;;;;;;
  76. ; The following are all the settings which are different in either the production
  77. ; or development versions of the INIs with respect to PHP's default behavior.
  78. ; Please see the actual settings later in the document for more details as to why
  79. ; we recommend these changes in PHP's behavior.
  80. ; allow_call_time_pass_reference
  81. ; Default Value: On
  82. ; Development Value: Off
  83. ; Production Value: Off
  84. ; display_errors
  85. ; Default Value: On
  86. ; Development Value: On
  87. ; Production Value: Off
  88. ; display_startup_errors
  89. ; Default Value: Off
  90. ; Development Value: On
  91. ; Production Value: Off
  92. ; error_reporting
  93. ; Default Value: E_ALL & ~E_NOTICE
  94. ; Development Value: E_ALL | E_STRICT
  95. ; Production Value: E_ALL & ~E_DEPRECATED
  96. ; html_errors
  97. ; Default Value: On
  98. ; Development Value: On
  99. ; Production value: Off
  100. ; log_errors
  101. ; Default Value: Off
  102. ; Development Value: On
  103. ; Production Value: On
  104. ; magic_quotes_gpc
  105. ; Default Value: On
  106. ; Development Value: Off
  107. ; Production Value: Off
  108. ; max_input_time
  109. ; Default Value: -1 (Unlimited)
  110. ; Development Value: 60 (60 seconds)
  111. ; Production Value: 60 (60 seconds)
  112. ; output_buffering
  113. ; Default Value: Off
  114. ; Development Value: 4096
  115. ; Production Value: 4096
  116. ; register_argc_argv
  117. ; Default Value: On
  118. ; Development Value: Off
  119. ; Production Value: Off
  120. ; register_long_arrays
  121. ; Default Value: On
  122. ; Development Value: Off
  123. ; Production Value: Off
  124. ; request_order
  125. ; Default Value: None
  126. ; Development Value: "GP"
  127. ; Production Value: "GP"
  128. ; session.bug_compat_42
  129. ; Default Value: On
  130. ; Development Value: On
  131. ; Production Value: Off
  132. ; session.bug_compat_warn
  133. ; Default Value: On
  134. ; Development Value: On
  135. ; Production Value: Off
  136. ; session.gc_divisor
  137. ; Default Value: 100
  138. ; Development Value: 1000
  139. ; Production Value: 1000
  140. ; session.hash_bits_per_character
  141. ; Default Value: 4
  142. ; Development Value: 5
  143. ; Production Value: 5
  144. ; short_open_tag
  145. ; Default Value: On
  146. ; Development Value: Off
  147. ; Production Value: Off
  148. ; track_errors
  149. ; Default Value: Off
  150. ; Development Value: On
  151. ; Production Value: Off
  152. ; url_rewriter.tags
  153. ; Default Value: "a=href,area=href,frame=src,form=,fieldset="
  154. ; Development Value: "a=href,area=href,frame=src,input=src,form=fakeentry"
  155. ; Production Value: "a=href,area=href,frame=src,input=src,form=fakeentry"
  156. ; variables_order
  157. ; Default Value: "EGPCS"
  158. ; Development Value: "GPCS"
  159. ; Production Value: "GPCS"
  160. ;;;;;;;;;;;;;;;;;;;;
  161. ; php.ini Options ;
  162. ;;;;;;;;;;;;;;;;;;;;
  163. ; Name for user-defined php.ini (.htaccess) files. Default is ".user.ini"
  164. ;user_ini.filename = ".user.ini"
  165. ; To disable this feature set this option to empty value
  166. ;user_ini.filename =
  167. ; TTL for user-defined php.ini files (time-to-live) in seconds. Default is 300 seconds (5 minutes)
  168. ;user_ini.cache_ttl = 300
  169. ;;;;;;;;;;;;;;;;;;;;
  170. ; Language Options ;
  171. ;;;;;;;;;;;;;;;;;;;;
  172. ; Enable the PHP scripting language engine under Apache.
  173. ; http://www.php.net/manual/en/apache.configuration.php#ini.engine
  174. engine = On
  175. ; This directive determines whether or not PHP will recognize code between
  176. ; <? and ?> tags as PHP source which should be processed as such. It's been
  177. ; recommended for several years that you not use the short tag "short cut" and
  178. ; instead to use the full <?php and ?> tag combination. With the wide spread use
  179. ; of XML and use of these tags by other languages, the server can become easily
  180. ; confused and end up parsing the wrong code in the wrong context. But because
  181. ; this short cut has been a feature for such a long time, it's currently still
  182. ; supported for backwards compatibility, but we recommend you don't use them.
  183. ; Default Value: On
  184. ; Development Value: Off
  185. ; Production Value: Off
  186. ; http://www.php.net/manual/en/ini.core.php#ini.short-open-tag
  187. short_open_tag = Off
  188. ; Allow ASP-style <% %> tags.
  189. ; http://www.php.net/manual/en/ini.core.php#ini.asp-tags
  190. asp_tags = Off
  191. ; The number of significant digits displayed in floating point numbers.
  192. ; http://www.php.net/manual/en/ini.core.php#ini.precision
  193. precision = 14
  194. ; Enforce year 2000 compliance (will cause problems with non-compliant browsers)
  195. ; http://www.php.net/manual/en/ini.core.php#ini.y2k-compliance
  196. y2k_compliance = On
  197. ; Output buffering is a mechanism for controlling how much output data
  198. ; (excluding headers and cookies) PHP should keep internally before pushing that
  199. ; data to the client. If your application's output exceeds this setting, PHP
  200. ; will send that data in chunks of roughly the size you specify.
  201. ; Turning on this setting and managing its maximum buffer size can yield some
  202. ; interesting side-effects depending on your application and web server.
  203. ; You may be able to send headers and cookies after you've already sent output
  204. ; through print or echo. You also may see performance benefits if your server is
  205. ; emitting less packets due to buffered output versus PHP streaming the output
  206. ; as it gets it. On production servers, 4096 bytes is a good setting for performance
  207. ; reasons.
  208. ; Note: Output buffering can also be controlled via Output Buffering Control
  209. ; functions.
  210. ; Possible Values:
  211. ; On = Enabled and buffer is unlimited. (Use with caution)
  212. ; Off = Disabled
  213. ; Integer = Enables the buffer and sets its maximum size in bytes.
  214. ; Default Value: Off
  215. ; Development Value: 4096
  216. ; Production Value: 4096
  217. ; http://www.php.net/manual/en/outcontrol.configuration.php#ini.output-buffering
  218. output_buffering = 4096
  219. ; You can redirect all of the output of your scripts to a function. For
  220. ; example, if you set output_handler to "mb_output_handler", character
  221. ; encoding will be transparently converted to the specified encoding.
  222. ; Setting any output handler automatically turns on output buffering.
  223. ; Note: People who wrote portable scripts should not depend on this ini
  224. ; directive. Instead, explicitly set the output handler using ob_start().
  225. ; Using this ini directive may cause problems unless you know what script
  226. ; is doing.
  227. ; Note: You cannot use both "mb_output_handler" with "ob_iconv_handler"
  228. ; and you cannot use both "ob_gzhandler" and "zlib.output_compression".
  229. ; Note: output_handler must be empty if this is set 'On' !!!!
  230. ; Instead you must use zlib.output_handler.
  231. ; http://www.php.net/manual/en/outcontrol.configuration.php#ini.output-handler
  232. ;output_handler =
  233. ; Transparent output compression using the zlib library
  234. ; Valid values for this option are 'off', 'on', or a specific buffer size
  235. ; to be used for compression (default is 4KB)
  236. ; Note: Resulting chunk size may vary due to nature of compression. PHP
  237. ; outputs chunks that are few hundreds bytes each as a result of
  238. ; compression. If you prefer a larger chunk size for better
  239. ; performance, enable output_buffering in addition.
  240. ; Note: You need to use zlib.output_handler instead of the standard
  241. ; output_handler, or otherwise the output will be corrupted.
  242. ; http://www.php.net/manual/en/zlib.configuration.php#ini.zlib.output-compression
  243. zlib.output_compression = Off
  244. ; http://www.php.net/manual/en/zlib.configuration.php#ini.zlib.output-compression-level
  245. ;zlib.output_compression_level = -1
  246. ; You cannot specify additional output handlers if zlib.output_compression
  247. ; is activated here. This setting does the same as output_handler but in
  248. ; a different order.
  249. ; http://www.php.net/manual/en/zlib.configuration.php#ini.zlib.output-handler
  250. ;zlib.output_handler =
  251. ; Implicit flush tells PHP to tell the output layer to flush itself
  252. ; automatically after every output block. This is equivalent to calling the
  253. ; PHP function flush() after each and every call to print() or echo() and each
  254. ; and every HTML block. Turning this option on has serious performance
  255. ; implications and is generally recommended for debugging purposes only.
  256. ; http://www.php.net/manual/en/outcontrol.configuration.php#ini.implicit-flush
  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://www.php.net/manual/en/ini.core.php#ini.allow-call-time-pass-reference
  281. allow_call_time_pass_reference = Off
  282. ; Safe Mode
  283. ; http://www.php.net/manual/en/ini.sect.safe-mode.php#ini.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://www.php.net/manual/en/ini.sect.safe-mode.php#ini.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://www.php.net/manual/en/ini.sect.safe-mode.php#ini.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://www.php.net/manual/en/ini.sect.safe-mode.php#ini.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://www.php.net/manual/en/ini.sect.safe-mode.php#ini.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://www.php.net/manual/en/ini.sect.safe-mode.php#ini.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://www.php.net/manual/en/ini.sect.safe-mode.php#ini.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://www.php.net/manual/en/ini.sect.safe-mode.php#ini.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://www.php.net/manual/en/ini.sect.safe-mode.php#ini.disable-classes
  329. disable_classes =
  330. ; Colors for Syntax Highlighting mode. Anything that's acceptable in
  331. ; <span style="color: ???????"> would work.
  332. ; http://www.php.net/manual/en/misc.configuration.php#ini.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://www.php.net/manual/en/misc.configuration.php#ini.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://www.php.net/manual/en/ini.core.php#ini.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://www.php.net/manual/en/ini.core.php#ini.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://www.php.net/manual/en/ini.core.php#ini.expose-php
  363. expose_php = On
  364. ;;;;;;;;;;;;;;;;;;;
  365. ; Resource Limits ;
  366. ;;;;;;;;;;;;;;;;;;;
  367. ; Maximum execution time of each script, in seconds
  368. ; http://www.php.net/manual/en/info.configuration.php#ini.max-execution-time
  369. max_execution_time = 30
  370. ; Maximum amount of time each script may spend parsing request data. It's a good
  371. ; idea to limit this time on productions servers in order to eliminate unexpectedly
  372. ; long running scripts.
  373. ; Default Value: -1 (Unlimited)
  374. ; Development Value: 60 (60 seconds)
  375. ; Production Value: 60 (60 seconds)
  376. ; http://www.php.net/manual/en/info.configuration.php#ini.max-input-time
  377. max_input_time = 60
  378. ; Maximum input variable nesting level
  379. ; http://www.php.net/manual/en/info.configuration.php#ini.max-input-nesting-level
  380. ;max_input_nesting_level = 64
  381. ; Maximum amount of memory a script may consume (128MB)
  382. ; http://www.php.net/manual/en/ini.core.php#ini.memory-limit
  383. memory_limit = 128M
  384. ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
  385. ; Error handling and logging ;
  386. ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
  387. ; This directive informs PHP of which errors, warnings and notices you would like
  388. ; it to take action for. The recommended way of setting values for this
  389. ; directive is through the use of the error level constants and bitwise
  390. ; operators. The error level constants are below here for convenience as well as
  391. ; some common settings and their meanings.
  392. ; By default, PHP is set to take action on all errors, notices and warnings EXCEPT
  393. ; those related to E_NOTICE and E_STRICT, which together cover best practices and
  394. ; recommended coding standards in PHP. For performance reasons, this is the
  395. ; recommend error reporting setting. Your production server shouldn't be wasting
  396. ; resources complaining about best practices and coding standards. That's what
  397. ; development servers and development settings are for.
  398. ; Note: The php.ini-development file has this setting as E_ALL | E_STRICT. This
  399. ; means it pretty much reports everything which is exactly what you want during
  400. ; development and early testing.
  401. ;
  402. ; Error Level Constants:
  403. ; E_ALL - All errors and warnings (includes E_STRICT as of PHP 6.0.0)
  404. ; E_ERROR - fatal run-time errors
  405. ; E_RECOVERABLE_ERROR - almost fatal run-time errors
  406. ; E_WARNING - run-time warnings (non-fatal errors)
  407. ; E_PARSE - compile-time parse errors
  408. ; E_NOTICE - run-time notices (these are warnings which often result
  409. ; from a bug in your code, but it's possible that it was
  410. ; intentional (e.g., using an uninitialized variable and
  411. ; relying on the fact it's automatically initialized to an
  412. ; empty string)
  413. ; E_STRICT - run-time notices, enable to have PHP suggest changes
  414. ; to your code which will ensure the best interoperability
  415. ; and forward compatibility of your code
  416. ; E_CORE_ERROR - fatal errors that occur during PHP's initial startup
  417. ; E_CORE_WARNING - warnings (non-fatal errors) that occur during PHP's
  418. ; initial startup
  419. ; E_COMPILE_ERROR - fatal compile-time errors
  420. ; E_COMPILE_WARNING - compile-time warnings (non-fatal errors)
  421. ; E_USER_ERROR - user-generated error message
  422. ; E_USER_WARNING - user-generated warning message
  423. ; E_USER_NOTICE - user-generated notice message
  424. ; E_DEPRECATED - warn about code that will not work in future versions
  425. ; of PHP
  426. ; E_USER_DEPRECATED - user-generated deprecation warnings
  427. ;
  428. ; Common Values:
  429. ; E_ALL & ~E_NOTICE (Show all errors, except for notices and coding standards warnings.)
  430. ; E_ALL & ~E_NOTICE | E_STRICT (Show all errors, except for notices)
  431. ; E_COMPILE_ERROR|E_RECOVERABLE_ERROR|E_ERROR|E_CORE_ERROR (Show only errors)
  432. ; E_ALL | E_STRICT (Show all errors, warnings and notices including coding standards.)
  433. ; Default Value: E_ALL & ~E_NOTICE
  434. ; Development Value: E_ALL | E_STRICT
  435. ; Production Value: E_ALL & ~E_DEPRECATED
  436. ; http://www.php.net/manual/en/errorfunc.configuration.php#ini.error-reporting
  437. error_reporting = E_ALL & ~E_DEPRECATED
  438. ; This directive controls whether or not and where PHP will output errors,
  439. ; notices and warnings too. Error output is very useful during development, but
  440. ; it could be very dangerous in production environments. Depending on the code
  441. ; which is triggering the error, sensitive information could potentially leak
  442. ; out of your application such as database usernames and passwords or worse.
  443. ; It's recommended that errors be logged on production servers rather than
  444. ; having the errors sent to STDOUT.
  445. ; Possible Values:
  446. ; Off = Do not display any errors
  447. ; stderr = Display errors to STDERR (affects only CGI/CLI binaries!)
  448. ; On or stdout = Display errors to STDOUT
  449. ; Default Value: On
  450. ; Development Value: On
  451. ; Production Value: Off
  452. ; http://www.php.net/manual/en/errorfunc.configuration.php#ini.display-errors
  453. display_errors = Off
  454. ; The display of errors which occur during PHP's startup sequence are handled
  455. ; separately from display_errors. PHP's default behavior is to suppress those
  456. ; errors from clients. Turning the display of startup errors on can be useful in
  457. ; debugging configuration problems. But, it's strongly recommended that you
  458. ; leave this setting off on production servers.
  459. ; Default Value: Off
  460. ; Development Value: On
  461. ; Production Value: Off
  462. ; http://www.php.net/manual/en/errorfunc.configuration.php#ini.display-startup-errors
  463. display_startup_errors = Off
  464. ; Besides displaying errors, PHP can also log errors to locations such as a
  465. ; server-specific log, STDERR, or a location specified by the error_log
  466. ; directive found below. While errors should not be displayed on productions
  467. ; servers they should still be monitored and logging is a great way to do that.
  468. ; Default Value: Off
  469. ; Development Value: On
  470. ; Production Value: On
  471. ; http://www.php.net/manual/en/errorfunc.configuration.php#ini.log-errors
  472. log_errors = On
  473. ; Set maximum length of log_errors. In error_log information about the source is
  474. ; added. The default is 1024 and 0 allows to not apply any maximum length at all.
  475. ; http://www.php.net/manual/en/errorfunc.configuration.php#ini.log-errors-max-len
  476. log_errors_max_len = 1024
  477. ; Do not log repeated messages. Repeated errors must occur in same file on same
  478. ; line unless ignore_repeated_source is set true.
  479. ; http://www.php.net/manual/en/errorfunc.configuration.php#ini.ignore-repeated-errors
  480. ignore_repeated_errors = Off
  481. ; Ignore source of message when ignoring repeated messages. When this setting
  482. ; is On you will not log errors with repeated messages from different files or
  483. ; source lines.
  484. ; http://www.php.net/manual/en/errorfunc.configuration.php#ini.ignore-repeated-source
  485. ignore_repeated_source = Off
  486. ; If this parameter is set to Off, then memory leaks will not be shown (on
  487. ; stdout or in the log). This has only effect in a debug compile, and if
  488. ; error reporting includes E_WARNING in the allowed list
  489. ; http://www.php.net/manual/en/errorfunc.configuration.php#ini.report-memleaks
  490. report_memleaks = On
  491. ; This setting is on by default.
  492. ;report_zend_debug = 0
  493. ; Store the last error/warning message in $php_errormsg (boolean). Setting this value
  494. ; to On can assist in debugging and is appropriate for development servers. It should
  495. ; however be disabled on production servers.
  496. ; Default Value: Off
  497. ; Development Value: On
  498. ; Production Value: Off
  499. ; http://www.php.net/manual/en/errorfunc.configuration.php#ini.track-errors
  500. track_errors = Off
  501. ; Turn off normal error reporting and emit XML-RPC error XML
  502. ; http://www.php.net/manual/en/errorfunc.configuration.php#ini.xmlrpc-errors
  503. ;xmlrpc_errors = 0
  504. ; An XML-RPC faultCode
  505. ;xmlrpc_error_number = 0
  506. ; When PHP displays or logs an error, it has the capability of inserting html
  507. ; links to documentation related to that error. This directive controls whether
  508. ; those HTML links appear in error messages or not. For performance and security
  509. ; reasons, it's recommended you disable this on production servers.
  510. ; Default Value: On
  511. ; Development Value: On
  512. ; Production value: Off
  513. ; http://www.php.net/manual/en/errorfunc.configuration.php#ini.html-errors
  514. html_errors = Off
  515. ; If html_errors is set On PHP produces clickable error messages that direct
  516. ; to a page describing the error or function causing the error in detail.
  517. ; You can download a copy of the PHP manual from http://www.php.net/docs.php
  518. ; and change docref_root to the base URL of your local copy including the
  519. ; leading '/'. You must also specify the file extension being used including
  520. ; the dot. PHP's default behavior is to leave these settings empty.
  521. ; Note: Never use this feature for production boxes.
  522. ; http://www.php.net/manual/en/errorfunc.configuration.php#ini.docref-root
  523. ; Examples
  524. ;docref_root = "/phpmanual/"
  525. ; http://www.php.net/manual/en/errorfunc.configuration.php#ini.docref-ext
  526. ;docref_ext = .html
  527. ; String to output before an error message. PHP's default behavior is to leave
  528. ; this setting blank.
  529. ; http://www.php.net/manual/en/errorfunc.configuration.php#ini.error-prepend-string
  530. ; Example:
  531. ;error_prepend_string = "<font color=#ff0000>"
  532. ; String to output after an error message. PHP's default behavior is to leave
  533. ; this setting blank.
  534. ; http://www.php.net/manual/en/errorfunc.configuration.php#ini.error-append-string
  535. ; Example:
  536. ;error_append_string = "</font>"
  537. ; Log errors to specified file. PHP's default behavior is to leave this value
  538. ; empty.
  539. ; http://www.php.net/manual/en/errorfunc.configuration.php#ini.error-log
  540. ; Example:
  541. error_log = ../php_errors.log
  542. ; Log errors to syslog (Event Log on NT, not valid in Windows 95).
  543. ;error_log = syslog
  544. ;;;;;;;;;;;;;;;;;
  545. ; Data Handling ;
  546. ;;;;;;;;;;;;;;;;;
  547. ; Note - track_vars is ALWAYS enabled as of PHP 4.0.3
  548. ; The separator used in PHP generated URLs to separate arguments.
  549. ; PHP's default setting is "&".
  550. ; http://www.php.net/manual/en/ini.core.php#ini.arg-separator.output
  551. ; Example:
  552. ;arg_separator.output = "&amp;"
  553. ; List of separator(s) used by PHP to parse input URLs into variables.
  554. ; PHP's default setting is "&".
  555. ; NOTE: Every character in this directive is considered as separator!
  556. ; http://www.php.net/manual/en/ini.core.php#ini.arg-separator.input
  557. ; Example:
  558. ;arg_separator.input = ";&"
  559. ; This directive determines which super global arrays are registered when PHP
  560. ; starts up. If the register_globals directive is enabled, it also determines
  561. ; what order variables are populated into the global space. G,P,C,E & S are
  562. ; abbreviations for the following respective super globals: GET, POST, COOKIE,
  563. ; ENV and SERVER. There is a performance penalty paid for the registration of
  564. ; these arrays and because ENV is not as commonly used as the others, ENV is
  565. ; is not recommended on productions servers. You can still get access to
  566. ; the environment variables through getenv() should you need to.
  567. ; Default Value: "EGPCS"
  568. ; Development Value: "GPCS"
  569. ; Production Value: "GPCS";
  570. ; http://www.php.net/manual/en/ini.core.php#ini.variables-order
  571. variables_order = "GPCS"
  572. ; This directive determines which super global data (G,P,C,E & S) should
  573. ; be registered into the super global array REQUEST. If so, it also determines
  574. ; the order in which that data is registered. The values for this directive are
  575. ; specified in the same manner as the variables_order directive, EXCEPT one.
  576. ; Leaving this value empty will cause PHP to use the value set in the
  577. ; variables_order directive. It does not mean it will leave the super globals
  578. ; array REQUEST empty.
  579. ; Default Value: None
  580. ; Development Value: "GP"
  581. ; Production Value: "GP"
  582. ; http://www.php.net/manual/en/ini.core.php#ini.request-order
  583. request_order = "GP"
  584. ; Whether or not to register the EGPCS variables as global variables. You may
  585. ; want to turn this off if you don't want to clutter your scripts' global scope
  586. ; with user data. This makes most sense when coupled with track_vars - in which
  587. ; case you can access all of the GPC variables through the $HTTP_*_VARS[],
  588. ; variables.
  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://www.php.net/manual/en/ini.core.php#ini.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://www.php.net/manual/en/ini.core.php#ini.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. ; Default Value: On
  612. ; Development Value: Off
  613. ; Production Value: Off
  614. ; http://www.php.net/manual/en/ini.core.php#ini.register-argc-argv
  615. register_argc_argv = Off
  616. ; When enabled, the SERVER and ENV variables are created when they're first
  617. ; used (Just In Time) instead of when the script starts. If these variables
  618. ; are not used within a script, having this directive on will result in a
  619. ; performance gain. The PHP directives register_globals, register_long_arrays,
  620. ; and register_argc_argv must be disabled for this directive to have any affect.
  621. ; http://www.php.net/manual/en/ini.core.php#ini.auto-globals-jit
  622. auto_globals_jit = On
  623. ; Maximum size of POST data that PHP will accept.
  624. ; http://www.php.net/manual/en/ini.core.php#ini.post-max-size
  625. post_max_size = 8M
  626. ; Magic quotes are a preprocessing feature of PHP where PHP will attempt to
  627. ; escape any character sequences in GET, POST, COOKIE and ENV data which might
  628. ; otherwise corrupt data being placed in resources such as databases before
  629. ; making that data available to you. Because of character encoding issues and
  630. ; non-standard SQL implementations across many databases, it's not currently
  631. ; possible for this feature to be 100% accurate. PHP's default behavior is to
  632. ; enable the feature. We strongly recommend you use the escaping mechanisms
  633. ; designed specifically for the database your using instead of relying on this
  634. ; feature. Also note, this feature has been deprecated as of PHP 5.3.0 and is
  635. ; scheduled for removal in PHP 6.
  636. ; Default Value: On
  637. ; Development Value: Off
  638. ; Production Value: Off
  639. ; http://www.php.net/manual/en/info.configuration.php#ini.magic-quotes-gpc
  640. magic_quotes_gpc = Off
  641. ; Magic quotes for runtime-generated data, e.g. data from SQL, from exec(), etc.
  642. ; http://www.php.net/manual/en/info.configuration.php#ini.magic-quotes-runtime
  643. magic_quotes_runtime = Off
  644. ; Use Sybase-style magic quotes (escape ' with '' instead of \').
  645. ; http://www.php.net/manual/en/sybase.configuration.php#ini.magic-quotes-sybase
  646. magic_quotes_sybase = Off
  647. ; Automatically add files before PHP document.
  648. ; http://www.php.net/manual/en/ini.core.php#ini.auto-prepend-file
  649. auto_prepend_file =
  650. ; Automatically add files after PHP document.
  651. ; http://www.php.net/manual/en/ini.core.php#ini.auto-append-file
  652. auto_append_file =
  653. ; As of 4.0b4, PHP always outputs a character encoding by default in
  654. ; the Content-type: header. To disable sending of the charset, simply
  655. ; set it to be empty.
  656. ;
  657. ; PHP's built-in default is text/html
  658. ; http://www.php.net/manual/en/ini.core.php#ini.default-mimetype
  659. default_mimetype = "text/html"
  660. ; PHP's default character set is set to empty.
  661. ; http://www.php.net/manual/en/ini.core.php#ini.default-charset
  662. ;default_charset = "iso-8859-1"
  663. ; Always populate the $HTTP_RAW_POST_DATA variable. PHP's default behavior is
  664. ; to disable this feature.
  665. ; http://www.php.net/manual/en/ini.core.php#ini.always-populate-raw-post-data
  666. ;always_populate_raw_post_data = On
  667. ;;;;;;;;;;;;;;;;;;;;;;;;;
  668. ; Paths and Directories ;
  669. ;;;;;;;;;;;;;;;;;;;;;;;;;
  670. ; UNIX: "/path1:/path2"
  671. ;include_path = ".:/php/includes"
  672. ;
  673. ; Windows: "\path1;\path2"
  674. ;include_path = ".;c:\php\includes"
  675. ;
  676. ; PHP's default setting for include_path is ".;/path/to/php/pear"
  677. ; http://www.php.net/manual/en/ini.core.php#ini.include-path
  678. ; The root of the PHP pages, used only if nonempty.
  679. ; if PHP was not compiled with FORCE_REDIRECT, you SHOULD set doc_root
  680. ; if you are running php as a CGI under any web server (other than IIS)
  681. ; see documentation for security issues. The alternate is to use the
  682. ; cgi.force_redirect configuration below
  683. ; http://www.php.net/manual/en/ini.core.php#ini.doc-root
  684. doc_root =
  685. ; The directory under which PHP opens the script using /~username used only
  686. ; if nonempty.
  687. ; http://www.php.net/manual/en/ini.core.php#ini.user-dir
  688. user_dir =
  689. ; Directory in which the loadable extensions (modules) reside.
  690. ; http://www.php.net/manual/en/ini.core.php#ini.extension-dir
  691. ; extension_dir = "./"
  692. ; Whether or not to enable the dl() function. The dl() function does NOT work
  693. ; properly in multithreaded servers, such as IIS or Zeus, and is automatically
  694. ; disabled on them.
  695. ; http://www.php.net/manual/en/info.configuration.php#ini.enable-dl
  696. enable_dl = Off
  697. ; cgi.force_redirect is necessary to provide security running PHP as a CGI under
  698. ; most web servers. Left undefined, PHP turns this on by default. You can
  699. ; turn it off here AT YOUR OWN RISK
  700. ; **You CAN safely turn this off for IIS, in fact, you MUST.**
  701. ; http://www.php.net/manual/en/ini.core.php#ini.cgi.force-redirect
  702. ;cgi.force_redirect = 1
  703. ; if cgi.nph is enabled it will force cgi to always sent Status: 200 with
  704. ; every request. PHP's default behavior is to disable this feature.
  705. ;cgi.nph = 1
  706. ; if cgi.force_redirect is turned on, and you are not running under Apache or Netscape
  707. ; (iPlanet) web servers, you MAY need to set an environment variable name that PHP
  708. ; will look for to know it is OK to continue execution. Setting this variable MAY
  709. ; cause security issues, KNOW WHAT YOU ARE DOING FIRST.
  710. ; http://www.php.net/manual/en/ini.core.php#ini.cgi.redirect-status-env
  711. ;cgi.redirect_status_env = ;
  712. ; cgi.fix_pathinfo provides *real* PATH_INFO/PATH_TRANSLATED support for CGI. PHP's
  713. ; previous behaviour was to set PATH_TRANSLATED to SCRIPT_FILENAME, and to not grok
  714. ; what PATH_INFO is. For more information on PATH_INFO, see the cgi specs. Setting
  715. ; this to 1 will cause PHP CGI to fix its paths to conform to the spec. A setting
  716. ; of zero causes PHP to behave as before. Default is 1. You should fix your scripts
  717. ; to use SCRIPT_FILENAME rather than PATH_TRANSLATED.
  718. ; http://www.php.net/manual/en/ini.core.php#ini.cgi.fix-pathinfo
  719. ;cgi.fix_pathinfo=1
  720. ; FastCGI under IIS (on WINNT based OS) supports the ability to impersonate
  721. ; security tokens of the calling client. This allows IIS to define the
  722. ; security context that the request runs under. mod_fastcgi under Apache
  723. ; does not currently support this feature (03/17/2002)
  724. ; Set to 1 if running under IIS. Default is zero.
  725. ; http://www.php.net/manual/en/ini.core.php#ini.fastcgi.impersonate
  726. ;fastcgi.impersonate = 1;
  727. ; Disable logging through FastCGI connection. PHP's default behavior is to enable
  728. ; this feature.
  729. ;fastcgi.logging = 0
  730. ; cgi.rfc2616_headers configuration option tells PHP what type of headers to
  731. ; use when sending HTTP response code. If it's set 0 PHP sends Status: header that
  732. ; is supported by Apache. When this option is set to 1 PHP will send
  733. ; RFC2616 compliant header.
  734. ; Default is zero.
  735. ; http://www.php.net/manual/en/ini.core.php#ini.cgi.rfc2616-headers
  736. ;cgi.rfc2616_headers = 0
  737. ;;;;;;;;;;;;;;;;
  738. ; File Uploads ;
  739. ;;;;;;;;;;;;;;;;
  740. ; Whether to allow HTTP file uploads.
  741. ; http://www.php.net/manual/en/ini.core.php#ini.file-uploads
  742. file_uploads = On
  743. ; Temporary directory for HTTP uploaded files (will use system default if not
  744. ; specified).
  745. ; http://www.php.net/manual/en/ini.core.php#ini.upload-tmp-dir
  746. ;upload_tmp_dir =
  747. ; Maximum allowed size for uploaded files.
  748. ; http://www.php.net/manual/en/ini.core.php#ini.upload-max-filesize
  749. upload_max_filesize = 2M
  750. ;;;;;;;;;;;;;;;;;;
  751. ; Fopen wrappers ;
  752. ;;;;;;;;;;;;;;;;;;
  753. ; Whether to allow the treatment of URLs (like http:// or ftp://) as files.
  754. ; http://www.php.net/manual/en/filesystem.configuration.php#ini.allow-url-fopen
  755. allow_url_fopen = On
  756. ; Whether to allow include/require to open URLs (like http:// or ftp://) as files.
  757. ; http://www.php.net/manual/en/filesystem.configuration.php#ini.allow-url-include
  758. allow_url_include = Off
  759. ; Define the anonymous ftp password (your email address). PHP's default setting
  760. ; for this is empty.
  761. ; http://www.php.net/manual/en/filesystem.configuration.php#ini.from
  762. ;from="john@doe.com"
  763. ; Define the User-Agent string. PHP's default setting for this is empty.
  764. ; http://www.php.net/manual/en/filesystem.configuration.php#ini.user-agent
  765. ;user_agent="PHP"
  766. ; Default timeout for socket based streams (seconds)
  767. ; http://www.php.net/manual/en/filesystem.configuration.php#ini.default-socket-timeout
  768. default_socket_timeout = 60
  769. ; If your scripts have to deal with files from Macintosh systems,
  770. ; or you are running on a Mac and need to deal with files from
  771. ; unix or win32 systems, setting this flag will cause PHP to
  772. ; automatically detect the EOL character in those files so that
  773. ; fgets() and file() will work regardless of the source of the file.
  774. ; http://www.php.net/manual/en/filesystem.configuration.php#ini.auto-detect-line-endings
  775. ;auto_detect_line_endings = Off
  776. ;;;;;;;;;;;;;;;;;;;;;;
  777. ; Dynamic Extensions ;
  778. ;;;;;;;;;;;;;;;;;;;;;;
  779. ; If you wish to have an extension loaded automatically, use the following
  780. ; syntax:
  781. ;
  782. ; extension=modulename.extension
  783. ;
  784. ; For example
  785. ;
  786. ; extension=msql.so
  787. ;
  788. ; ... or with a path:
  789. ;
  790. ; extension=/path/to/extension/msql.so
  791. ;
  792. ; If you only provide the name of the extension, PHP will look for it in its
  793. ; default extension directory.
  794. ;;;;
  795. ; Note: packaged extension modules are now loaded via the .ini files
  796. ; found in the directory /etc/php.d; these are loaded by default.
  797. ;;;;
  798. ;;;;;;;;;;;;;;;;;;;
  799. ; Module Settings ;
  800. ;;;;;;;;;;;;;;;;;;;
  801. [Date]
  802. ; Defines the default timezone used by the date functions
  803. ; http://www.php.net/manual/en/datetime.configuration.php#ini.date.timezone
  804. ;date.timezone =
  805. ; http://www.php.net/manual/en/datetime.configuration.php#ini.date.default-latitude
  806. ;date.default_latitude = 31.7667
  807. ; http://www.php.net/manual/en/datetime.configuration.php#ini.date.default-longitude
  808. ;date.default_longitude = 35.2333
  809. ; http://www.php.net/manual/en/datetime.configuration.php#ini.date.sunrise-zenith
  810. ;date.sunrise_zenith = 90.583333
  811. ; http://www.php.net/manual/en/datetime.configuration.php#ini.date.sunset-zenith
  812. ;date.sunset_zenith = 90.583333
  813. [filter]
  814. ; http://www.php.net/manual/en/filter.configuration.php#ini.filter.default
  815. ;filter.default = unsafe_raw
  816. ; http://www.php.net/manual/en/filter.configuration.php#ini.filter.default-flags
  817. ;filter.default_flags =
  818. [iconv]
  819. ;iconv.input_encoding = ISO-8859-1
  820. ;iconv.internal_encoding = ISO-8859-1
  821. ;iconv.output_encoding = ISO-8859-1
  822. [intl]
  823. ;intl.default_locale =
  824. [sqlite]
  825. ; http://www.php.net/manual/en/sqlite.configuration.php#ini.sqlite.assoc-case
  826. ;sqlite.assoc_case = 0
  827. [sqlite3]
  828. ;sqlite3.extension_dir =
  829. [Pcre]
  830. ;PCRE library backtracking limit.
  831. ; http://www.php.net/manual/en/pcre.configuration.php#ini.pcre.backtrack-limit
  832. ;pcre.backtrack_limit=100000
  833. ;PCRE library recursion limit.
  834. ;Please note that if you set this value to a high number you may consume all
  835. ;the available process stack and eventually crash PHP (due to reaching the
  836. ;stack size limit imposed by the Operating System).
  837. ; http://www.php.net/manual/en/pcre.configuration.php#ini.pcre.recursion-limit
  838. ;pcre.recursion_limit=100000
  839. [Pdo]
  840. ; Whether to pool ODBC connections. Can be one of "strict", "relaxed" or "off"
  841. ; http://www.php.net/manual/en/ref.pdo-odbc.php#ini.pdo-odbc.connection-pooling
  842. ;pdo_odbc.connection_pooling=strict
  843. [Phar]
  844. ; http://www.php.net/manual/en/phar.configuration.php#ini.phar.readonly
  845. ;phar.readonly = On
  846. ; http://www.php.net/manual/en/phar.configuration.php#ini.phar.require-hash
  847. ;phar.require_hash = On
  848. ;phar.cache_list =
  849. [Syslog]
  850. ; Whether or not to define the various syslog variables (e.g. $LOG_PID,
  851. ; $LOG_CRON, etc.). Turning it off is a good idea performance-wise. In
  852. ; runtime, you can define these variables by calling define_syslog_variables().
  853. ; http://www.php.net/manual/en/network.configuration.php#ini.define-syslog-variables
  854. define_syslog_variables = Off
  855. [mail function]
  856. ; For Win32 only.
  857. ; http://www.php.net/manual/en/mail.configuration.php#ini.smtp
  858. SMTP = localhost
  859. ; http://www.php.net/manual/en/mail.configuration.php#ini.smtp-port
  860. smtp_port = 25
  861. ; For Win32 only.
  862. ; http://www.php.net/manual/en/mail.configuration.php#ini.sendmail-from
  863. ;sendmail_from = me@example.com
  864. ; For Unix only. You may supply arguments as well (default: "sendmail -t -i").
  865. ; http://www.php.net/manual/en/mail.configuration.php#ini.sendmail-path
  866. sendmail_path = /usr/sbin/sendmail -t -i
  867. ; Force the addition of the specified parameters to be passed as extra parameters
  868. ; to the sendmail binary. These parameters will always replace the value of
  869. ; the 5th parameter to mail(), even in safe mode.
  870. ;mail.force_extra_parameters =
  871. ; Add X-PHP-Originaiting-Script: that will include uid of the script followed by the filename
  872. mail.add_x_header = On
  873. ; Log all mail() calls including the full path of the script, line #, to address and headers
  874. ;mail.log =
  875. [SQL]
  876. ; http://www.php.net/manual/en/ini.core.php#ini.sql.safe-mode
  877. sql.safe_mode = Off
  878. [ODBC]
  879. ; http://www.php.net/manual/en/odbc.configuration.php#ini.uodbc.default-db
  880. ;odbc.default_db = Not yet implemented
  881. ; http://www.php.net/manual/en/odbc.configuration.php#ini.uodbc.default-user
  882. ;odbc.default_user = Not yet implemented
  883. ; http://www.php.net/manual/en/odbc.configuration.php#ini.uodbc.default-pw
  884. ;odbc.default_pw = Not yet implemented
  885. ; Allow or prevent persistent links.
  886. ; http://www.php.net/manual/en/odbc.configuration.php#ini.uodbc.allow-persistent
  887. odbc.allow_persistent = On
  888. ; Check that a connection is still valid before reuse.
  889. ; http://www.php.net/manual/en/odbc.configuration.php#ini.uodbc.check-persistent
  890. odbc.check_persistent = On
  891. ; Maximum number of persistent links. -1 means no limit.
  892. ; http://www.php.net/manual/en/odbc.configuration.php#ini.uodbc.max-persistent
  893. odbc.max_persistent = -1
  894. ; Maximum number of links (persistent + non-persistent). -1 means no limit.
  895. ; http://www.php.net/manual/en/odbc.configuration.php#ini.uodbc.max-links
  896. odbc.max_links = -1
  897. ; Handling of LONG fields. Returns number of bytes to variables. 0 means
  898. ; passthru.
  899. ; http://www.php.net/manual/en/odbc.configuration.php#ini.uodbc.defaultlrl
  900. odbc.defaultlrl = 4096
  901. ; Handling of binary data. 0 means passthru, 1 return as is, 2 convert to char.
  902. ; See the documentation on odbc_binmode and odbc_longreadlen for an explanation
  903. ; of uodbc.defaultlrl and uodbc.defaultbinmode
  904. ; http://www.php.net/manual/en/odbc.configuration.php#ini.uodbc.defaultbinmode
  905. odbc.defaultbinmode = 1
  906. ;birdstep.max_links = -1
  907. [MySQL]
  908. ; Allow or prevent persistent links.
  909. ; http://www.php.net/manual/en/mysql.configuration.php#ini.mysql.allow-persistent
  910. mysql.allow_persistent = On
  911. ; Maximum number of persistent links. -1 means no limit.
  912. ; http://www.php.net/manual/en/mysql.configuration.php#ini.mysql.max-persistent
  913. mysql.max_persistent = -1
  914. ; Maximum number of links (persistent + non-persistent). -1 means no limit.
  915. ; http://www.php.net/manual/en/mysql.configuration.php#ini.mysql.max-links
  916. mysql.max_links = -1
  917. ; Default port number for mysql_connect(). If unset, mysql_connect() will use
  918. ; the $MYSQL_TCP_PORT or the mysql-tcp entry in /etc/services or the
  919. ; compile-time value defined MYSQL_PORT (in that order). Win32 will only look
  920. ; at MYSQL_PORT.
  921. ; http://www.php.net/manual/en/mysql.configuration.php#ini.mysql.default-port
  922. mysql.default_port =
  923. ; Default socket name for local MySQL connects. If empty, uses the built-in
  924. ; MySQL defaults.
  925. ; http://www.php.net/manual/en/mysql.configuration.php#ini.mysql.default-socket
  926. mysql.default_socket =
  927. ; Default host for mysql_connect() (doesn't apply in safe mode).
  928. ; http://www.php.net/manual/en/mysql.configuration.php#ini.mysql.default-host
  929. mysql.default_host =
  930. ; Default user for mysql_connect() (doesn't apply in safe mode).
  931. ; http://www.php.net/manual/en/mysql.configuration.php#ini.mysql.default-user
  932. mysql.default_user =
  933. ; Default password for mysql_connect() (doesn't apply in safe mode).
  934. ; Note that this is generally a *bad* idea to store passwords in this file.
  935. ; *Any* user with PHP access can run 'echo get_cfg_var("mysql.default_password")
  936. ; and reveal this password! And of course, any users with read access to this
  937. ; file will be able to reveal the password as well.
  938. ; http://www.php.net/manual/en/mysql.configuration.php#ini.mysql.default-password
  939. mysql.default_password =
  940. ; Maximum time (in seconds) for connect timeout. -1 means no limit
  941. ; http://www.php.net/manual/en/mysql.configuration.php#ini.mysql.connect-timeout
  942. mysql.connect_timeout = 60
  943. ; Trace mode. When trace_mode is active (=On), warnings for table/index scans and
  944. ; SQL-Errors will be displayed.
  945. ; http://www.php.net/manual/en/mysql.configuration.php#ini.mysql.trace-mode
  946. mysql.trace_mode = Off
  947. [MySQLi]
  948. ; Maximum number of links. -1 means no limit.
  949. ; http://www.php.net/manual/en/mysqli.configuration.php#ini.mysqli.max-links
  950. mysqli.max_links = -1
  951. ; Default port number for mysqli_connect(). If unset, mysqli_connect() will use
  952. ; the $MYSQL_TCP_PORT or the mysql-tcp entry in /etc/services or the
  953. ; compile-time value defined MYSQL_PORT (in that order). Win32 will only look
  954. ; at MYSQL_PORT.
  955. ; http://www.php.net/manual/en/mysqli.configuration.php#ini.mysqli.default-port
  956. mysqli.default_port = 3306
  957. ; Default socket name for local MySQL connects. If empty, uses the built-in
  958. ; MySQL defaults.
  959. ; http://www.php.net/manual/en/mysqli.configuration.php#ini.mysqli.default-socket
  960. mysqli.default_socket =
  961. ; Default host for mysql_connect() (doesn't apply in safe mode).
  962. ; http://www.php.net/manual/en/mysqli.configuration.php#ini.mysqli.default-host
  963. mysqli.default_host =
  964. ; Default user for mysql_connect() (doesn't apply in safe mode).
  965. ; http://www.php.net/manual/en/mysqli.configuration.php#ini.mysqli.default-user
  966. mysqli.default_user =
  967. ; Default password for mysqli_connect() (doesn't apply in safe mode).
  968. ; Note that this is generally a *bad* idea to store passwords in this file.
  969. ; *Any* user with PHP access can run 'echo get_cfg_var("mysqli.default_pw")
  970. ; and reveal this password! And of course, any users with read access to this
  971. ; file will be able to reveal the password as well.
  972. ; http://www.php.net/manual/en/mysqli.configuration.php#ini.mysqli.default-pw
  973. mysqli.default_pw =
  974. ; Allow or prevent reconnect
  975. mysqli.reconnect = Off
  976. [PostgresSQL]
  977. ; Allow or prevent persistent links.
  978. ; http://www.php.net/manual/en/pgsql.configuration.php#ini.pgsql.allow-persistent
  979. pgsql.allow_persistent = On
  980. ; Detect broken persistent links always with pg_pconnect().
  981. ; Auto reset feature requires a little overheads.
  982. ; http://www.php.net/manual/en/pgsql.configuration.php#ini.pgsql.auto-reset-persistent
  983. pgsql.auto_reset_persistent = Off
  984. ; Maximum number of persistent links. -1 means no limit.
  985. ; http://www.php.net/manual/en/pgsql.configuration.php#ini.pgsql.max-persistent
  986. pgsql.max_persistent = -1
  987. ; Maximum number of links (persistent+non persistent). -1 means no limit.
  988. ; http://www.php.net/manual/en/pgsql.configuration.php#ini.pgsql.max-links
  989. pgsql.max_links = -1
  990. ; Ignore PostgreSQL backends Notice message or not.
  991. ; Notice message logging require a little overheads.
  992. ; http://www.php.net/manual/en/pgsql.configuration.php#ini.pgsql.ignore-notice
  993. pgsql.ignore_notice = 0
  994. ; Log PostgreSQL backends Noitce message or not.
  995. ; Unless pgsql.ignore_notice=0, module cannot log notice message.
  996. ; http://www.php.net/manual/en/pgsql.configuration.php#ini.pgsql.log-notice
  997. pgsql.log_notice = 0
  998. [Sybase-CT]
  999. ; Allow or prevent persistent links.
  1000. ; http://www.php.net/manual/en/sybase.configuration.php#ini.sybct.allow-persistent
  1001. sybct.allow_persistent = On
  1002. ; Maximum number of persistent links. -1 means no limit.
  1003. ; http://www.php.net/manual/en/sybase.configuration.php#ini.sybct.max-persistent
  1004. sybct.max_persistent = -1
  1005. ; Maximum number of links (persistent + non-persistent). -1 means no limit.
  1006. ; http://www.php.net/manual/en/sybase.configuration.php#ini.sybct.max-links
  1007. sybct.max_links = -1
  1008. ; Minimum server message severity to display.
  1009. ; http://www.php.net/manual/en/sybase.configuration.php#ini.sybct.min-server-severity
  1010. sybct.min_server_severity = 10
  1011. ; Minimum client message severity to display.
  1012. ; http://www.php.net/manual/en/sybase.configuration.php#ini.sybct.min-client-severity
  1013. sybct.min_client_severity = 10
  1014. ; Set per-context timeout
  1015. ; http://www.php.net/manual/en/sybase.configuration.php#ini.sybct.timeout
  1016. ;sybct.timeout=
  1017. ;sybct.packet_size
  1018. [bcmath]
  1019. ; Number of decimal digits for all bcmath functions.
  1020. ; http://www.php.net/manual/en/bc.configuration.php#ini.bcmath.scale
  1021. bcmath.scale = 0
  1022. [browscap]
  1023. ; http://www.php.net/manual/en/misc.configuration.php#ini.browscap
  1024. ;browscap = extra/browscap.ini
  1025. [Session]
  1026. ; Handler used to store/retrieve data.
  1027. ; http://www.php.net/manual/en/session.configuration.php#ini.session.save-handler
  1028. session.save_handler = files
  1029. ; Argument passed to save_handler. In the case of files, this is the path
  1030. ; where data files are stored. Note: Windows users have to change this
  1031. ; variable in order to use PHP's session functions.
  1032. ;
  1033. ; As of PHP 4.0.1, you can define the path as:
  1034. ;
  1035. ; session.save_path = "N;/path"
  1036. ;
  1037. ; where N is an integer. Instead of storing all the session files in
  1038. ; /path, what this will do is use subdirectories N-levels deep, and
  1039. ; store the session data in those directories. This is useful if you
  1040. ; or your OS have problems with lots of files in one directory, and is
  1041. ; a more efficient layout for servers that handle lots of sessions.
  1042. ;
  1043. ; NOTE 1: PHP will not create this directory structure automatically.
  1044. ; You can use the script in the ext/session dir for that purpose.
  1045. ; NOTE 2: See the section on garbage collection below if you choose to
  1046. ; use subdirectories for session storage
  1047. ;
  1048. ; The file storage module creates files using mode 600 by default.
  1049. ; You can change that by using
  1050. ;
  1051. ; session.save_path = "N;MODE;/path"
  1052. ;
  1053. ; where MODE is the octal representation of the mode. Note that this
  1054. ; does not overwrite the process's umask.
  1055. ; http://www.php.net/manual/en/session.configuration.php#ini.session.save-path
  1056. ; session.save_path = "../sessions"
  1057. ; Whether to use cookies.
  1058. ; http://www.php.net/manual/en/session.configuration.php#ini.session.use-cookies
  1059. session.use_cookies = 1
  1060. ; http://www.php.net/manual/en/session.configuration.php#ini.session.cookie-secure
  1061. ;session.cookie_secure =
  1062. ; This option forces PHP to fetch and use a cookie for storing and maintaining
  1063. ; the session id. We encourage this operation as it's very helpful in combatting
  1064. ; session hijacking when not specifying and managing your own session id. It is
  1065. ; not the end all be all of session hijacking defense, but it's a good start.
  1066. ; http://www.php.net/manual/en/session.configuration.php#ini.session.use-only-cookies
  1067. session.use_only_cookies = 1
  1068. ; Name of the session (used as cookie name).
  1069. ; http://www.php.net/manual/en/session.configuration.php#ini.session.name
  1070. session.name = PHPSESSID
  1071. ; Initialize session on request startup.
  1072. ; http://www.php.net/manual/en/session.configuration.php#ini.session.auto-start
  1073. session.auto_start = 0
  1074. ; Lifetime in seconds of cookie or, if 0, until browser is restarted.
  1075. ; http://www.php.net/manual/en/session.configuration.php#ini.session.cookie-lifetime
  1076. session.cookie_lifetime = 0
  1077. ; The path for which the cookie is valid.
  1078. ; http://www.php.net/manual/en/session.configuration.php#ini.session.cookie-path
  1079. session.cookie_path = /
  1080. ; The domain for which the cookie is valid.
  1081. ; http://www.php.net/manual/en/session.configuration.php#ini.session.cookie-domain
  1082. session.cookie_domain =
  1083. ; Whether or not to add the httpOnly flag to the cookie, which makes it inaccessible to browser scripting languages such as JavaScript.
  1084. ; http://www.php.net/manual/en/session.configuration.php#ini.session.cookie-httponly
  1085. session.cookie_httponly =
  1086. ; Handler used to serialize data. php is the standard serializer of PHP.
  1087. ; http://www.php.net/manual/en/session.configuration.php#ini.session.serialize-handler
  1088. session.serialize_handler = php
  1089. ; Defines the probability that the 'garbage collection' process is started
  1090. ; on every session initialization. The probability is calculated by using
  1091. ; gc_probability/gc_divisor. Where session.gc_probability is the numerator
  1092. ; and gc_divisor is the denominator in the equation. Setting this value to 1
  1093. ; when the session.gc_divisor value is 100 will give you approximately a 1% chance
  1094. ; the gc will run on any give request.
  1095. ; Default Value: 1
  1096. ; Development Value: 1
  1097. ; Production Value: 1
  1098. ; http://www.php.net/manual/en/session.configuration.php#ini.session.gc-probability
  1099. session.gc_probability = 1
  1100. ; Defines the probability that the 'garbage collection' process is started on every
  1101. ; session initialization. The probability is calculated by using the following equation:
  1102. ; gc_probability/gc_divisor. Where session.gc_probability is the numerator and
  1103. ; session.gc_divisor is the denominator in the equation. Setting this value to 1
  1104. ; when the session.gc_divisor value is 100 will give you approximately a 1% chance
  1105. ; the gc will run on any give request. Increasing this value to 1000 will give you
  1106. ; a 0.1% chance the gc will run on any give request. For high volume production servers,
  1107. ; this is a more efficient approach.
  1108. ; Default Value: 100
  1109. ; Development Value: 1000
  1110. ; Production Value: 1000
  1111. ; http://www.php.net/manual/en/session.configuration.php#ini.session.gc-divisor
  1112. session.gc_divisor = 1000
  1113. ; After this number of seconds, stored data will be seen as 'garbage' and
  1114. ; cleaned up by the garbage collection process.
  1115. ; http://www.php.net/manual/en/session.configuration.php#ini.session.gc-maxlifetime
  1116. session.gc_maxlifetime = 1440
  1117. ; NOTE: If you are using the subdirectory option for storing session files
  1118. ; (see session.save_path above), then garbage collection does *not*
  1119. ; happen automatically. You will need to do your own garbage
  1120. ; collection through a shell script, cron entry, or some other method.
  1121. ; For example, the following script would is the equivalent of
  1122. ; setting session.gc_maxlifetime to 1440 (1440 seconds = 24 minutes):
  1123. ; cd /path/to/sessions; find -cmin +24 | xargs rm
  1124. ; PHP 4.2 and less have an undocumented feature/bug that allows you to
  1125. ; to initialize a session variable in the global scope, even when register_globals
  1126. ; is disabled. PHP 4.3 and later will warn you, if this feature is used.
  1127. ; You can disable the feature and the warning separately. At this time,
  1128. ; the warning is only displayed, if bug_compat_42 is enabled. This feature
  1129. ; introduces some serious security problems if not handled correctly. It's
  1130. ; recommended that you do not use this feature on production servers. But you
  1131. ; should enable this on development servers and enable the warning as well. If you
  1132. ; do not enable the feature on development servers, you won't be warned when it's
  1133. ; used and debugging errors caused by this can be difficult to track down.
  1134. ; Default Value: On
  1135. ; Development Value: On
  1136. ; Production Value: Off
  1137. ; http://www.php.net/manual/en/session.configuration.php#ini.session.bug-compat-42
  1138. session.bug_compat_42 = Off
  1139. ; This setting controls whether or not you are warned by PHP when initializing a
  1140. ; session value into the global space. session.bug_compat_42 must be enabled before
  1141. ; these warnings can be issued by PHP. See the directive above for more information.
  1142. ; Default Value: On
  1143. ; Development Value: On
  1144. ; Production Value: Off
  1145. ; http://www.php.net/manual/en/session.configuration.php#ini.session.bug-compat-warn
  1146. session.bug_compat_warn = Off
  1147. ; Check HTTP Referer to invalidate externally stored URLs containing ids.
  1148. ; HTTP_REFERER has to contain this substring for the session to be
  1149. ; considered as valid.
  1150. ; http://www.php.net/manual/en/session.configuration.php#ini.session.referer-check
  1151. session.referer_check =
  1152. ; How many bytes to read from the file.
  1153. ; http://www.php.net/manual/en/session.configuration.php#ini.session.entropy-length
  1154. session.entropy_length = 0
  1155. ; Specified here to create the session id.
  1156. ; http://www.php.net/manual/en/session.configuration.php#ini.session.entropy-file
  1157. ;session.entropy_file = /dev/urandom
  1158. session.entropy_file =
  1159. ; http://www.php.net/manual/en/session.configuration.php#ini.session.entropy-length
  1160. ;session.entropy_length = 16
  1161. ; Set to {nocache,private,public,} to determine HTTP caching aspects
  1162. ; or leave this empty to avoid sending anti-caching headers.
  1163. ; http://www.php.net/manual/en/session.configuration.php#ini.session.cache-limiter
  1164. session.cache_limiter = nocache
  1165. ; Document expires after n minutes.
  1166. ; http://www.php.net/manual/en/session.configuration.php#ini.session.cache-expire
  1167. session.cache_expire = 180
  1168. ; trans sid support is disabled by default.
  1169. ; Use of trans sid may risk your users security.
  1170. ; Use this option with caution.
  1171. ; - User may send URL contains active session ID
  1172. ; to other person via. email/irc/etc.
  1173. ; - URL that contains active session ID may be stored
  1174. ; in publically accessible computer.
  1175. ; - User may access your site with the same session ID
  1176. ; always using URL stored in browser's history or bookmarks.
  1177. ; http://www.php.net/manual/en/session.configuration.php#ini.session.use-trans-sid
  1178. session.use_trans_sid = 0
  1179. ; Select a hash function for use in generating session ids.
  1180. ; Possible Values
  1181. ; 0 (MD5 128 bits)
  1182. ; 1 (SHA-1 160 bits)
  1183. ; http://www.php.net/manual/en/session.configuration.php#ini.session.hash-function
  1184. session.hash_function = 0
  1185. ; Define how many bits are stored in each character when converting
  1186. ; the binary hash data to something readable.
  1187. ; Possible values:
  1188. ; 4 (4 bits: 0-9, a-f)
  1189. ; 5 (5 bits: 0-9, a-v)
  1190. ; 6 (6 bits: 0-9, a-z, A-Z, "-", ",")
  1191. ; Default Value: 4
  1192. ; Development Value: 5
  1193. ; Production Value: 5
  1194. ; http://www.php.net/manual/en/session.configuration.php#ini.session.hash-bits-per-character
  1195. session.hash_bits_per_character = 5
  1196. ; The URL rewriter will look for URLs in a defined set of HTML tags.
  1197. ; form/fieldset are special; if you include them here, the rewriter will
  1198. ; add a hidden <input> field with the info which is otherwise appended
  1199. ; to URLs. If you want XHTML conformity, remove the form entry.
  1200. ; Note that all valid entries require a "=", even if no value follows.
  1201. ; Default Value: "a=href,area=href,frame=src,form=,fieldset="
  1202. ; Development Value: "a=href,area=href,frame=src,input=src,form=fakeentry"
  1203. ; Production Value: "a=href,area=href,frame=src,input=src,form=fakeentry"
  1204. ; http://www.php.net/manual/en/session.configuration.php#ini.url-rewriter.tags
  1205. url_rewriter.tags = "a=href,area=href,frame=src,input=src,form=fakeentry"
  1206. [MSSQL]
  1207. ; Allow or prevent persistent links.
  1208. mssql.allow_persistent = On
  1209. ; Maximum number of persistent links. -1 means no limit.
  1210. mssql.max_persistent = -1
  1211. ; Maximum number of links (persistent+non persistent). -1 means no limit.
  1212. mssql.max_links = -1
  1213. ; Minimum error severity to display.
  1214. mssql.min_error_severity = 10
  1215. ; Minimum message severity to display.
  1216. mssql.min_message_severity = 10
  1217. ; Compatibility mode with old versions of PHP 3.0.
  1218. mssql.compatability_mode = Off
  1219. ; Connect timeout
  1220. ;mssql.connect_timeout = 5
  1221. ; Query timeout
  1222. ;mssql.timeout = 60
  1223. ; Valid range 0 - 2147483647. Default = 4096.
  1224. ;mssql.textlimit = 4096
  1225. ; Valid range 0 - 2147483647. Default = 4096.
  1226. ;mssql.textsize = 4096
  1227. ; Limits the number of records in each batch. 0 = all records in one batch.
  1228. ;mssql.batchsize = 0
  1229. ; Specify how datetime and datetim4 columns are returned
  1230. ; On => Returns data converted to SQL server settings
  1231. ; Off => Returns values as YYYY-MM-DD hh:mm:ss
  1232. ;mssql.datetimeconvert = On
  1233. ; Use NT authentication when connecting to the server
  1234. mssql.secure_connection = Off
  1235. ; Specify max number of processes. -1 = library default
  1236. ; msdlib defaults to 25
  1237. ; FreeTDS defaults to 4096
  1238. ;mssql.max_procs = -1
  1239. ; Specify client character set.
  1240. ; If empty or not set the client charset from freetds.comf is used
  1241. ; This is only used when compiled with FreeTDS
  1242. ;mssql.charset = "ISO-8859-1"
  1243. [Assertion]
  1244. ; Assert(expr); active by default.
  1245. ; http://www.php.net/manual/en/info.configuration.php#ini.assert.active
  1246. ;assert.active = On
  1247. ; Issue a PHP warning for each failed assertion.
  1248. ; http://www.php.net/manual/en/info.configuration.php#ini.assert.warning
  1249. ;assert.warning = On
  1250. ; Don't bail out by default.
  1251. ; http://www.php.net/manual/en/info.configuration.php#ini.assert.bail
  1252. ;assert.bail = Off
  1253. ; User-function to be called if an assertion fails.
  1254. ; http://www.php.net/manual/en/info.configuration.php#ini.assert.callback
  1255. ;assert.callback = 0
  1256. ; Eval the expression with current error_reporting(). Set to true if you want
  1257. ; error_reporting(0) around the eval().
  1258. ; http://www.php.net/manual/en/info.configuration.php#ini.assert.quiet-eval
  1259. ;assert.quiet_eval = 0
  1260. [COM]
  1261. ; path to a file containing GUIDs, IIDs or filenames of files with TypeLibs
  1262. ; http://www.php.net/manual/en/com.configuration.php#ini.com.typelib-file
  1263. ;com.typelib_file =
  1264. ; allow Distributed-COM calls
  1265. ; http://www.php.net/manual/en/com.configuration.php#ini.com.allow-dcom
  1266. ;com.allow_dcom = true
  1267. ; autoregister constants of a components typlib on com_load()
  1268. ; http://www.php.net/manual/en/com.configuration.php#ini.com.autoregister-typelib
  1269. ;com.autoregister_typelib = true
  1270. ; register constants casesensitive
  1271. ; http://www.php.net/manual/en/com.configuration.php#ini.com.autoregister-casesensitive
  1272. ;com.autoregister_casesensitive = false
  1273. ; show warnings on duplicate constant registrations
  1274. ; http://www.php.net/manual/en/com.configuration.php#ini.com.autoregister-verbose
  1275. ;com.autoregister_verbose = true
  1276. [mbstring]
  1277. ; language for internal character representation.
  1278. ; http://www.php.net/manual/en/mbstring.configuration.php#ini.mbstring.language
  1279. ;mbstring.language = Japanese
  1280. ; internal/script encoding.
  1281. ; Some encoding cannot work as internal encoding.
  1282. ; (e.g. SJIS, BIG5, ISO-2022-*)
  1283. ; http://www.php.net/manual/en/mbstring.configuration.php#ini.mbstring.internal-encoding
  1284. ;mbstring.internal_encoding = EUC-JP
  1285. ; http input encoding.
  1286. ; http://www.php.net/manual/en/mbstring.configuration.php#ini.mbstring.http-input
  1287. ;mbstring.http_input = auto
  1288. ; http output encoding. mb_output_handler must be
  1289. ; registered as output buffer to function
  1290. ; http://www.php.net/manual/en/mbstring.configuration.php#ini.mbstring.http-output
  1291. ;mbstring.http_output = SJIS
  1292. ; enable automatic encoding translation according to
  1293. ; mbstring.internal_encoding setting. Input chars are
  1294. ; converted to internal encoding by setting this to On.
  1295. ; Note: Do _not_ use automatic encoding translation for
  1296. ; portable libs/applications.
  1297. ; http://www.php.net/manual/en/mbstring.configuration.php#ini.mbstring.encoding-translation
  1298. ;mbstring.encoding_translation = Off
  1299. ; automatic encoding detection order.
  1300. ; auto means
  1301. ; http://www.php.net/manual/en/mbstring.configuration.php#ini.mbstring.detect-order
  1302. ;mbstring.detect_order = auto
  1303. ; substitute_character used when character cannot be converted
  1304. ; one from another
  1305. ; http://www.php.net/manual/en/mbstring.configuration.php#ini.mbstring.substitute-character
  1306. ;mbstring.substitute_character = none;
  1307. ; overload(replace) single byte functions by mbstring functions.
  1308. ; mail(), ereg(), etc are overloaded by mb_send_mail(), mb_ereg(),
  1309. ; etc. Possible values are 0,1,2,4 or combination of them.
  1310. ; For example, 7 for overload everything.
  1311. ; 0: No overload
  1312. ; 1: Overload mail() function
  1313. ; 2: Overload str*() functions
  1314. ; 4: Overload ereg*() functions
  1315. ; http://www.php.net/manual/en/mbstring.configuration.php#ini.mbstring.func-overload
  1316. ;mbstring.func_overload = 0
  1317. ; enable strict encoding detection.
  1318. ;mbstring.strict_detection = Off
  1319. ; This directive specifies the regex pattern of content types for which mb_output_handler()
  1320. ; is activated.
  1321. ; Default: mbstring.http_output_conv_mimetype=^(text/|application/xhtml\+xml)
  1322. ;mbstring.http_output_conv_mimetype=
  1323. [gd]
  1324. ; Tell the jpeg decode to ignore warnings and try to create
  1325. ; a gd image. The warning will then be displayed as notices
  1326. ; disabled by default
  1327. ; http://www.php.net/manual/en/image.configuration.php#ini.image.jpeg-ignore-warning
  1328. ;gd.jpeg_ignore_warning = 0
  1329. [exif]
  1330. ; Exif UNICODE user comments are handled as UCS-2BE/UCS-2LE and JIS as JIS.
  1331. ; With mbstring support this will automatically be converted into the encoding
  1332. ; given by corresponding encode setting. When empty mbstring.internal_encoding
  1333. ; is used. For the decode settings you can distinguish between motorola and
  1334. ; intel byte order. A decode setting cannot be empty.
  1335. ; http://www.php.net/manual/en/exif.configuration.php#ini.exif.encode-unicode
  1336. ;exif.encode_unicode = ISO-8859-15
  1337. ; http://www.php.net/manual/en/exif.configuration.php#ini.exif.decode-unicode-motorola
  1338. ;exif.decode_unicode_motorola = UCS-2BE
  1339. ; http://www.php.net/manual/en/exif.configuration.php#ini.exif.decode-unicode-intel
  1340. ;exif.decode_unicode_intel = UCS-2LE
  1341. ; http://www.php.net/manual/en/exif.configuration.php#ini.exif.encode-jis
  1342. ;exif.encode_jis =
  1343. ; http://www.php.net/manual/en/exif.configuration.php#ini.exif.decode-jis-motorola
  1344. ;exif.decode_jis_motorola = JIS
  1345. ; http://www.php.net/manual/en/exif.configuration.php#ini.exif.decode-jis-intel
  1346. ;exif.decode_jis_intel = JIS
  1347. [Tidy]
  1348. ; The path to a default tidy configuration file to use when using tidy
  1349. ; http://www.php.net/manual/en/tidy.configuration.php#ini.tidy.default-config
  1350. ;tidy.default_config = /usr/local/lib/php/default.tcfg
  1351. ; Should tidy clean and repair output automatically?
  1352. ; WARNING: Do not use this option if you are generating non-html content
  1353. ; such as dynamic images
  1354. ; http://www.php.net/manual/en/tidy.configuration.php#ini.tidy.clean-output
  1355. tidy.clean_output = Off
  1356. [soap]
  1357. ; Enables or disables WSDL caching feature.
  1358. ; http://www.php.net/manual/en/soap.configuration.php#ini.soap.wsdl-cache-enabled
  1359. soap.wsdl_cache_enabled=1
  1360. ; Sets the directory name where SOAP extension will put cache files.
  1361. ; http://www.php.net/manual/en/soap.configuration.php#ini.soap.wsdl-cache-dir
  1362. soap.wsdl_cache_dir="/tmp"
  1363. ; (time to live) Sets the number of second while cached file will be used
  1364. ; instead of original one.
  1365. ; http://www.php.net/manual/en/soap.configuration.php#ini.soap.wsdl-cache-ttl
  1366. soap.wsdl_cache_ttl=86400
  1367. [sysvshm]
  1368. ; A default size of the shared memory segment
  1369. ;sysvshm.init_mem = 10000
  1370. ; Local Variables:
  1371. ; tab-width: 4
  1372. ; End: