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.

1272 lines
44 KiB

22 years ago
22 years ago
22 years ago
22 years ago
22 years ago
22 years ago
20 years ago
24 years ago
22 years ago
22 years ago
22 years ago
22 years ago
22 years ago
20 years ago
22 years ago
22 years ago
21 years ago
20 years ago
20 years ago
20 years ago
20 years ago
20 years ago
20 years ago
20 years ago
20 years ago
20 years ago
20 years ago
20 years ago
20 years ago
19 years ago
20 years ago
19 years ago
20 years ago
19 years ago
20 years ago
19 years ago
20 years ago
20 years ago
20 years ago
22 years ago
22 years ago
20 years ago
20 years ago
21 years ago
  1. [PHP]
  2. ;;;;;;;;;;;;;;;;;;;
  3. ; About php.ini ;
  4. ;;;;;;;;;;;;;;;;;;;
  5. ; This file controls many aspects of PHP's behavior. In order for PHP to
  6. ; read it, it must be named 'php.ini'. PHP looks for it in the current
  7. ; working directory, in the path designated by the environment variable
  8. ; PHPRC, and in the path that was defined in compile time (in that order).
  9. ; Under Windows, the compile-time path is the Windows directory. The
  10. ; path in which the php.ini file is looked for can be overridden using
  11. ; the -c argument in command line mode.
  12. ;
  13. ; The syntax of the file is extremely simple. Whitespace and Lines
  14. ; beginning with a semicolon are silently ignored (as you probably guessed).
  15. ; Section headers (e.g. [Foo]) are also silently ignored, even though
  16. ; they might mean something in the future.
  17. ;
  18. ; Directives are specified using the following syntax:
  19. ; directive = value
  20. ; Directive names are *case sensitive* - foo=bar is different from FOO=bar.
  21. ;
  22. ; The value can be a string, a number, a PHP constant (e.g. E_ALL or M_PI), one
  23. ; of the INI constants (On, Off, True, False, Yes, No and None) or an expression
  24. ; (e.g. E_ALL & ~E_NOTICE), or a quoted string ("foo").
  25. ;
  26. ; Expressions in the INI file are limited to bitwise operators and parentheses:
  27. ; | bitwise OR
  28. ; & bitwise AND
  29. ; ~ bitwise NOT
  30. ; ! boolean NOT
  31. ;
  32. ; Boolean flags can be turned on using the values 1, On, True or Yes.
  33. ; They can be turned off using the values 0, Off, False or No.
  34. ;
  35. ; An empty string can be denoted by simply not writing anything after the equal
  36. ; sign, or by using the None keyword:
  37. ;
  38. ; foo = ; sets foo to an empty string
  39. ; foo = none ; sets foo to an empty string
  40. ; foo = "none" ; sets foo to the string 'none'
  41. ;
  42. ; If you use constants in your value, and these constants belong to a
  43. ; dynamically loaded extension (either a PHP extension or a Zend extension),
  44. ; you may only use these constants *after* the line that loads the extension.
  45. ;
  46. ;
  47. ;;;;;;;;;;;;;;;;;;;
  48. ; About this file ;
  49. ;;;;;;;;;;;;;;;;;;;
  50. ; This is the recommended, PHP 5-style version of the php.ini-dist file. It
  51. ; sets some non standard settings, that make PHP more efficient, more secure,
  52. ; and encourage cleaner coding.
  53. ;
  54. ; The price is that with these settings, PHP may be incompatible with some
  55. ; applications, and sometimes, more difficult to develop with. Using this
  56. ; file is warmly recommended for production sites. As all of the changes from
  57. ; the standard settings are thoroughly documented, you can go over each one,
  58. ; and decide whether you want to use it or not.
  59. ;
  60. ; For general information about the php.ini file, please consult the php.ini-dist
  61. ; file, included in your PHP distribution.
  62. ;
  63. ; This file is different from the php.ini-dist file in the fact that it features
  64. ; different values for several directives, in order to improve performance, while
  65. ; possibly breaking compatibility with the standard out-of-the-box behavior of
  66. ; PHP. Please make sure you read what's different, and modify your scripts
  67. ; accordingly, if you decide to use this file instead.
  68. ;
  69. ; - display_errors = Off [Security]
  70. ; With this directive set to off, errors that occur during the execution of
  71. ; scripts will no longer be displayed as a part of the script output, and thus,
  72. ; will no longer be exposed to remote users. With some errors, the error message
  73. ; content may expose information about your script, web server, or database
  74. ; server that may be exploitable for hacking. Production sites should have this
  75. ; directive set to off.
  76. ; - log_errors = On [Security]
  77. ; This directive complements the above one. Any errors that occur during the
  78. ; execution of your script will be logged (typically, to your server's error log,
  79. ; but can be configured in several ways). Along with setting display_errors to off,
  80. ; this setup gives you the ability to fully understand what may have gone wrong,
  81. ; without exposing any sensitive information to remote users.
  82. ; - output_buffering = 4096 [Performance]
  83. ; Set a 4KB output buffer. Enabling output buffering typically results in less
  84. ; writes, and sometimes less packets sent on the wire, which can often lead to
  85. ; better performance. The gain this directive actually yields greatly depends
  86. ; on which Web server you're working with, and what kind of scripts you're using.
  87. ; - register_argc_argv = Off [Performance]
  88. ; Disables registration of the somewhat redundant $argv and $argc global
  89. ; variables.
  90. ; - variables_order = "GPCS" [Performance]
  91. ; The environment variables are not hashed into the $_ENV. To access
  92. ; environment variables, you can use getenv() instead.
  93. ; - error_reporting = E_ALL [Code Cleanliness, Security(?)]
  94. ; By default, PHP suppresses errors of type E_NOTICE. These error messages
  95. ; are emitted for non-critical errors, but that could be a symptom of a bigger
  96. ; problem. Most notably, this will cause error messages about the use
  97. ; of uninitialized variables to be displayed.
  98. ; - short_open_tag = Off [Portability]
  99. ; Using short tags is discouraged when developing code meant for redistribution
  100. ; since short tags may not be supported on the target server.
  101. ;;;;;;;;;;;;;;;;;;;;
  102. ; php.ini Options ;
  103. ;;;;;;;;;;;;;;;;;;;;
  104. ; Name for user-defined php.ini (.htaccess) files. Default is ".user.ini"
  105. ;user_ini.filename = ".user.ini"
  106. ; To disable this feature set this option to empty value
  107. ;user_ini.filename =
  108. ; TTL for user-defined php.ini files (time-to-live) in seconds. Default is 300 seconds (5 minutes)
  109. ;user_ini.cache_ttl = 300
  110. ;;;;;;;;;;;;;;;;;;;;
  111. ; Language Options ;
  112. ;;;;;;;;;;;;;;;;;;;;
  113. ; Enable the PHP scripting language engine under Apache.
  114. engine = On
  115. ; Allow the <? tag. Otherwise, only <?php and <script> tags are recognized.
  116. ; NOTE: Using short tags should be avoided when developing applications or
  117. ; libraries that are meant for redistribution, or deployment on PHP
  118. ; servers which are not under your control, because short tags may not
  119. ; be supported on the target server. For portable, redistributable code,
  120. ; be sure not to use short tags.
  121. short_open_tag = Off
  122. ; The number of significant digits displayed in floating point numbers.
  123. precision = 14
  124. ; Enforce year 2000 compliance (will cause problems with non-compliant browsers)
  125. y2k_compliance = On
  126. ; Output buffering allows you to send header lines (including cookies) even
  127. ; after you send body content, at the price of slowing PHP's output layer a
  128. ; bit. You can enable output buffering during runtime by calling the output
  129. ; buffering functions. You can also enable output buffering for all files by
  130. ; setting this directive to On. If you wish to limit the size of the buffer
  131. ; to a certain size - you can use a maximum number of bytes instead of 'On', as
  132. ; a value for this directive (e.g., output_buffering=4096).
  133. output_buffering = 4096
  134. ; You can redirect all of the output of your scripts to a function. For
  135. ; example, if you set output_handler to "mb_output_handler", character
  136. ; encoding will be transparently converted to the specified encoding.
  137. ; Setting any output handler automatically turns on output buffering.
  138. ; Note: People who wrote portable scripts should not depend on this ini
  139. ; directive. Instead, explicitly set the output handler using ob_start().
  140. ; Using this ini directive may cause problems unless you know what script
  141. ; is doing.
  142. ; Note: You cannot use both "mb_output_handler" with "ob_iconv_handler"
  143. ; and you cannot use both "ob_gzhandler" and "zlib.output_compression".
  144. ; Note: output_handler must be empty if this is set 'On' !!!!
  145. ; Instead you must use zlib.output_handler.
  146. ;output_handler =
  147. ; Transparent output compression using the zlib library
  148. ; Valid values for this option are 'off', 'on', or a specific buffer size
  149. ; to be used for compression (default is 4KB)
  150. ; Note: Resulting chunk size may vary due to nature of compression. PHP
  151. ; outputs chunks that are few hundreds bytes each as a result of
  152. ; compression. If you prefer a larger chunk size for better
  153. ; performance, enable output_buffering in addition.
  154. ; Note: You need to use zlib.output_handler instead of the standard
  155. ; output_handler, or otherwise the output will be corrupted.
  156. zlib.output_compression = Off
  157. ;zlib.output_compression_level = -1
  158. ; You cannot specify additional output handlers if zlib.output_compression
  159. ; is activated here. This setting does the same as output_handler but in
  160. ; a different order.
  161. ;zlib.output_handler =
  162. ; Implicit flush tells PHP to tell the output layer to flush itself
  163. ; automatically after every output block. This is equivalent to calling the
  164. ; PHP function flush() after each and every call to print() or echo() and each
  165. ; and every HTML block. Turning this option on has serious performance
  166. ; implications and is generally recommended for debugging purposes only.
  167. implicit_flush = Off
  168. ; The unserialize callback function will be called (with the undefined class'
  169. ; name as parameter), if the unserializer finds an undefined class
  170. ; which should be instantiated.
  171. ; A warning appears if the specified function is not defined, or if the
  172. ; function doesn't include/implement the missing class.
  173. ; So only set this entry, if you really want to implement such a
  174. ; callback-function.
  175. unserialize_callback_func=
  176. ; When floats & doubles are serialized store serialize_precision significant
  177. ; digits after the floating point. The default value ensures that when floats
  178. ; are decoded with unserialize, the data will remain the same.
  179. serialize_precision = 100
  180. ; open_basedir, if set, limits all file operations to the defined directory
  181. ; and below. This directive makes most sense if used in a per-directory
  182. ; or per-virtualhost web server configuration file. This directive is
  183. ; *NOT* affected by whether Safe Mode is turned On or Off.
  184. ;open_basedir =
  185. ; This directive allows you to disable certain functions for security reasons.
  186. ; It receives a comma-delimited list of function names. This directive is
  187. ; *NOT* affected by whether Safe Mode is turned On or Off.
  188. disable_functions =
  189. ; This directive allows you to disable certain classes for security reasons.
  190. ; It receives a comma-delimited list of class names. This directive is
  191. ; *NOT* affected by whether Safe Mode is turned On or Off.
  192. disable_classes =
  193. ; Colors for Syntax Highlighting mode. Anything that's acceptable in
  194. ; <span style="color: ???????"> would work.
  195. ;highlight.string = #DD0000
  196. ;highlight.comment = #FF9900
  197. ;highlight.keyword = #007700
  198. ;highlight.default = #0000BB
  199. ;highlight.html = #000000
  200. ; If enabled, the request will be allowed to complete even if the user aborts
  201. ; the request. Consider enabling it if executing long request, which may end up
  202. ; being interrupted by the user or a browser timing out.
  203. ; ignore_user_abort = On
  204. ; Determines the size of the realpath cache to be used by PHP. This value should
  205. ; be increased on systems where PHP opens many files to reflect the quantity of
  206. ; the file operations performed.
  207. ; realpath_cache_size=16k
  208. ; Duration of time, in seconds for which to cache realpath information for a given
  209. ; file or directory. For systems with rarely changing files, consider increasing this
  210. ; value.
  211. ; realpath_cache_ttl=120
  212. ;
  213. ; Misc
  214. ;
  215. ; Decides whether PHP may expose the fact that it is installed on the server
  216. ; (e.g. by adding its signature to the Web server header). It is no security
  217. ; threat in any way, but it makes it possible to determine whether you use PHP
  218. ; on your server or not.
  219. expose_php = On
  220. ;;;;;;;;;;;;;;;;;;;
  221. ; Resource Limits ;
  222. ;;;;;;;;;;;;;;;;;;;
  223. max_execution_time = 30 ; Maximum execution time of each script, in seconds
  224. max_input_time = 60 ; Maximum amount of time each script may spend parsing request data
  225. ;max_input_nesting_level = 64 ; Maximum input variable nesting level
  226. memory_limit = 128M ; Maximum amount of memory a script may consume (128M)
  227. ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
  228. ; Error handling and logging ;
  229. ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
  230. ; error_reporting is a bit-field. Or each number up to get desired error
  231. ; reporting level
  232. ; E_ALL - All errors and warnings (doesn't include E_STRICT)
  233. ; E_ERROR - fatal run-time errors
  234. ; E_RECOVERABLE_ERROR - almost fatal run-time errors
  235. ; E_WARNING - run-time warnings (non-fatal errors)
  236. ; E_PARSE - compile-time parse errors
  237. ; E_NOTICE - run-time notices (these are warnings which often result
  238. ; from a bug in your code, but it's possible that it was
  239. ; intentional (e.g., using an uninitialized variable and
  240. ; relying on the fact it's automatically initialized to an
  241. ; empty string)
  242. ; E_STRICT - run-time notices, enable to have PHP suggest changes
  243. ; to your code which will ensure the best interoperability
  244. ; and forward compatibility of your code
  245. ; E_CORE_ERROR - fatal errors that occur during PHP's initial startup
  246. ; E_CORE_WARNING - warnings (non-fatal errors) that occur during PHP's
  247. ; initial startup
  248. ; E_COMPILE_ERROR - fatal compile-time errors
  249. ; E_COMPILE_WARNING - compile-time warnings (non-fatal errors)
  250. ; E_USER_ERROR - user-generated error message
  251. ; E_USER_WARNING - user-generated warning message
  252. ; E_USER_NOTICE - user-generated notice message
  253. ; E_DEPRECATED - warn about code that will not work in future versions
  254. ; of PHP
  255. ; E_USER_DEPRECATED - user-generated deprecation warnings
  256. ;
  257. ; Examples:
  258. ;
  259. ; - Show all errors, except for notices and coding standards warnings
  260. ;
  261. ;error_reporting = E_ALL & ~E_NOTICE
  262. ;
  263. ; - Show all errors, except for notices
  264. ;
  265. ;error_reporting = E_ALL & ~E_NOTICE | E_STRICT
  266. ;
  267. ; - Show only errors
  268. ;
  269. ;error_reporting = E_COMPILE_ERROR|E_RECOVERABLE_ERROR|E_ERROR|E_CORE_ERROR
  270. ;
  271. ; - Show all errors, except coding standards warnings
  272. ;
  273. error_reporting = E_ALL
  274. ; Print out errors (as a part of the output). For production web sites,
  275. ; you're strongly encouraged to turn this feature off, and use error logging
  276. ; instead (see below). Keeping display_errors enabled on a production web site
  277. ; may reveal security information to end users, such as file paths on your Web
  278. ; server, your database schema or other information.
  279. ;
  280. ; possible values for display_errors:
  281. ;
  282. ; Off - Do not display any errors
  283. ; stderr - Display errors to STDERR (affects only CGI/CLI binaries!)
  284. ; On or stdout - Display errors to STDOUT (default)
  285. ;
  286. ; To output errors to STDERR with CGI/CLI:
  287. ;display_errors = "stderr"
  288. ;
  289. ; Default
  290. ;
  291. display_errors = Off
  292. ; Even when display_errors is on, errors that occur during PHP's startup
  293. ; sequence are not displayed. It's strongly recommended to keep
  294. ; display_startup_errors off, except for when debugging.
  295. display_startup_errors = Off
  296. ; Log errors into a log file (server-specific log, stderr, or error_log (below))
  297. ; As stated above, you're strongly advised to use error logging in place of
  298. ; error displaying on production web sites.
  299. log_errors = On
  300. ; Set maximum length of log_errors. In error_log information about the source is
  301. ; added. The default is 1024 and 0 allows to not apply any maximum length at all.
  302. log_errors_max_len = 1024
  303. ; Do not log repeated messages. Repeated errors must occur in same file on same
  304. ; line until ignore_repeated_source is set true.
  305. ignore_repeated_errors = Off
  306. ; Ignore source of message when ignoring repeated messages. When this setting
  307. ; is On you will not log errors with repeated messages from different files or
  308. ; source lines.
  309. ignore_repeated_source = Off
  310. ; If this parameter is set to Off, then memory leaks will not be shown (on
  311. ; stdout or in the log). This has only effect in a debug compile, and if
  312. ; error reporting includes E_WARNING in the allowed list
  313. report_memleaks = On
  314. ;report_zend_debug = 0
  315. ; Store the last error/warning message in $php_errormsg (boolean).
  316. track_errors = Off
  317. ; Disable the inclusion of HTML tags in error messages.
  318. ; Note: Never use this feature for production boxes.
  319. ;html_errors = Off
  320. ; If html_errors is set On PHP produces clickable error messages that direct
  321. ; to a page describing the error or function causing the error in detail.
  322. ; You can download a copy of the PHP manual from http://www.php.net/docs.php
  323. ; and change docref_root to the base URL of your local copy including the
  324. ; leading '/'. You must also specify the file extension being used including
  325. ; the dot.
  326. ; Note: Never use this feature for production boxes.
  327. ;docref_root = "/phpmanual/"
  328. ;docref_ext = .html
  329. ; String to output before an error message.
  330. ;error_prepend_string = "<font color=#ff0000>"
  331. ; String to output after an error message.
  332. ;error_append_string = "</font>"
  333. ; Log errors to specified file.
  334. ;error_log = filename
  335. ; Log errors to syslog (Event Log on NT, not valid in Windows 95).
  336. ;error_log = syslog
  337. ;;;;;;;;;;;;;;;;;
  338. ; Data Handling ;
  339. ;;;;;;;;;;;;;;;;;
  340. ;
  341. ; Note - track_vars is ALWAYS enabled as of PHP 4.0.3
  342. ; The separator used in PHP generated URLs to separate arguments.
  343. ; Default is "&".
  344. ;arg_separator.output = "&amp;"
  345. ; List of separator(s) used by PHP to parse input URLs into variables.
  346. ; Default is "&".
  347. ; NOTE: Every character in this directive is considered as separator!
  348. ;arg_separator.input = ";&"
  349. ; This directive describes the order in which PHP registers GET, POST, Cookie,
  350. ; Environment and Built-in variables (G, P, C, E & S respectively, often
  351. ; referred to as EGPCS or GPC). Registration is done from left to right, newer
  352. ; values override older values.
  353. variables_order = "GPCS"
  354. ; This directive describes the order in which PHP registers GET, POST and Cookie
  355. ; variables into the _REQUEST array. Registration is done from left to right,
  356. ; newer values override older values.
  357. ; If this directive is not set, variables_order is used for _REQUEST contents.
  358. request_order = "GP"
  359. ; This directive tells PHP whether to declare the argv&argc variables (that
  360. ; would contain the GET information). If you don't use these variables, you
  361. ; should turn it off for increased performance.
  362. register_argc_argv = Off
  363. ; When enabled, the SERVER and ENV variables are created when they're first
  364. ; used (Just In Time) instead of when the script starts. If these variables
  365. ; are not used within a script, having this directive on will result in a
  366. ; performance gain. The PHP directive register_argc_argv must be disabled
  367. ; for this directive to have any affect.
  368. auto_globals_jit = On
  369. ; Maximum size of POST data that PHP will accept.
  370. post_max_size = 8M
  371. ; Automatically add files before or after any PHP document.
  372. auto_prepend_file =
  373. auto_append_file =
  374. ; As of 4.0b4, PHP always outputs a character encoding by default in
  375. ; the Content-type: header. To disable sending of the charset, simply
  376. ; set it to be empty.
  377. ;
  378. ; PHP's built-in default is text/html
  379. default_mimetype = "text/html"
  380. ;default_charset = "iso-8859-1"
  381. ; Always populate the $HTTP_RAW_POST_DATA variable.
  382. ;always_populate_raw_post_data = On
  383. ;;;;;;;;;;;;;;;;;;;;
  384. ; Unicode settings ;
  385. ;;;;;;;;;;;;;;;;;;;;
  386. unicode.semantics = off
  387. unicode.runtime_encoding = iso-8859-1
  388. unicode.script_encoding = utf-8
  389. unicode.output_encoding = utf-8
  390. unicode.from_error_mode = U_INVALID_SUBSTITUTE
  391. unicode.from_error_subst_char = 3f
  392. ;;;;;;;;;;;;;;;;;;;;;;;;;
  393. ; Paths and Directories ;
  394. ;;;;;;;;;;;;;;;;;;;;;;;;;
  395. ; UNIX: "/path1:/path2"
  396. ;include_path = ".:/php/includes"
  397. ;
  398. ; Windows: "\path1;\path2"
  399. ;include_path = ".;c:\php\includes"
  400. ; The root of the PHP pages, used only if nonempty.
  401. ; if PHP was not compiled with FORCE_REDIRECT, you SHOULD set doc_root
  402. ; if you are running php as a CGI under any web server (other than IIS)
  403. ; see documentation for security issues. The alternate is to use the
  404. ; cgi.force_redirect configuration below
  405. doc_root =
  406. ; The directory under which PHP opens the script using /~username used only
  407. ; if nonempty.
  408. user_dir =
  409. ; Directory in which the loadable extensions (modules) reside.
  410. extension_dir = "./"
  411. ; cgi.force_redirect is necessary to provide security running PHP as a CGI under
  412. ; most web servers. Left undefined, PHP turns this on by default. You can
  413. ; turn it off here AT YOUR OWN RISK
  414. ; **You CAN safely turn this off for IIS, in fact, you MUST.**
  415. ; cgi.force_redirect = 1
  416. ; if cgi.nph is enabled it will force cgi to always sent Status: 200 with
  417. ; every request.
  418. ; cgi.nph = 1
  419. ; if cgi.force_redirect is turned on, and you are not running under Apache or Netscape
  420. ; (iPlanet) web servers, you MAY need to set an environment variable name that PHP
  421. ; will look for to know it is OK to continue execution. Setting this variable MAY
  422. ; cause security issues, KNOW WHAT YOU ARE DOING FIRST.
  423. ; cgi.redirect_status_env = ;
  424. ; cgi.fix_pathinfo provides *real* PATH_INFO/PATH_TRANSLATED support for CGI. PHP's
  425. ; previous behaviour was to set PATH_TRANSLATED to SCRIPT_FILENAME, and to not grok
  426. ; what PATH_INFO is. For more information on PATH_INFO, see the cgi specs. Setting
  427. ; this to 1 will cause PHP CGI to fix it's paths to conform to the spec. A setting
  428. ; of zero causes PHP to behave as before. Default is 1. You should fix your scripts
  429. ; to use SCRIPT_FILENAME rather than PATH_TRANSLATED.
  430. ; cgi.fix_pathinfo=1
  431. ; FastCGI under IIS (on WINNT based OS) supports the ability to impersonate
  432. ; security tokens of the calling client. This allows IIS to define the
  433. ; security context that the request runs under. mod_fastcgi under Apache
  434. ; does not currently support this feature (03/17/2002)
  435. ; Set to 1 if running under IIS. Default is zero.
  436. ; fastcgi.impersonate = 1;
  437. ; Disable logging through FastCGI connection
  438. ; fastcgi.logging = 0
  439. ; cgi.rfc2616_headers configuration option tells PHP what type of headers to
  440. ; use when sending HTTP response code. If it's set 0 PHP sends Status: header that
  441. ; is supported by Apache. When this option is set to 1 PHP will send
  442. ; RFC2616 compliant header.
  443. ; Default is zero.
  444. ;cgi.rfc2616_headers = 0
  445. ;;;;;;;;;;;;;;;;
  446. ; File Uploads ;
  447. ;;;;;;;;;;;;;;;;
  448. ; Whether to allow HTTP file uploads.
  449. file_uploads = On
  450. ; Temporary directory for HTTP uploaded files (will use system default if not
  451. ; specified).
  452. ;upload_tmp_dir =
  453. ; Maximum allowed size for uploaded files.
  454. upload_max_filesize = 2M
  455. ;;;;;;;;;;;;;;;;;;
  456. ; Fopen wrappers ;
  457. ;;;;;;;;;;;;;;;;;;
  458. ; Whether to allow the treatment of URLs (like http:// or ftp://) as files.
  459. allow_url_fopen = On
  460. ; Whether to allow code execution through URL wrappers
  461. allow_url_include = Off
  462. ; Define the anonymous ftp password (your email address)
  463. ;from="john@doe.com"
  464. ; Define the User-Agent string
  465. ; user_agent="PHP"
  466. ; Default timeout for socket based streams (seconds)
  467. default_socket_timeout = 60
  468. ; If your scripts have to deal with files from Macintosh systems,
  469. ; or you are running on a Mac and need to deal with files from
  470. ; unix or win32 systems, setting this flag will cause PHP to
  471. ; automatically detect the EOL character in those files so that
  472. ; fgets() and file() will work regardless of the source of the file.
  473. ; auto_detect_line_endings = Off
  474. ;;;;;;;;;;;;;;;;;;;;;;
  475. ; Dynamic Extensions ;
  476. ;;;;;;;;;;;;;;;;;;;;;;
  477. ;
  478. ; If you wish to have an extension loaded automatically, use the following
  479. ; syntax:
  480. ;
  481. ; extension=modulename.extension
  482. ;
  483. ; For example, on Windows:
  484. ;
  485. ; extension=msql.dll
  486. ;
  487. ; ... or under UNIX:
  488. ;
  489. ; extension=msql.so
  490. ;
  491. ; Note that it should be the name of the module only; no directory information
  492. ; needs to go here. Specify the location of the extension with the
  493. ; extension_dir directive above.
  494. ; Windows Extensions
  495. ; Note that ODBC support is built in, so no dll is needed for it.
  496. ; Note that many DLL files are located in the extensions/ (PHP 4) ext/ (PHP 5)
  497. ; extension folders as well as the separate PECL DLL download (PHP 5).
  498. ; Be sure to appropriately set the extension_dir directive.
  499. ;extension=php_bz2.dll
  500. ;extension=php_curl.dll
  501. ;extension=php_dba.dll
  502. ;extension=php_dbase.dll
  503. ;extension=php_exif.dll
  504. ;extension=php_fdf.dll
  505. ;extension=php_gd2.dll
  506. ;extension=php_gettext.dll
  507. ;extension=php_gmp.dll
  508. ;extension=php_ifx.dll
  509. ;extension=php_imap.dll
  510. ;extension=php_interbase.dll
  511. ;extension=php_ldap.dll
  512. ;extension=php_mbstring.dll
  513. ;extension=php_mcrypt.dll
  514. ;extension=php_mhash.dll
  515. ;extension=php_mime_magic.dll
  516. ;extension=php_ming.dll
  517. ;extension=php_msql.dll
  518. ;extension=php_mssql.dll
  519. ;extension=php_mysql.dll
  520. ;extension=php_mysqli.dll
  521. ;extension=php_oci8.dll
  522. ;extension=php_openssl.dll
  523. ;extension=php_pdo.dll
  524. ;extension=php_pdo_firebird.dll
  525. ;extension=php_pdo_mssql.dll
  526. ;extension=php_pdo_mysql.dll
  527. ;extension=php_pdo_oci.dll
  528. ;extension=php_pdo_oci8.dll
  529. ;extension=php_pdo_odbc.dll
  530. ;extension=php_pdo_pgsql.dll
  531. ;extension=php_pdo_sqlite.dll
  532. ;extension=php_pgsql.dll
  533. ;extension=php_pspell.dll
  534. ;extension=php_shmop.dll
  535. ;extension=php_snmp.dll
  536. ;extension=php_soap.dll
  537. ;extension=php_sockets.dll
  538. ;extension=php_sqlite.dll
  539. ;extension=php_sybase_ct.dll
  540. ;extension=php_tidy.dll
  541. ;extension=php_xmlrpc.dll
  542. ;extension=php_xsl.dll
  543. ;extension=php_zip.dll
  544. ;;;;;;;;;;;;;;;;;;;
  545. ; Module Settings ;
  546. ;;;;;;;;;;;;;;;;;;;
  547. [Date]
  548. ; Defines the default timezone used by the date functions
  549. ;date.timezone =
  550. ;date.default_latitude = 31.7667
  551. ;date.default_longitude = 35.2333
  552. ;date.sunrise_zenith = 90.583333
  553. ;date.sunset_zenith = 90.583333
  554. [filter]
  555. ;filter.default = unsafe_raw
  556. ;filter.default_flags =
  557. [iconv]
  558. ;iconv.input_encoding = ISO-8859-1
  559. ;iconv.internal_encoding = ISO-8859-1
  560. ;iconv.output_encoding = ISO-8859-1
  561. [sqlite]
  562. ;sqlite.assoc_case = 0
  563. [xmlrpc]
  564. ;xmlrpc_error_number = 0
  565. ;xmlrpc_errors = 0
  566. [Pcre]
  567. ;PCRE library backtracking limit.
  568. ;pcre.backtrack_limit=100000
  569. ;PCRE library recursion limit.
  570. ;Please note that if you set this value to a high number you may consume all
  571. ;the available process stack and eventually crash PHP (due to reaching the
  572. ;stack size limit imposed by the Operating System).
  573. ;pcre.recursion_limit=100000
  574. [Syslog]
  575. ; Whether or not to define the various syslog variables (e.g. $LOG_PID,
  576. ; $LOG_CRON, etc.). Turning it off is a good idea performance-wise. In
  577. ; runtime, you can define these variables by calling define_syslog_variables().
  578. define_syslog_variables = Off
  579. [mail function]
  580. ; For Win32 only.
  581. SMTP = localhost
  582. smtp_port = 25
  583. ; For Win32 only.
  584. ;sendmail_from = me@example.com
  585. ; For Unix only. You may supply arguments as well (default: "sendmail -t -i").
  586. ;sendmail_path =
  587. ; Force the addition of the specified parameters to be passed as extra parameters
  588. ; to the sendmail binary. These parameters will always replace the value of
  589. ; the 5th parameter to mail(), even in safe mode.
  590. ;mail.force_extra_parameters =
  591. [SQL]
  592. sql.safe_mode = Off
  593. [ODBC]
  594. ;odbc.default_db = Not yet implemented
  595. ;odbc.default_user = Not yet implemented
  596. ;odbc.default_pw = Not yet implemented
  597. ; Allow or prevent persistent links.
  598. odbc.allow_persistent = On
  599. ; Check that a connection is still valid before reuse.
  600. odbc.check_persistent = On
  601. ; Maximum number of persistent links. -1 means no limit.
  602. odbc.max_persistent = -1
  603. ; Maximum number of links (persistent + non-persistent). -1 means no limit.
  604. odbc.max_links = -1
  605. ; Handling of LONG fields. Returns number of bytes to variables. 0 means
  606. ; passthru.
  607. odbc.defaultlrl = 4096
  608. ; Handling of binary data. 0 means passthru, 1 return as is, 2 convert to char.
  609. ; See the documentation on odbc_binmode and odbc_longreadlen for an explanation
  610. ; of uodbc.defaultlrl and uodbc.defaultbinmode
  611. odbc.defaultbinmode = 1
  612. [MySQL]
  613. ; Allow or prevent persistent links.
  614. mysql.allow_persistent = On
  615. ; Maximum number of persistent links. -1 means no limit.
  616. mysql.max_persistent = -1
  617. ; Maximum number of links (persistent + non-persistent). -1 means no limit.
  618. mysql.max_links = -1
  619. ; Default port number for mysql_connect(). If unset, mysql_connect() will use
  620. ; the $MYSQL_TCP_PORT or the mysql-tcp entry in /etc/services or the
  621. ; compile-time value defined MYSQL_PORT (in that order). Win32 will only look
  622. ; at MYSQL_PORT.
  623. mysql.default_port =
  624. ; Default socket name for local MySQL connects. If empty, uses the built-in
  625. ; MySQL defaults.
  626. mysql.default_socket =
  627. ; Default host for mysql_connect() (doesn't apply in safe mode).
  628. mysql.default_host =
  629. ; Default user for mysql_connect() (doesn't apply in safe mode).
  630. mysql.default_user =
  631. ; Default password for mysql_connect() (doesn't apply in safe mode).
  632. ; Note that this is generally a *bad* idea to store passwords in this file.
  633. ; *Any* user with PHP access can run 'echo get_cfg_var("mysql.default_password")
  634. ; and reveal this password! And of course, any users with read access to this
  635. ; file will be able to reveal the password as well.
  636. mysql.default_password =
  637. ; Maximum time (in seconds) for connect timeout. -1 means no limit
  638. mysql.connect_timeout = 60
  639. ; Trace mode. When trace_mode is active (=On), warnings for table/index scans and
  640. ; SQL-Errors will be displayed.
  641. mysql.trace_mode = Off
  642. [MySQLi]
  643. ; Maximum number of links. -1 means no limit.
  644. mysqli.max_links = -1
  645. ; Default port number for mysqli_connect(). If unset, mysqli_connect() will use
  646. ; the $MYSQL_TCP_PORT or the mysql-tcp entry in /etc/services or the
  647. ; compile-time value defined MYSQL_PORT (in that order). Win32 will only look
  648. ; at MYSQL_PORT.
  649. mysqli.default_port = 3306
  650. ; Default socket name for local MySQL connects. If empty, uses the built-in
  651. ; MySQL defaults.
  652. mysqli.default_socket =
  653. ; Default host for mysql_connect() (doesn't apply in safe mode).
  654. mysqli.default_host =
  655. ; Default user for mysql_connect() (doesn't apply in safe mode).
  656. mysqli.default_user =
  657. ; Default password for mysqli_connect() (doesn't apply in safe mode).
  658. ; Note that this is generally a *bad* idea to store passwords in this file.
  659. ; *Any* user with PHP access can run 'echo get_cfg_var("mysqli.default_pw")
  660. ; and reveal this password! And of course, any users with read access to this
  661. ; file will be able to reveal the password as well.
  662. mysqli.default_pw =
  663. ; Allow or prevent reconnect
  664. mysqli.reconnect = Off
  665. [mSQL]
  666. ; Allow or prevent persistent links.
  667. msql.allow_persistent = On
  668. ; Maximum number of persistent links. -1 means no limit.
  669. msql.max_persistent = -1
  670. ; Maximum number of links (persistent+non persistent). -1 means no limit.
  671. msql.max_links = -1
  672. [OCI8]
  673. ; Connection: Enables privileged connections using external
  674. ; credentials (OCI_SYSOPER, OCI_SYSDBA)
  675. ;oci8.privileged_connect = Off
  676. ; Connection: The maximum number of persistent OCI8 connections per
  677. ; process. Using -1 means no limit.
  678. ;oci8.max_persistent = -1
  679. ; Connection: The maximum number of seconds a process is allowed to
  680. ; maintain an idle persistent connection. Using -1 means idle
  681. ; persistent connections will be maintained forever.
  682. ;oci8.persistent_timeout = -1
  683. ; Connection: The number of seconds that must pass before issuing a
  684. ; ping during oci_pconnect() to check the connection validity. When
  685. ; set to 0, each oci_pconnect() will cause a ping. Using -1 disables
  686. ; pings completely.
  687. ;oci8.ping_interval = 60
  688. ; Connection: Set this to a user chosen connection class to be used
  689. ; for all pooled server requests with Oracle 11g Database Resident
  690. ; Connection Pooling (DRCP). The default name is system generated.
  691. ; To use DRCP, the database pool must be configured, and the
  692. ; connection string must also specify to use a pooled server.
  693. ;oci8.connection_class = MYPHPAPP
  694. ; High Availability: Using 1 lets PHP receive Fast Application
  695. ; Notification (FAN) events generated when a database node fails. The
  696. ; database must also be configured to post FAN events.
  697. ;oci8.events = 0
  698. ; Tuning: This option enables statement caching, and specifies how
  699. ; many statements to cache. Using 0 disables statement caching.
  700. ;oci8.statement_cache_size = 20
  701. ; Tuning: Enables statement prefetching and sets the default number of
  702. ; rows that will be fetched automatically after statement execution.
  703. ;oci8.default_prefetch = 10
  704. ; Compatibility. Using 1 means oci_close() will not close
  705. ; oci_connect() and oci_new_connect() connections.
  706. ;oci8.old_oci_close_semantics = 0
  707. [PostgresSQL]
  708. ; Allow or prevent persistent links.
  709. pgsql.allow_persistent = On
  710. ; Detect broken persistent links always with pg_pconnect().
  711. ; Auto reset feature requires a little overheads.
  712. pgsql.auto_reset_persistent = Off
  713. ; Maximum number of persistent links. -1 means no limit.
  714. pgsql.max_persistent = -1
  715. ; Maximum number of links (persistent+non persistent). -1 means no limit.
  716. pgsql.max_links = -1
  717. ; Ignore PostgreSQL backends Notice message or not.
  718. ; Notice message logging require a little overheads.
  719. pgsql.ignore_notice = 0
  720. ; Log PostgreSQL backends Noitce message or not.
  721. ; Unless pgsql.ignore_notice=0, module cannot log notice message.
  722. pgsql.log_notice = 0
  723. [Sybase]
  724. ; Allow or prevent persistent links.
  725. sybase.allow_persistent = On
  726. ; Maximum number of persistent links. -1 means no limit.
  727. sybase.max_persistent = -1
  728. ; Maximum number of links (persistent + non-persistent). -1 means no limit.
  729. sybase.max_links = -1
  730. ;sybase.interface_file = "/usr/sybase/interfaces"
  731. ; Minimum error severity to display.
  732. sybase.min_error_severity = 10
  733. ; Minimum message severity to display.
  734. sybase.min_message_severity = 10
  735. ; Compatibility mode with old versions of PHP 3.0.
  736. ; If on, this will cause PHP to automatically assign types to results according
  737. ; to their Sybase type, instead of treating them all as strings. This
  738. ; compatibility mode will probably not stay around forever, so try applying
  739. ; whatever necessary changes to your code, and turn it off.
  740. sybase.compatability_mode = Off
  741. [Sybase-CT]
  742. ; Allow or prevent persistent links.
  743. sybct.allow_persistent = On
  744. ; Maximum number of persistent links. -1 means no limit.
  745. sybct.max_persistent = -1
  746. ; Maximum number of links (persistent + non-persistent). -1 means no limit.
  747. sybct.max_links = -1
  748. ; Minimum server message severity to display.
  749. sybct.min_server_severity = 10
  750. ; Minimum client message severity to display.
  751. sybct.min_client_severity = 10
  752. [bcmath]
  753. ; Number of decimal digits for all bcmath functions.
  754. bcmath.scale = 0
  755. [browscap]
  756. ;browscap = extra/browscap.ini
  757. [Informix]
  758. ; Default host for ifx_connect() (doesn't apply in safe mode).
  759. ifx.default_host =
  760. ; Default user for ifx_connect() (doesn't apply in safe mode).
  761. ifx.default_user =
  762. ; Default password for ifx_connect() (doesn't apply in safe mode).
  763. ifx.default_password =
  764. ; Allow or prevent persistent links.
  765. ifx.allow_persistent = On
  766. ; Maximum number of persistent links. -1 means no limit.
  767. ifx.max_persistent = -1
  768. ; Maximum number of links (persistent + non-persistent). -1 means no limit.
  769. ifx.max_links = -1
  770. ; If on, select statements return the contents of a text blob instead of its id.
  771. ifx.textasvarchar = 0
  772. ; If on, select statements return the contents of a byte blob instead of its id.
  773. ifx.byteasvarchar = 0
  774. ; Trailing blanks are stripped from fixed-length char columns. May help the
  775. ; life of Informix SE users.
  776. ifx.charasvarchar = 0
  777. ; If on, the contents of text and byte blobs are dumped to a file instead of
  778. ; keeping them in memory.
  779. ifx.blobinfile = 0
  780. ; NULL's are returned as empty strings, unless this is set to 1. In that case,
  781. ; NULL's are returned as string 'NULL'.
  782. ifx.nullformat = 0
  783. [Session]
  784. ; Handler used to store/retrieve data.
  785. session.save_handler = files
  786. ; Argument passed to save_handler. In the case of files, this is the path
  787. ; where data files are stored. Note: Windows users have to change this
  788. ; variable in order to use PHP's session functions.
  789. ;
  790. ; As of PHP 4.0.1, you can define the path as:
  791. ;
  792. ; session.save_path = "N;/path"
  793. ;
  794. ; where N is an integer. Instead of storing all the session files in
  795. ; /path, what this will do is use subdirectories N-levels deep, and
  796. ; store the session data in those directories. This is useful if you
  797. ; or your OS have problems with lots of files in one directory, and is
  798. ; a more efficient layout for servers that handle lots of sessions.
  799. ;
  800. ; NOTE 1: PHP will not create this directory structure automatically.
  801. ; You can use the script in the ext/session dir for that purpose.
  802. ; NOTE 2: See the section on garbage collection below if you choose to
  803. ; use subdirectories for session storage
  804. ;
  805. ; The file storage module creates files using mode 600 by default.
  806. ; You can change that by using
  807. ;
  808. ; session.save_path = "N;MODE;/path"
  809. ;
  810. ; where MODE is the octal representation of the mode. Note that this
  811. ; does not overwrite the process's umask.
  812. ;session.save_path = "/tmp"
  813. ; Whether to use cookies.
  814. session.use_cookies = 1
  815. ;session.cookie_secure =
  816. ; This option enables administrators to make their users invulnerable to
  817. ; attacks which involve passing session ids in URLs; defaults to 1.
  818. session.use_only_cookies = 1
  819. ; Name of the session (used as cookie name).
  820. session.name = PHPSESSID
  821. ; Initialize session on request startup.
  822. session.auto_start = 0
  823. ; Lifetime in seconds of cookie or, if 0, until browser is restarted.
  824. session.cookie_lifetime = 0
  825. ; The path for which the cookie is valid.
  826. session.cookie_path = /
  827. ; The domain for which the cookie is valid.
  828. session.cookie_domain =
  829. ; Whether or not to add the httpOnly flag to the cookie, which makes it inaccessible to browser scripting languages such as JavaScript.
  830. session.cookie_httponly =
  831. ; Handler used to serialize data. php is the standard serializer of PHP.
  832. session.serialize_handler = php
  833. ; Define the probability that the 'garbage collection' process is started
  834. ; on every session initialization.
  835. ; The probability is calculated by using gc_probability/gc_divisor,
  836. ; e.g. 1/100 means there is a 1% chance that the GC process starts
  837. ; on each request.
  838. session.gc_probability = 1
  839. session.gc_divisor = 1000
  840. ; After this number of seconds, stored data will be seen as 'garbage' and
  841. ; cleaned up by the garbage collection process.
  842. session.gc_maxlifetime = 1440
  843. ; NOTE: If you are using the subdirectory option for storing session files
  844. ; (see session.save_path above), then garbage collection does *not*
  845. ; happen automatically. You will need to do your own garbage
  846. ; collection through a shell script, cron entry, or some other method.
  847. ; For example, the following script would is the equivalent of
  848. ; setting session.gc_maxlifetime to 1440 (1440 seconds = 24 minutes):
  849. ; cd /path/to/sessions; find -cmin +24 | xargs rm
  850. ; Check HTTP Referer to invalidate externally stored URLs containing ids.
  851. ; HTTP_REFERER has to contain this substring for the session to be
  852. ; considered as valid.
  853. session.referer_check =
  854. ; How many bytes to read from the file.
  855. session.entropy_length = 0
  856. ; Specified here to create the session id.
  857. session.entropy_file =
  858. ;session.entropy_length = 16
  859. ;session.entropy_file = /dev/urandom
  860. ; Set to {nocache,private,public,} to determine HTTP caching aspects
  861. ; or leave this empty to avoid sending anti-caching headers.
  862. session.cache_limiter = nocache
  863. ; Document expires after n minutes.
  864. session.cache_expire = 180
  865. ; trans sid support is disabled by default.
  866. ; Use of trans sid may risk your users security.
  867. ; Use this option with caution.
  868. ; - User may send URL contains active session ID
  869. ; to other person via. email/irc/etc.
  870. ; - URL that contains active session ID may be stored
  871. ; in publically accessible computer.
  872. ; - User may access your site with the same session ID
  873. ; always using URL stored in browser's history or bookmarks.
  874. session.use_trans_sid = 0
  875. ; Select a hash function
  876. ; 0: MD5 (128 bits)
  877. ; 1: SHA-1 (160 bits)
  878. session.hash_function = 0
  879. ; Define how many bits are stored in each character when converting
  880. ; the binary hash data to something readable.
  881. ;
  882. ; 4 bits: 0-9, a-f
  883. ; 5 bits: 0-9, a-v
  884. ; 6 bits: 0-9, a-z, A-Z, "-", ","
  885. session.hash_bits_per_character = 5
  886. ; The URL rewriter will look for URLs in a defined set of HTML tags.
  887. ; form/fieldset are special; if you include them here, the rewriter will
  888. ; add a hidden <input> field with the info which is otherwise appended
  889. ; to URLs. If you want XHTML conformity, remove the form entry.
  890. ; Note that all valid entries require a "=", even if no value follows.
  891. url_rewriter.tags = "a=href,area=href,frame=src,input=src,form=fakeentry"
  892. [MSSQL]
  893. ; Allow or prevent persistent links.
  894. mssql.allow_persistent = On
  895. ; Maximum number of persistent links. -1 means no limit.
  896. mssql.max_persistent = -1
  897. ; Maximum number of links (persistent+non persistent). -1 means no limit.
  898. mssql.max_links = -1
  899. ; Minimum error severity to display.
  900. mssql.min_error_severity = 10
  901. ; Minimum message severity to display.
  902. mssql.min_message_severity = 10
  903. ; Compatibility mode with old versions of PHP 3.0.
  904. mssql.compatability_mode = Off
  905. ; Connect timeout
  906. ;mssql.connect_timeout = 5
  907. ; Query timeout
  908. ;mssql.timeout = 60
  909. ; Valid range 0 - 2147483647. Default = 4096.
  910. ;mssql.textlimit = 4096
  911. ; Valid range 0 - 2147483647. Default = 4096.
  912. ;mssql.textsize = 4096
  913. ; Limits the number of records in each batch. 0 = all records in one batch.
  914. ;mssql.batchsize = 0
  915. ; Specify how datetime and datetim4 columns are returned
  916. ; On => Returns data converted to SQL server settings
  917. ; Off => Returns values as YYYY-MM-DD hh:mm:ss
  918. ;mssql.datetimeconvert = On
  919. ; Use NT authentication when connecting to the server
  920. mssql.secure_connection = Off
  921. ; Specify max number of processes. -1 = library default
  922. ; msdlib defaults to 25
  923. ; FreeTDS defaults to 4096
  924. ;mssql.max_procs = -1
  925. ; Specify client character set.
  926. ; If empty or not set the client charset from freetds.comf is used
  927. ; This is only used when compiled with FreeTDS
  928. ;mssql.charset = "ISO-8859-1"
  929. [Assertion]
  930. ; Assert(expr); active by default.
  931. ;assert.active = On
  932. ; Issue a PHP warning for each failed assertion.
  933. ;assert.warning = On
  934. ; Don't bail out by default.
  935. ;assert.bail = Off
  936. ; User-function to be called if an assertion fails.
  937. ;assert.callback = 0
  938. ; Eval the expression with current error_reporting(). Set to true if you want
  939. ; error_reporting(0) around the eval().
  940. ;assert.quiet_eval = 0
  941. [COM]
  942. ; path to a file containing GUIDs, IIDs or filenames of files with TypeLibs
  943. ;com.typelib_file =
  944. ; allow Distributed-COM calls
  945. ;com.allow_dcom = true
  946. ; autoregister constants of a components typlib on com_load()
  947. ;com.autoregister_typelib = true
  948. ; register constants casesensitive
  949. ;com.autoregister_casesensitive = false
  950. ; show warnings on duplicate constant registrations
  951. ;com.autoregister_verbose = true
  952. [mbstring]
  953. ; language for internal character representation.
  954. ;mbstring.language = Japanese
  955. ; internal/script encoding.
  956. ; Some encoding cannot work as internal encoding.
  957. ; (e.g. SJIS, BIG5, ISO-2022-*)
  958. ;mbstring.internal_encoding = EUC-JP
  959. ; http input encoding.
  960. ;mbstring.http_input = auto
  961. ; http output encoding. mb_output_handler must be
  962. ; registered as output buffer to function
  963. ;mbstring.http_output = SJIS
  964. ; enable automatic encoding translation according to
  965. ; mbstring.internal_encoding setting. Input chars are
  966. ; converted to internal encoding by setting this to On.
  967. ; Note: Do _not_ use automatic encoding translation for
  968. ; portable libs/applications.
  969. ;mbstring.encoding_translation = Off
  970. ; automatic encoding detection order.
  971. ; auto means
  972. ;mbstring.detect_order = auto
  973. ; substitute_character used when character cannot be converted
  974. ; one from another
  975. ;mbstring.substitute_character = none;
  976. ; overload(replace) single byte functions by mbstring functions.
  977. ; mail(), ereg(), etc are overloaded by mb_send_mail(), mb_ereg(),
  978. ; etc. Possible values are 0,1,2,4 or combination of them.
  979. ; For example, 7 for overload everything.
  980. ; 0: No overload
  981. ; 1: Overload mail() function
  982. ; 2: Overload str*() functions
  983. ; 4: Overload ereg*() functions
  984. ;mbstring.func_overload = 0
  985. ; enable strict encoding detection.
  986. ;mbstring.strict_encoding = Off
  987. [FrontBase]
  988. ;fbsql.allow_persistent = On
  989. ;fbsql.autocommit = On
  990. ;fbsql.show_timestamp_decimals = Off
  991. ;fbsql.default_database =
  992. ;fbsql.default_database_password =
  993. ;fbsql.default_host =
  994. ;fbsql.default_password =
  995. ;fbsql.default_user = "_SYSTEM"
  996. ;fbsql.generate_warnings = Off
  997. ;fbsql.max_connections = 128
  998. ;fbsql.max_links = 128
  999. ;fbsql.max_persistent = -1
  1000. ;fbsql.max_results = 128
  1001. [gd]
  1002. ; Tell the jpeg decode to libjpeg warnings and try to create
  1003. ; a gd image. The warning will then be displayed as notices
  1004. ; disabled by default
  1005. ;gd.jpeg_ignore_warning = 0
  1006. [exif]
  1007. ; Exif UNICODE user comments are handled as UCS-2BE/UCS-2LE and JIS as JIS.
  1008. ; With mbstring support this will automatically be converted into the encoding
  1009. ; given by corresponding encode setting. When empty mbstring.internal_encoding
  1010. ; is used. For the decode settings you can distinguish between motorola and
  1011. ; intel byte order. A decode setting cannot be empty.
  1012. ;exif.encode_unicode = ISO-8859-15
  1013. ;exif.decode_unicode_motorola = UCS-2BE
  1014. ;exif.decode_unicode_intel = UCS-2LE
  1015. ;exif.encode_jis =
  1016. ;exif.decode_jis_motorola = JIS
  1017. ;exif.decode_jis_intel = JIS
  1018. [Tidy]
  1019. ; The path to a default tidy configuration file to use when using tidy
  1020. ;tidy.default_config = /usr/local/lib/php/default.tcfg
  1021. ; Should tidy clean and repair output automatically?
  1022. ; WARNING: Do not use this option if you are generating non-html content
  1023. ; such as dynamic images
  1024. tidy.clean_output = Off
  1025. [soap]
  1026. ; Enables or disables WSDL caching feature.
  1027. soap.wsdl_cache_enabled=1
  1028. ; Sets the directory name where SOAP extension will put cache files.
  1029. soap.wsdl_cache_dir="/tmp"
  1030. ; (time to live) Sets the number of second while cached file will be used
  1031. ; instead of original one.
  1032. soap.wsdl_cache_ttl=86400
  1033. ; Local Variables:
  1034. ; tab-width: 4
  1035. ; End: