home *** CD-ROM | disk | FTP | other *** search
/ PC World 2002 May / PCWorld_2002-05_cd.bin / Komunik / php / php-4.1.2-installer.exe / PHP.INI < prev    next >
Encoding:
INI File  |  2002-03-04  |  27.7 KB  |  872 lines

  1. [PHP]
  2.  
  3. ;;;;;;;;;;;
  4. ; WARNING ;
  5. ;;;;;;;;;;;
  6. ; This is the default settings file for new PHP installations.
  7. ; By default, PHP installs itself with a configuration suitable for
  8. ; development purposes, and *NOT* for production purposes.
  9. ; For several security-oriented considerations that should be taken
  10. ; before going online with your site, please consult php.ini-recommended
  11. ; and http://php.net/manual/en/security.php.
  12.  
  13.  
  14. ;;;;;;;;;;;;;;;;;;;
  15. ; About this file ;
  16. ;;;;;;;;;;;;;;;;;;;
  17. ; This file controls many aspects of PHP's behavior.  In order for PHP to
  18. ; read it, it must be named 'php.ini'.  PHP looks for it in the current
  19. ; working directory, in the path designated by the environment variable
  20. ; PHPRC, and in the path that was defined in compile time (in that order).
  21. ; Under Windows, the compile-time path is the Windows directory.  The
  22. ; path in which the php.ini file is looked for can be overridden using
  23. ; the -c argument in command line mode.
  24. ;
  25. ; The syntax of the file is extremely simple.  Whitespace and Lines
  26. ; beginning with a semicolon are silently ignored (as you probably guessed).
  27. ; Section headers (e.g. [Foo]) are also silently ignored, even though
  28. ; they might mean something in the future.
  29. ;
  30. ; Directives are specified using the following syntax:
  31. ; directive = value
  32. ; Directive names are *case sensitive* - foo=bar is different from FOO=bar.
  33. ;
  34. ; The value can be a string, a number, a PHP constant (e.g. E_ALL or M_PI), one
  35. ; of the INI constants (On, Off, True, False, Yes, No and None) or an expression
  36. ; (e.g. E_ALL & ~E_NOTICE), or a quoted string ("foo").
  37. ;
  38. ; Expressions in the INI file are limited to bitwise operators and parentheses:
  39. ; |        bitwise OR
  40. ; &        bitwise AND
  41. ; ~        bitwise NOT
  42. ; !        boolean NOT
  43. ;
  44. ; Boolean flags can be turned on using the values 1, On, True or Yes.
  45. ; They can be turned off using the values 0, Off, False or No.
  46. ;
  47. ; An empty string can be denoted by simply not writing anything after the equal
  48. ; sign, or by using the None keyword:
  49. ;
  50. ;  foo =         ; sets foo to an empty string
  51. ;  foo = none    ; sets foo to an empty string
  52. ;  foo = "none"  ; sets foo to the string 'none'
  53. ;
  54. ; If you use constants in your value, and these constants belong to a
  55. ; dynamically loaded extension (either a PHP extension or a Zend extension),
  56. ; you may only use these constants *after* the line that loads the extension.
  57. ;
  58. ; All the values in the php.ini-dist file correspond to the builtin
  59. ; defaults (that is, if no php.ini is used, or if you delete these lines,
  60. ; the builtin defaults will be identical).
  61.  
  62.  
  63. ;;;;;;;;;;;;;;;;;;;;
  64. ; Language Options ;
  65. ;;;;;;;;;;;;;;;;;;;;
  66.  
  67. ; Enable the PHP scripting language engine under Apache.
  68. engine = On
  69.  
  70. ; Allow the <? tag.  Otherwise, only <?php and <script> tags are recognized.
  71. short_open_tag = On
  72.  
  73. ; Allow ASP-style <% %> tags.
  74. asp_tags = Off
  75.  
  76. ; The number of significant digits displayed in floating point numbers.
  77. precision    =  14
  78.  
  79. ; Enforce year 2000 compliance (will cause problems with non-compliant browsers)
  80. y2k_compliance = Off
  81.  
  82. ; Output buffering allows you to send header lines (including cookies) even
  83. ; after you send body content, at the price of slowing PHP's output layer a
  84. ; bit.  You can enable output buffering during runtime by calling the output
  85. ; buffering functions.  You can also enable output buffering for all files by
  86. ; setting this directive to On.  If you wish to limit the size of the buffer
  87. ; to a certain size - you can use a maximum number of bytes instead of 'On', as
  88. ; a value for this directive (e.g., output_buffering=4096).
  89. output_buffering = Off
  90.  
  91. ; You can redirect all of the output of your scripts to a function.  For
  92. ; example, if you set output_handler to "ob_gzhandler", output will be
  93. ; transparently compressed for browsers that support gzip or deflate encoding.
  94. ; Setting an output handler automatically turns on output buffering.
  95. output_handler =
  96.  
  97. ; Transparent output compression using the zlib library
  98. ; Valid values for this option are 'off', 'on', or a specific buffer size
  99. ; to be used for compression (default is 4KB)
  100. zlib.output_compression = Off
  101.  
  102. ; Implicit flush tells PHP to tell the output layer to flush itself
  103. ; automatically after every output block.  This is equivalent to calling the
  104. ; PHP function flush() after each and every call to print() or echo() and each
  105. ; and every HTML block.  Turning this option on has serious performance
  106. ; implications and is generally recommended for debugging purposes only.
  107. implicit_flush = Off
  108.  
  109. ; Whether to enable the ability to force arguments to be passed by reference
  110. ; at function call time.  This method is deprecated and is likely to be
  111. ; unsupported in future versions of PHP/Zend.  The encouraged method of
  112. ; specifying which arguments should be passed by reference is in the function
  113. ; declaration.  You're encouraged to try and turn this option Off and make
  114. ; sure your scripts work properly with it in order to ensure they will work
  115. ; with future versions of the language (you will receive a warning each time
  116. ; you use this feature, and the argument will be passed by value instead of by
  117. ; reference).
  118. allow_call_time_pass_reference = On
  119.  
  120.  
  121. ;
  122. ; Safe Mode
  123. ;
  124. safe_mode = Off
  125.  
  126. ; By default, Safe Mode does a UID compare check when
  127. ; opening files. If you want to relax this to a GID compare,
  128. ; then turn on safe_mode_gid.
  129. safe_mode_gid = Off
  130.  
  131. ; When safe_mode is on, UID/GID checks are bypassed when
  132. ; including files from this directory and its subdirectories.
  133. ; (directory must also be in include_path or full path must
  134. ; be used when including)
  135. safe_mode_include_dir =                                
  136.  
  137. ; When safe_mode is on, only executables located in the safe_mode_exec_dir
  138. ; will be allowed to be executed via the exec family of functions.
  139. safe_mode_exec_dir =
  140.  
  141. ; open_basedir, if set, limits all file operations to the defined directory
  142. ; and below.  This directive makes most sense if used in a per-directory
  143. ; or per-virtualhost web server configuration file.
  144. ;
  145. ;open_basedir =
  146.  
  147. ; Setting certain environment variables may be a potential security breach.
  148. ; This directive contains a comma-delimited list of prefixes.  In Safe Mode,
  149. ; the user may only alter environment variables whose names begin with the
  150. ; prefixes supplied here.  By default, users will only be able to set
  151. ; environment variables that begin with PHP_ (e.g. PHP_FOO=BAR).
  152. ;
  153. ; Note:  If this directive is empty, PHP will let the user modify ANY
  154. ; environment variable!
  155. safe_mode_allowed_env_vars = PHP_
  156.  
  157. ; This directive contains a comma-delimited list of environment variables that
  158. ; the end user won't be able to change using putenv().  These variables will be
  159. ; protected even if safe_mode_allowed_env_vars is set to allow to change them.
  160. safe_mode_protected_env_vars = LD_LIBRARY_PATH
  161.  
  162. ; This directive allows you to disable certain functions for security reasons.
  163. ; It receives a comma-delimited list of function names.  This directive is
  164. ; *NOT* affected by whether Safe Mode is turned On or Off.
  165. disable_functions =
  166.  
  167. ; Colors for Syntax Highlighting mode.  Anything that's acceptable in
  168. ; <font color="??????"> would work.
  169. highlight.string  = #CC0000
  170. highlight.comment = #FF9900
  171. highlight.keyword = #006600
  172. highlight.bg      = #FFFFFF
  173. highlight.default = #0000CC
  174. highlight.html    = #000000
  175.  
  176.  
  177. ;
  178. ; Misc
  179. ;
  180. ; Decides whether PHP may expose the fact that it is installed on the server
  181. ; (e.g. by adding its signature to the Web server header).  It is no security
  182. ; threat in any way, but it makes it possible to determine whether you use PHP
  183. ; on your server or not.
  184. expose_php = On
  185.  
  186.  
  187. ;;;;;;;;;;;;;;;;;;;
  188. ; Resource Limits ;
  189. ;;;;;;;;;;;;;;;;;;;
  190.  
  191. max_execution_time = 30     ; Maximum execution time of each script, in seconds
  192. memory_limit = 8M      ; Maximum amount of memory a script may consume (8MB)
  193.  
  194.  
  195. ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
  196. ; Error handling and logging ;
  197. ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
  198.  
  199. ; error_reporting is a bit-field.  Or each number up to get desired error
  200. ; reporting level
  201. ; E_ALL             - All errors and warnings
  202. ; E_ERROR           - fatal run-time errors
  203. ; E_WARNING         - run-time warnings (non-fatal errors)
  204. ; E_PARSE           - compile-time parse errors
  205. ; E_NOTICE          - run-time notices (these are warnings which often result
  206. ;                     from a bug in your code, but it's possible that it was
  207. ;                     intentional (e.g., using an uninitialized variable and
  208. ;                     relying on the fact it's automatically initialized to an
  209. ;                     empty string)
  210. ; E_CORE_ERROR      - fatal errors that occur during PHP's initial startup
  211. ; E_CORE_WARNING    - warnings (non-fatal errors) that occur during PHP's
  212. ;                     initial startup
  213. ; E_COMPILE_ERROR   - fatal compile-time errors
  214. ; E_COMPILE_WARNING - compile-time warnings (non-fatal errors)
  215. ; E_USER_ERROR      - user-generated error message
  216. ; E_USER_WARNING    - user-generated warning message
  217. ; E_USER_NOTICE     - user-generated notice message
  218. ;
  219. ; Examples:
  220. ;
  221. ;   - Show all errors, except for notices
  222. ;
  223. ;error_reporting = E_ALL & ~E_NOTICE
  224. ;
  225. ;   - Show only errors
  226. ;
  227. ;error_reporting = E_COMPILE_ERROR|E_ERROR|E_CORE_ERROR
  228. ;
  229. ;   - Show all errors except for notices
  230. ;
  231. error_reporting  =  E_ALL & ~E_NOTICE
  232.  
  233. ; Print out errors (as a part of the output).  For production web sites,
  234. ; you're strongly encouraged to turn this feature off, and use error logging
  235. ; instead (see below).  Keeping display_errors enabled on a production web site
  236. ; may reveal security information to end users, such as file paths on your Web
  237. ; server, your database schema or other information.
  238. display_errors = On
  239.  
  240. ; Even when display_errors is on, errors that occur during PHP's startup
  241. ; sequence are not displayed.  It's strongly recommended to keep
  242. ; display_startup_errors off, except for when debugging.
  243. display_startup_errors = Off
  244.  
  245. ; Log errors into a log file (server-specific log, stderr, or error_log (below))
  246. ; As stated above, you're strongly advised to use error logging in place of
  247. ; error displaying on production web sites.
  248. log_errors = Off
  249.  
  250. ; Store the last error/warning message in $php_errormsg (boolean).
  251. track_errors = Off
  252.  
  253. ; Disable the inclusion of HTML tags in error messages.
  254. ;html_errors = Off
  255.   
  256. ; String to output before an error message.
  257. ;error_prepend_string = "<font color=ff0000>"
  258.  
  259. ; String to output after an error message.
  260. ;error_append_string = "</font>"
  261.  
  262. ; Log errors to specified file.
  263. ;error_log = filename
  264.  
  265. ; Log errors to syslog (Event Log on NT, not valid in Windows 95).
  266. ;error_log = syslog
  267.  
  268. ; Warn if the + operator is used with strings.
  269. warn_plus_overloading = Off
  270.  
  271.  
  272. ;;;;;;;;;;;;;;;;;
  273. ; Data Handling ;
  274. ;;;;;;;;;;;;;;;;;
  275. ;
  276. ; Note - track_vars is ALWAYS enabled as of PHP 4.0.3
  277.  
  278. ; The separator used in PHP generated URLs to separate arguments.
  279. ; Default is "&". 
  280. ;arg_separator.output = "&"
  281.  
  282. ; List of separator(s) used by PHP to parse input URLs into variables.
  283. ; Default is "&". 
  284. ; NOTE: Every character in this directive is considered as separator!
  285. ;arg_separator.input = ";&"
  286.  
  287. ; This directive describes the order in which PHP registers GET, POST, Cookie,
  288. ; Environment and Built-in variables (G, P, C, E & S respectively, often
  289. ; referred to as EGPCS or GPC).  Registration is done from left to right, newer
  290. ; values override older values.
  291. variables_order = "EGPCS"
  292.  
  293. ; Whether or not to register the EGPCS variables as global variables.  You may
  294. ; want to turn this off if you don't want to clutter your scripts' global scope
  295. ; with user data.  This makes most sense when coupled with track_vars - in which
  296. ; case you can access all of the GPC variables through the $HTTP_*_VARS[],
  297. ; variables.
  298. ;
  299. ; You should do your best to write your scripts so that they do not require
  300. ; register_globals to be on;  Using form variables as globals can easily lead
  301. ; to possible security problems, if the code is not very well thought of.
  302. register_globals = On
  303.  
  304. ; This directive tells PHP whether to declare the argv&argc variables (that
  305. ; would contain the GET information).  If you don't use these variables, you
  306. ; should turn it off for increased performance.
  307. register_argc_argv = On
  308.  
  309. ; Maximum size of POST data that PHP will accept.
  310. post_max_size = 8M
  311.  
  312. ; This directive is deprecated.  Use variables_order instead.
  313. gpc_order = "GPC"
  314.  
  315. ; Magic quotes
  316. ;
  317.  
  318. ; Magic quotes for incoming GET/POST/Cookie data.
  319. magic_quotes_gpc = On
  320.  
  321. ; Magic quotes for runtime-generated data, e.g. data from SQL, from exec(), etc.
  322. magic_quotes_runtime = Off    
  323.  
  324. ; Use Sybase-style magic quotes (escape ' with '' instead of \').
  325. magic_quotes_sybase = Off
  326.  
  327. ; Automatically add files before or after any PHP document.
  328. auto_prepend_file =
  329. auto_append_file =
  330.  
  331. ; As of 4.0b4, PHP always outputs a character encoding by default in
  332. ; the Content-type: header.  To disable sending of the charset, simply
  333. ; set it to be empty.
  334. ;
  335. ; PHP's built-in default is text/html
  336. default_mimetype = "text/html"
  337. ;default_charset = "iso-8859-1"
  338.  
  339.  
  340. ;;;;;;;;;;;;;;;;;;;;;;;;;
  341. ; Paths and Directories ;
  342. ;;;;;;;;;;;;;;;;;;;;;;;;;
  343.  
  344. ; UNIX: "/path1:/path2"  
  345. ;include_path = ".:/php/includes"
  346. ;
  347. ; Windows: "\path1;\path2"
  348. ;include_path = ".;c:\php\includes"
  349.  
  350. ; The root of the PHP pages, used only if nonempty.
  351. ; if PHP was not compiled with FORCE_REDIRECT, you SHOULD set doc_root
  352. ; if you are running php as a CGI under any web server (other than IIS)
  353. ; see documentation for security issues.  The alternate is to use the
  354. ; cgi.force_redirect configuration below
  355. doc_root =
  356.  
  357. ; The directory under which PHP opens the script using /~usernamem used only
  358. ; if nonempty.
  359. user_dir =
  360.  
  361. ; Directory in which the loadable extensions (modules) reside.
  362. extension_dir = ./
  363.  
  364. ; Whether or not to enable the dl() function.  The dl() function does NOT work
  365. ; properly in multithreaded servers, such as IIS or Zeus, and is automatically
  366. ; disabled on them.
  367. enable_dl = On
  368.  
  369. ; cgi.force_redirect is necessary to provide security running PHP as a CGI under
  370. ; most web servers.  Left undefined, PHP turns this on by default.  You can
  371. ; turn it off here AT YOUR OWN RISK
  372. ; **You CAN safely turn this off for IIS, in fact, you MUST.**
  373. ; cgi.force_redirect = 1
  374.  
  375. ; if cgi.force_redirect is turned on, and you are not running under Apache or Netscape 
  376. ; (iPlanet) web servers, you MAY need to set an environment variable name that PHP
  377. ; will look for to know it is OK to continue execution.  Setting this variable MAY
  378. ; cause security issues, KNOW WHAT YOU ARE DOING FIRST.
  379. ; cgi.redirect_status_env = ;
  380.  
  381.  
  382. ;;;;;;;;;;;;;;;;
  383. ; File Uploads ;
  384. ;;;;;;;;;;;;;;;;
  385.  
  386. ; Whether to allow HTTP file uploads.
  387. file_uploads = On
  388.  
  389. ; Temporary directory for HTTP uploaded files (will use system default if not
  390. ; specified).
  391. ;upload_tmp_dir =
  392.  
  393. ; Maximum allowed size for uploaded files.
  394. upload_max_filesize = 2M
  395.  
  396.  
  397. ;;;;;;;;;;;;;;;;;;
  398. ; Fopen wrappers ;
  399. ;;;;;;;;;;;;;;;;;;
  400.  
  401. ; Whether to allow the treatment of URLs (like http:// or ftp://) as files.
  402. allow_url_fopen = On
  403.  
  404. ; Define the anonymous ftp password (your email address)
  405. ;from="john@doe.com"
  406.  
  407.  
  408. ;;;;;;;;;;;;;;;;;;;;;;
  409. ; Dynamic Extensions ;
  410. ;;;;;;;;;;;;;;;;;;;;;;
  411. ;
  412. ; If you wish to have an extension loaded automatically, use the following
  413. ; syntax:
  414. ;
  415. ;   extension=modulename.extension
  416. ;
  417. ; For example, on Windows:
  418. ;
  419. ;   extension=msql.dll
  420. ;
  421. ; ... or under UNIX:
  422. ;
  423. ;   extension=msql.so
  424. ;
  425. ; Note that it should be the name of the module only; no directory information 
  426. ; needs to go here.  Specify the location of the extension with the
  427. ; extension_dir directive above.
  428.  
  429.  
  430. ;Windows Extensions
  431. ;Note that MySQL and ODBC support is now built in, so no dll is needed for it.
  432. ;
  433. ;extension=php_bz2.dll
  434. ;extension=php_ctype.dll
  435. ;extension=php_cpdf.dll
  436. ;extension=php_curl.dll
  437. ;extension=php_cybercash.dll
  438. ;extension=php_db.dll
  439. ;extension=php_dba.dll
  440. ;extension=php_dbase.dll
  441. ;extension=php_dbx.dll
  442. ;extension=php_domxml.dll
  443. ;extension=php_dotnet.dll
  444. ;extension=php_exif.dll
  445. ;extension=php_fbsql.dll
  446. ;extension=php_fdf.dll
  447. ;extension=php_filepro.dll
  448. ;extension=php_gd.dll
  449. ;extension=php_gettext.dll
  450. ;extension=php_hyperwave.dll
  451. ;extension=php_iconv.dll
  452. ;extension=php_ifx.dll
  453. ;extension=php_iisfunc.dll
  454. ;extension=php_imap.dll
  455. ;extension=php_ingres.dll
  456. ;extension=php_interbase.dll
  457. ;extension=php_java.dll
  458. ;extension=php_ldap.dll
  459. ;extension=php_mbstring.dll
  460. ;extension=php_mcrypt.dll
  461. ;extension=php_mhash.dll
  462. ;extension=php_ming.dll
  463. ;extension=php_mssql.dll
  464. ;extension=php_oci8.dll
  465. ;extension=php_openssl.dll
  466. ;extension=php_oracle.dll
  467. ;extension=php_pdf.dll
  468. ;extension=php_pgsql.dll
  469. ;extension=php_printer.dll
  470. ;extension=php_sablot.dll
  471. ;extension=php_shmop.dll
  472. ;extension=php_snmp.dll
  473. ;extension=php_sockets.dll
  474. ;extension=php_sybase_ct.dll
  475. ;extension=php_xslt.dll
  476. ;extension=php_yaz.dll
  477. ;extension=php_zlib.dll
  478.  
  479.  
  480. ;;;;;;;;;;;;;;;;;;;
  481. ; Module Settings ;
  482. ;;;;;;;;;;;;;;;;;;;
  483.  
  484. [Syslog]
  485. ; Whether or not to define the various syslog variables (e.g. $LOG_PID,
  486. ; $LOG_CRON, etc.).  Turning it off is a good idea performance-wise.  In
  487. ; runtime, you can define these variables by calling define_syslog_variables().
  488. define_syslog_variables  = Off
  489.  
  490. [mail function]
  491. ; For Win32 only.
  492. SMTP = localhost
  493.  
  494. ; For Win32 only.
  495. sendmail_from = me@localhost.com
  496.  
  497. ; For Unix only.  You may supply arguments as well (default: 'sendmail -t -i').
  498. ;sendmail_path =
  499.  
  500. [Logging]
  501. ; These configuration directives are used by the example logging mechanism.
  502. ; See examples/README.logging for more explanation.
  503. ;logging.method = db
  504. ;logging.directory = /path/to/log/directory
  505.  
  506. [Java]
  507. ;java.class.path = .\php_java.jar
  508. ;java.home = c:\jdk
  509. ;java.library = c:\jdk\jre\bin\hotspot\jvm.dll 
  510. ;java.library.path = .\
  511.  
  512. [SQL]
  513. sql.safe_mode = Off
  514.  
  515. [ODBC]
  516. ;odbc.default_db    =  Not yet implemented
  517. ;odbc.default_user  =  Not yet implemented
  518. ;odbc.default_pw    =  Not yet implemented
  519.  
  520. ; Allow or prevent persistent links.
  521. odbc.allow_persistent = On
  522.  
  523. ; Check that a connection is still valid before reuse.
  524. odbc.check_persistent = On
  525.  
  526. ; Maximum number of persistent links.  -1 means no limit.
  527. odbc.max_persistent = -1
  528.  
  529. ; Maximum number of links (persistent + non-persistent).  -1 means no limit.
  530. odbc.max_links = -1  
  531.  
  532. ; Handling of LONG fields.  Returns number of bytes to variables.  0 means
  533. ; passthru.
  534. odbc.defaultlrl = 4096  
  535.  
  536. ; Handling of binary data.  0 means passthru, 1 return as is, 2 convert to char.
  537. ; See the documentation on odbc_binmode and odbc_longreadlen for an explanation
  538. ; of uodbc.defaultlrl and uodbc.defaultbinmode
  539. odbc.defaultbinmode = 1  
  540.  
  541. [MySQL]
  542. ; Allow or prevent persistent links.
  543. mysql.allow_persistent = On
  544.  
  545. ; Maximum number of persistent links.  -1 means no limit.
  546. mysql.max_persistent = -1
  547.  
  548. ; Maximum number of links (persistent + non-persistent).  -1 means no limit.
  549. mysql.max_links = -1
  550.  
  551. ; Default port number for mysql_connect().  If unset, mysql_connect() will use
  552. ; the $MYSQL_TCP_PORT or the mysql-tcp entry in /etc/services or the
  553. ; compile-time value defined MYSQL_PORT (in that order).  Win32 will only look
  554. ' at MYSQL_PORT.
  555. mysql.default_port =
  556.  
  557. ; Default socket name for local MySQL connects.  If empty, uses the built-in
  558. ; MySQL defaults.
  559. mysql.default_socket =
  560.  
  561. ; Default host for mysql_connect() (doesn't apply in safe mode).
  562. mysql.default_host =
  563.  
  564. ; Default user for mysql_connect() (doesn't apply in safe mode).
  565. mysql.default_user =
  566.  
  567. ; Default password for mysql_connect() (doesn't apply in safe mode).
  568. ; Note that this is generally a *bad* idea to store passwords in this file.
  569. ; *Any* user with PHP access can run 'echo cfg_get_var("mysql.default_password")
  570. ; and reveal this password!  And of course, any users with read access to this
  571. ; file will be able to reveal the password as well.
  572. mysql.default_password =
  573.  
  574. [mSQL]
  575. ; Allow or prevent persistent links.
  576. msql.allow_persistent = On
  577.  
  578. ; Maximum number of persistent links.  -1 means no limit.
  579. msql.max_persistent = -1
  580.  
  581. ; Maximum number of links (persistent+non persistent).  -1 means no limit.
  582. msql.max_links = -1
  583.  
  584. [PostgresSQL]
  585. ; Allow or prevent persistent links.
  586. pgsql.allow_persistent = On
  587.  
  588. ; Maximum number of persistent links.  -1 means no limit.
  589. pgsql.max_persistent = -1
  590.  
  591. ; Maximum number of links (persistent+non persistent).  -1 means no limit.
  592. pgsql.max_links = -1
  593.  
  594. [Sybase]
  595. ; Allow or prevent persistent links.
  596. sybase.allow_persistent = On
  597.  
  598. ; Maximum number of persistent links.  -1 means no limit.
  599. sybase.max_persistent = -1
  600.  
  601. ; Maximum number of links (persistent + non-persistent).  -1 means no limit.
  602. sybase.max_links = -1
  603.  
  604. ;sybase.interface_file = "/usr/sybase/interfaces"
  605.  
  606. ; Minimum error severity to display.
  607. sybase.min_error_severity = 10
  608.  
  609. ; Minimum message severity to display.
  610. sybase.min_message_severity = 10
  611.  
  612. ; Compatability mode with old versions of PHP 3.0.
  613. ; If on, this will cause PHP to automatically assign types to results according
  614. ; to their Sybase type, instead of treating them all as strings.  This
  615. ; compatability mode will probably not stay around forever, so try applying
  616. ; whatever necessary changes to your code, and turn it off.
  617. sybase.compatability_mode = Off
  618.  
  619. [Sybase-CT]
  620. ; Allow or prevent persistent links.
  621. sybct.allow_persistent = On
  622.  
  623. ; Maximum number of persistent links.  -1 means no limit.
  624. sybct.max_persistent = -1
  625.  
  626. ; Maximum number of links (persistent + non-persistent).  -1 means no limit.
  627. sybct.max_links = -1
  628.  
  629. ; Minimum server message severity to display.
  630. sybct.min_server_severity = 10
  631.  
  632. ; Minimum client message severity to display.
  633. sybct.min_client_severity = 10
  634.  
  635. [bcmath]
  636. ; Number of decimal digits for all bcmath functions.
  637. bcmath.scale = 0
  638.  
  639. [browscap]
  640. ;browscap = extra/browscap.ini
  641.  
  642. [Informix]
  643. ; Default host for ifx_connect() (doesn't apply in safe mode).
  644. ifx.default_host =
  645.  
  646. ; Default user for ifx_connect() (doesn't apply in safe mode).
  647. ifx.default_user =
  648.  
  649. ; Default password for ifx_connect() (doesn't apply in safe mode).
  650. ifx.default_password =
  651.  
  652. ; Allow or prevent persistent links.
  653. ifx.allow_persistent = On
  654.  
  655. ; Maximum number of persistent links.  -1 means no limit.
  656. ifx.max_persistent = -1
  657.  
  658. ; Maximum number of links (persistent + non-persistent).  -1 means no limit.
  659. ifx.max_links = -1
  660.  
  661. ; If on, select statements return the contents of a text blob instead of its id.
  662. ifx.textasvarchar = 0
  663.  
  664. ; If on, select statements return the contents of a byte blob instead of its id.
  665. ifx.byteasvarchar = 0
  666.  
  667. ; Trailing blanks are stripped from fixed-length char columns.  May help the
  668. ; life of Informix SE users.
  669. ifx.charasvarchar = 0
  670.  
  671. ; If on, the contents of text and byte blobs are dumped to a file instead of
  672. ; keeping them in memory.
  673. ifx.blobinfile = 0
  674.  
  675. ; NULL's are returned as empty strings, unless this is set to 1.  In that case,
  676. ; NULL's are returned as string 'NULL'.
  677. ifx.nullformat = 0
  678.  
  679. [Session]
  680. ; Handler used to store/retrieve data.
  681. session.save_handler = files
  682.  
  683. ; Argument passed to save_handler.  In the case of files, this is the path
  684. ; where data files are stored. Note: Windows users have to change this 
  685. ; variable in order to use PHP's session functions.
  686. session.save_path = /tmp
  687.  
  688. ; Whether to use cookies.
  689. session.use_cookies = 1
  690.  
  691.  
  692. ; Name of the session (used as cookie name).
  693. session.name = PHPSESSID
  694.  
  695. ; Initialize session on request startup.
  696. session.auto_start = 0
  697.  
  698. ; Lifetime in seconds of cookie or, if 0, until browser is restarted.
  699. session.cookie_lifetime = 0
  700.  
  701. ; The path for which the cookie is valid.
  702. session.cookie_path = /
  703.  
  704. ; The domain for which the cookie is valid.
  705. session.cookie_domain =
  706.  
  707. ; Handler used to serialize data.  php is the standard serializer of PHP.
  708. session.serialize_handler = php
  709.  
  710. ; Percentual probability that the 'garbage collection' process is started
  711. ; on every session initialization.
  712. session.gc_probability = 1
  713.  
  714. ; After this number of seconds, stored data will be seen as 'garbage' and
  715. ; cleaned up by the garbage collection process.
  716. session.gc_maxlifetime = 1440
  717.  
  718. ; Check HTTP Referer to invalidate externally stored URLs containing ids.
  719. session.referer_check =
  720.  
  721. ; How many bytes to read from the file.
  722. session.entropy_length = 0
  723.  
  724. ; Specified here to create the session id.
  725. session.entropy_file =
  726.  
  727. ;session.entropy_length = 16
  728.  
  729. ;session.entropy_file = /dev/urandom
  730.  
  731. ; Set to {nocache,private,public} to determine HTTP caching aspects.
  732. session.cache_limiter = nocache
  733.  
  734. ; Document expires after n minutes.
  735. session.cache_expire = 180
  736.  
  737. ; use transient sid support if enabled by compiling with --enable-trans-sid.
  738. session.use_trans_sid = 1
  739.  
  740. url_rewriter.tags = "a=href,area=href,frame=src,input=src,form=fakeentry"
  741.  
  742. [MSSQL]
  743. ; Allow or prevent persistent links.
  744. mssql.allow_persistent = On
  745.  
  746. ; Maximum number of persistent links.  -1 means no limit.
  747. mssql.max_persistent = -1
  748.  
  749. ; Maximum number of links (persistent+non persistent).  -1 means no limit.
  750. mssql.max_links = -1
  751.  
  752. ; Minimum error severity to display.
  753. mssql.min_error_severity = 10
  754.  
  755. ; Minimum message severity to display.
  756. mssql.min_message_severity = 10
  757.  
  758. ; Compatability mode with old versions of PHP 3.0.
  759. mssql.compatability_mode = Off
  760.  
  761. ; Valid range 0 - 2147483647.  Default = 4096.
  762. ;mssql.textlimit = 4096
  763.  
  764. ; Valid range 0 - 2147483647.  Default = 4096.
  765. ;mssql.textsize = 4096
  766.  
  767. ; Limits the number of records in each batch.  0 = all records in one batch.
  768. ;mssql.batchsize = 0
  769.  
  770. [Assertion]
  771. ; Assert(expr); active by default.
  772. ;assert.active = On
  773.  
  774. ; Issue a PHP warning for each failed assertion.
  775. ;assert.warning = On
  776.  
  777. ; Don't bail out by default.
  778. ;assert.bail = Off
  779.  
  780. ; User-function to be called if an assertion fails.
  781. ;assert.callback = 0
  782.  
  783. ; Eval the expression with current error_reporting().  Set to true if you want
  784. ; error_reporting(0) around the eval().
  785. ;assert.quiet_eval = 0
  786.  
  787. [Ingres II]
  788. ; Allow or prevent persistent links.
  789. ingres.allow_persistent = On
  790.  
  791. ; Maximum number of persistent links.  -1 means no limit.
  792. ingres.max_persistent = -1
  793.  
  794. ; Maximum number of links, including persistents.  -1 means no limit.
  795. ingres.max_links = -1
  796.  
  797. ; Default database (format: [node_id::]dbname[/srv_class]).
  798. ingres.default_database =
  799.  
  800. ; Default user.
  801. ingres.default_user =
  802.  
  803. ; Default password.
  804. ingres.default_password =
  805.  
  806. [Verisign Payflow Pro]
  807. ; Default Payflow Pro server.
  808. pfpro.defaulthost = "test-payflow.verisign.com"
  809.  
  810. ; Default port to connect to.
  811. pfpro.defaultport = 443
  812.  
  813. ; Default timeout in seconds.
  814. pfpro.defaulttimeout = 30
  815.  
  816. ; Default proxy IP address (if required).
  817. ;pfpro.proxyaddress =
  818.  
  819. ; Default proxy port.
  820. ;pfpro.proxyport =
  821.  
  822. ; Default proxy logon.
  823. ;pfpro.proxylogon =
  824.  
  825. ; Default proxy password.
  826. ;pfpro.proxypassword =
  827.  
  828. [Sockets]
  829. ; Use the system read() function instead of the php_read() wrapper.
  830. sockets.use_system_read = On
  831.  
  832. [com]
  833. ; path to a file containing GUIDs, IIDs or filenames of files with TypeLibs
  834. ;com.typelib_file = 
  835. ; allow Distributed-COM calls
  836. ;com.allow_dcom = true
  837. ; autoregister constants of a components typlib on com_load()
  838. ;com.autoregister_typelib = true
  839. ; register constants casesensitive
  840. ;com.autoregister_casesensitive = false
  841. ; show warnings on duplicate constat registrations
  842. ;com.autoregister_verbose = true
  843.  
  844. [Printer]
  845. ;printer.default_printer = ""
  846.  
  847. [mbstring]
  848. ;mbstring.internal_encoding = EUC-JP
  849. ;mbstring.http_input = auto
  850. ;mbstring.http_output = SJIS
  851. ;mbstring.detect_order = auto
  852. ;mbstring.substitute_character = none;
  853.  
  854. [FrontBase]
  855. ;fbsql.allow_persistant = On
  856. ;fbsql.autocommit = On
  857. ;fbsql.default_database = 
  858. ;fbsql.default_database_password =
  859. ;fbsql.default_host =
  860. ;fbsql.default_password =
  861. ;fbsql.default_user = "_SYSTEM"
  862. ;fbsql.generate_warnings = Off
  863. ;fbsql.max_connections = 128
  864. ;fbsql.max_links = 128
  865. ;fbsql.max_persistent = -1
  866. ;fbsql.max_results = 128
  867. ;fbsql.mbatchSize = 1000
  868.  
  869. ; Local Variables:
  870. ; tab-width: 4
  871. ; End:
  872.