home *** CD-ROM | disk | FTP | other *** search
/ PC World 2001 August / PCWorld_2001-08_cd.bin / Komunikace / phptriad / phptriadsetup2-11.exe / php / php.ini-dist < prev    next >
INI File  |  2001-04-22  |  25KB  |  776 lines

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