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.

1260 lines
45 KiB

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