home *** CD-ROM | disk | FTP | other *** search
/ Personal Computer World 2008 February / PCWFEB08.iso / Software / Resources / Developers / XAMPP 1.5.4 / Windows installer / xampp-win32-1.5.4-installer.exe / xampp / php / php.ini-recommended < prev    next >
Encoding:
INI File  |  2006-05-04  |  46.2 KB  |  1,261 lines

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