home *** CD-ROM | disk | FTP | other *** search
/ PC Professionell 2004 December / PCpro_2004_12.ISO / files / webserver / tsw / TSW_3.4.0.exe / Apache2 / php / php.ini-recommended < prev    next >
Encoding:
INI File  |  2004-07-13  |  42.5 KB  |  1,197 lines

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