home *** CD-ROM | disk | FTP | other *** search
/ PC World 2005 April / PCWorld_2005-04_cd.bin / akce / web / phptriad / phptriad2-2-1.exe / winnt / php.ini
INI File  |  2002-02-07  |  27KB  |  856 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:\apache\php\pear"
  349.  
  350. ; The root of the PHP pages, used only if nonempty.
  351. doc_root =
  352.  
  353. ; The directory under which PHP opens the script using /~usernamem used only
  354. ; if nonempty.
  355. user_dir =
  356.  
  357. ; Directory in which the loadable extensions (modules) reside.
  358. extension_dir = ./extensions
  359.  
  360. ; Whether or not to enable the dl() function.  The dl() function does NOT work
  361. ; properly in multithreaded servers, such as IIS or Zeus, and is automatically
  362. ; disabled on them.
  363. enable_dl = On
  364.  
  365.  
  366. ;;;;;;;;;;;;;;;;
  367. ; File Uploads ;
  368. ;;;;;;;;;;;;;;;;
  369.  
  370. ; Whether to allow HTTP file uploads.
  371. file_uploads = On
  372.  
  373. ; Temporary directory for HTTP uploaded files (will use system default if not
  374. ; specified).
  375. ;upload_tmp_dir =
  376.  
  377. ; Maximum allowed size for uploaded files.
  378. upload_max_filesize = 32M
  379.  
  380.  
  381. ;;;;;;;;;;;;;;;;;;
  382. ; Fopen wrappers ;
  383. ;;;;;;;;;;;;;;;;;;
  384.  
  385. ; Whether to allow the treatment of URLs (like http:// or ftp://) as files.
  386. allow_url_fopen = On
  387.  
  388. ; Define the anonymous ftp password (your email address)
  389. ;from="john@doe.com"
  390.  
  391.  
  392. ;;;;;;;;;;;;;;;;;;;;;;
  393. ; Dynamic Extensions ;
  394. ;;;;;;;;;;;;;;;;;;;;;;
  395. ;
  396. ; If you wish to have an extension loaded automatically, use the following
  397. ; syntax:
  398. ;
  399. ;   extension=modulename.extension
  400. ;
  401. ; For example, on Windows:
  402. ;
  403. ;   extension=msql.dll
  404. ;
  405. ; ... or under UNIX:
  406. ;
  407. ;   extension=msql.so
  408. ;
  409. ; Note that it should be the name of the module only; no directory information 
  410. ; needs to go here.  Specify the location of the extension with the
  411. ; extension_dir directive above.
  412.  
  413.  
  414. ;Windows Extensions
  415. ;Note that MySQL and ODBC support is now built in, so no dll is needed for it.
  416. ;
  417. ;extension=php_bz2.dll
  418. ;extension=php_ctype.dll
  419. ;extension=php_cpdf.dll
  420. ;extension=php_curl.dll
  421. ;extension=php_cybercash.dll
  422. ;extension=php_db.dll
  423. ;extension=php_dba.dll
  424. ;extension=php_dbase.dll
  425. ;extension=php_dbx.dll
  426. ;extension=php_domxml.dll
  427. ;extension=php_dotnet.dll
  428. ;extension=php_exif.dll
  429. ;extension=php_fbsql.dll
  430. ;extension=php_fdf.dll
  431. ;extension=php_filepro.dll
  432. ;extension=php_gd.dll
  433. ;extension=php_gettext.dll
  434. ;extension=php_hyperwave.dll
  435. ;extension=php_iconv.dll
  436. ;extension=php_ifx.dll
  437. ;extension=php_iisfunc.dll
  438. ;extension=php_imap.dll
  439. ;extension=php_ingres.dll
  440. ;extension=php_interbase.dll
  441. ;extension=php_java.dll
  442. ;extension=php_ldap.dll
  443. ;extension=php_mbstring.dll
  444. ;extension=php_mcrypt.dll
  445. ;extension=php_mhash.dll
  446. ;extension=php_ming.dll
  447. ;extension=php_mssql.dll
  448. ;extension=php_oci8.dll
  449. ;extension=php_openssl.dll
  450. ;extension=php_oracle.dll
  451. ;extension=php_pdf.dll
  452. ;extension=php_pgsql.dll
  453. ;extension=php_printer.dll
  454. ;extension=php_sablot.dll
  455. ;extension=php_shmop.dll
  456. ;extension=php_snmp.dll
  457. ;extension=php_sockets.dll
  458. ;extension=php_sybase_ct.dll
  459. ;extension=php_xslt.dll
  460. ;extension=php_yaz.dll
  461. ;extension=php_zlib.dll
  462.  
  463.  
  464. ;;;;;;;;;;;;;;;;;;;
  465. ; Module Settings ;
  466. ;;;;;;;;;;;;;;;;;;;
  467.  
  468. [Syslog]
  469. ; Whether or not to define the various syslog variables (e.g. $LOG_PID,
  470. ; $LOG_CRON, etc.).  Turning it off is a good idea performance-wise.  In
  471. ; runtime, you can define these variables by calling define_syslog_variables().
  472. define_syslog_variables  = Off
  473.  
  474. [mail function]
  475. ; For Win32 only.
  476. SMTP = localhost
  477.  
  478. ; For Win32 only.
  479. sendmail_from = me@localhost.com
  480.  
  481. ; For Unix only.  You may supply arguments as well (default: 'sendmail -t -i').
  482. ;sendmail_path =
  483.  
  484. [Logging]
  485. ; These configuration directives are used by the example logging mechanism.
  486. ; See examples/README.logging for more explanation.
  487. ;logging.method = db
  488. ;logging.directory = /path/to/log/directory
  489.  
  490. [Java]
  491. ;java.class.path = .\php_java.jar
  492. ;java.home = c:\jdk
  493. ;java.library = c:\jdk\jre\bin\hotspot\jvm.dll 
  494. ;java.library.path = .\
  495.  
  496. [SQL]
  497. sql.safe_mode = Off
  498.  
  499. [ODBC]
  500. ;odbc.default_db    =  Not yet implemented
  501. ;odbc.default_user  =  Not yet implemented
  502. ;odbc.default_pw    =  Not yet implemented
  503.  
  504. ; Allow or prevent persistent links.
  505. odbc.allow_persistent = On
  506.  
  507. ; Check that a connection is still valid before reuse.
  508. odbc.check_persistent = On
  509.  
  510. ; Maximum number of persistent links.  -1 means no limit.
  511. odbc.max_persistent = -1
  512.  
  513. ; Maximum number of links (persistent + non-persistent).  -1 means no limit.
  514. odbc.max_links = -1  
  515.  
  516. ; Handling of LONG fields.  Returns number of bytes to variables.  0 means
  517. ; passthru.
  518. odbc.defaultlrl = 4096  
  519.  
  520. ; Handling of binary data.  0 means passthru, 1 return as is, 2 convert to char.
  521. ; See the documentation on odbc_binmode and odbc_longreadlen for an explanation
  522. ; of uodbc.defaultlrl and uodbc.defaultbinmode
  523. odbc.defaultbinmode = 1  
  524.  
  525. [MySQL]
  526. ; Allow or prevent persistent links.
  527. mysql.allow_persistent = On
  528.  
  529. ; Maximum number of persistent links.  -1 means no limit.
  530. mysql.max_persistent = -1
  531.  
  532. ; Maximum number of links (persistent + non-persistent).  -1 means no limit.
  533. mysql.max_links = -1
  534.  
  535. ; Default port number for mysql_connect().  If unset, mysql_connect() will use
  536. ; the $MYSQL_TCP_PORT or the mysql-tcp entry in /etc/services or the
  537. ; compile-time value defined MYSQL_PORT (in that order).  Win32 will only look
  538. ' at MYSQL_PORT.
  539. mysql.default_port =
  540.  
  541. ; Default socket name for local MySQL connects.  If empty, uses the built-in
  542. ; MySQL defaults.
  543. mysql.default_socket =
  544.  
  545. ; Default host for mysql_connect() (doesn't apply in safe mode).
  546. mysql.default_host =
  547.  
  548. ; Default user for mysql_connect() (doesn't apply in safe mode).
  549. mysql.default_user =
  550.  
  551. ; Default password for mysql_connect() (doesn't apply in safe mode).
  552. ; Note that this is generally a *bad* idea to store passwords in this file.
  553. ; *Any* user with PHP access can run 'echo cfg_get_var("mysql.default_password")
  554. ; and reveal this password!  And of course, any users with read access to this
  555. ; file will be able to reveal the password as well.
  556. mysql.default_password =
  557.  
  558. [mSQL]
  559. ; Allow or prevent persistent links.
  560. msql.allow_persistent = On
  561.  
  562. ; Maximum number of persistent links.  -1 means no limit.
  563. msql.max_persistent = -1
  564.  
  565. ; Maximum number of links (persistent+non persistent).  -1 means no limit.
  566. msql.max_links = -1
  567.  
  568. [PostgresSQL]
  569. ; Allow or prevent persistent links.
  570. pgsql.allow_persistent = On
  571.  
  572. ; Maximum number of persistent links.  -1 means no limit.
  573. pgsql.max_persistent = -1
  574.  
  575. ; Maximum number of links (persistent+non persistent).  -1 means no limit.
  576. pgsql.max_links = -1
  577.  
  578. [Sybase]
  579. ; Allow or prevent persistent links.
  580. sybase.allow_persistent = On
  581.  
  582. ; Maximum number of persistent links.  -1 means no limit.
  583. sybase.max_persistent = -1
  584.  
  585. ; Maximum number of links (persistent + non-persistent).  -1 means no limit.
  586. sybase.max_links = -1
  587.  
  588. ;sybase.interface_file = "/usr/sybase/interfaces"
  589.  
  590. ; Minimum error severity to display.
  591. sybase.min_error_severity = 10
  592.  
  593. ; Minimum message severity to display.
  594. sybase.min_message_severity = 10
  595.  
  596. ; Compatability mode with old versions of PHP 3.0.
  597. ; If on, this will cause PHP to automatically assign types to results according
  598. ; to their Sybase type, instead of treating them all as strings.  This
  599. ; compatability mode will probably not stay around forever, so try applying
  600. ; whatever necessary changes to your code, and turn it off.
  601. sybase.compatability_mode = Off
  602.  
  603. [Sybase-CT]
  604. ; Allow or prevent persistent links.
  605. sybct.allow_persistent = On
  606.  
  607. ; Maximum number of persistent links.  -1 means no limit.
  608. sybct.max_persistent = -1
  609.  
  610. ; Maximum number of links (persistent + non-persistent).  -1 means no limit.
  611. sybct.max_links = -1
  612.  
  613. ; Minimum server message severity to display.
  614. sybct.min_server_severity = 10
  615.  
  616. ; Minimum client message severity to display.
  617. sybct.min_client_severity = 10
  618.  
  619. [bcmath]
  620. ; Number of decimal digits for all bcmath functions.
  621. bcmath.scale = 0
  622.  
  623. [browscap]
  624. ;browscap = extra/browscap.ini
  625.  
  626. [Informix]
  627. ; Default host for ifx_connect() (doesn't apply in safe mode).
  628. ifx.default_host =
  629.  
  630. ; Default user for ifx_connect() (doesn't apply in safe mode).
  631. ifx.default_user =
  632.  
  633. ; Default password for ifx_connect() (doesn't apply in safe mode).
  634. ifx.default_password =
  635.  
  636. ; Allow or prevent persistent links.
  637. ifx.allow_persistent = On
  638.  
  639. ; Maximum number of persistent links.  -1 means no limit.
  640. ifx.max_persistent = -1
  641.  
  642. ; Maximum number of links (persistent + non-persistent).  -1 means no limit.
  643. ifx.max_links = -1
  644.  
  645. ; If on, select statements return the contents of a text blob instead of its id.
  646. ifx.textasvarchar = 0
  647.  
  648. ; If on, select statements return the contents of a byte blob instead of its id.
  649. ifx.byteasvarchar = 0
  650.  
  651. ; Trailing blanks are stripped from fixed-length char columns.  May help the
  652. ; life of Informix SE users.
  653. ifx.charasvarchar = 0
  654.  
  655. ; If on, the contents of text and byte blobs are dumped to a file instead of
  656. ; keeping them in memory.
  657. ifx.blobinfile = 0
  658.  
  659. ; NULL's are returned as empty strings, unless this is set to 1.  In that case,
  660. ; NULL's are returned as string 'NULL'.
  661. ifx.nullformat = 0
  662.  
  663. [Session]
  664. ; Handler used to store/retrieve data.
  665. session.save_handler = files
  666.  
  667. ; Argument passed to save_handler.  In the case of files, this is the path
  668. ; where data files are stored. Note: Windows users have to change this 
  669. ; variable in order to use PHP's session functions.
  670. session.save_path = c:/apache/tmp
  671.  
  672. ; Whether to use cookies.
  673. session.use_cookies = 1
  674.  
  675.  
  676. ; Name of the session (used as cookie name).
  677. session.name = PHPSESSID
  678.  
  679. ; Initialize session on request startup.
  680. session.auto_start = 0
  681.  
  682. ; Lifetime in seconds of cookie or, if 0, until browser is restarted.
  683. session.cookie_lifetime = 0
  684.  
  685. ; The path for which the cookie is valid.
  686. session.cookie_path = /
  687.  
  688. ; The domain for which the cookie is valid.
  689. session.cookie_domain =
  690.  
  691. ; Handler used to serialize data.  php is the standard serializer of PHP.
  692. session.serialize_handler = php
  693.  
  694. ; Percentual probability that the 'garbage collection' process is started
  695. ; on every session initialization.
  696. session.gc_probability = 1
  697.  
  698. ; After this number of seconds, stored data will be seen as 'garbage' and
  699. ; cleaned up by the garbage collection process.
  700. session.gc_maxlifetime = 1440
  701.  
  702. ; Check HTTP Referer to invalidate externally stored URLs containing ids.
  703. session.referer_check =
  704.  
  705. ; How many bytes to read from the file.
  706. session.entropy_length = 0
  707.  
  708. ; Specified here to create the session id.
  709. session.entropy_file =
  710.  
  711. ;session.entropy_length = 16
  712.  
  713. ;session.entropy_file = /dev/urandom
  714.  
  715. ; Set to {nocache,private,public} to determine HTTP caching aspects.
  716. session.cache_limiter = nocache
  717.  
  718. ; Document expires after n minutes.
  719. session.cache_expire = 180
  720.  
  721. ; use transient sid support if enabled by compiling with --enable-trans-sid.
  722. session.use_trans_sid = 1
  723.  
  724. url_rewriter.tags = "a=href,area=href,frame=src,input=src,form=fakeentry"
  725.  
  726. [MSSQL]
  727. ; Allow or prevent persistent links.
  728. mssql.allow_persistent = On
  729.  
  730. ; Maximum number of persistent links.  -1 means no limit.
  731. mssql.max_persistent = -1
  732.  
  733. ; Maximum number of links (persistent+non persistent).  -1 means no limit.
  734. mssql.max_links = -1
  735.  
  736. ; Minimum error severity to display.
  737. mssql.min_error_severity = 10
  738.  
  739. ; Minimum message severity to display.
  740. mssql.min_message_severity = 10
  741.  
  742. ; Compatability mode with old versions of PHP 3.0.
  743. mssql.compatability_mode = Off
  744.  
  745. ; Valid range 0 - 2147483647.  Default = 4096.
  746. ;mssql.textlimit = 4096
  747.  
  748. ; Valid range 0 - 2147483647.  Default = 4096.
  749. ;mssql.textsize = 4096
  750.  
  751. ; Limits the number of records in each batch.  0 = all records in one batch.
  752. ;mssql.batchsize = 0
  753.  
  754. [Assertion]
  755. ; Assert(expr); active by default.
  756. ;assert.active = On
  757.  
  758. ; Issue a PHP warning for each failed assertion.
  759. ;assert.warning = On
  760.  
  761. ; Don't bail out by default.
  762. ;assert.bail = Off
  763.  
  764. ; User-function to be called if an assertion fails.
  765. ;assert.callback = 0
  766.  
  767. ; Eval the expression with current error_reporting().  Set to true if you want
  768. ; error_reporting(0) around the eval().
  769. ;assert.quiet_eval = 0
  770.  
  771. [Ingres II]
  772. ; Allow or prevent persistent links.
  773. ingres.allow_persistent = On
  774.  
  775. ; Maximum number of persistent links.  -1 means no limit.
  776. ingres.max_persistent = -1
  777.  
  778. ; Maximum number of links, including persistents.  -1 means no limit.
  779. ingres.max_links = -1
  780.  
  781. ; Default database (format: [node_id::]dbname[/srv_class]).
  782. ingres.default_database =
  783.  
  784. ; Default user.
  785. ingres.default_user =
  786.  
  787. ; Default password.
  788. ingres.default_password =
  789.  
  790. [Verisign Payflow Pro]
  791. ; Default Payflow Pro server.
  792. pfpro.defaulthost = "test-payflow.verisign.com"
  793.  
  794. ; Default port to connect to.
  795. pfpro.defaultport = 443
  796.  
  797. ; Default timeout in seconds.
  798. pfpro.defaulttimeout = 30
  799.  
  800. ; Default proxy IP address (if required).
  801. ;pfpro.proxyaddress =
  802.  
  803. ; Default proxy port.
  804. ;pfpro.proxyport =
  805.  
  806. ; Default proxy logon.
  807. ;pfpro.proxylogon =
  808.  
  809. ; Default proxy password.
  810. ;pfpro.proxypassword =
  811.  
  812. [Sockets]
  813. ; Use the system read() function instead of the php_read() wrapper.
  814. sockets.use_system_read = On
  815.  
  816. [com]
  817. ; path to a file containing GUIDs, IIDs or filenames of files with TypeLibs
  818. ;com.typelib_file = 
  819. ; allow Distributed-COM calls
  820. ;com.allow_dcom = true
  821. ; autoregister constants of a components typlib on com_load()
  822. ;com.autoregister_typelib = true
  823. ; register constants casesensitive
  824. ;com.autoregister_casesensitive = false
  825. ; show warnings on duplicate constat registrations
  826. ;com.autoregister_verbose = true
  827.  
  828. [Printer]
  829. ;printer.default_printer = ""
  830.  
  831. [mbstring]
  832. ;mbstring.internal_encoding = EUC-JP
  833. ;mbstring.http_input = auto
  834. ;mbstring.http_output = SJIS
  835. ;mbstring.detect_order = auto
  836. ;mbstring.substitute_character = none;
  837.  
  838. [FrontBase]
  839. ;fbsql.allow_persistant = On
  840. ;fbsql.autocommit = On
  841. ;fbsql.default_database = 
  842. ;fbsql.default_database_password =
  843. ;fbsql.default_host =
  844. ;fbsql.default_password =
  845. ;fbsql.default_user = "_SYSTEM"
  846. ;fbsql.generate_warnings = Off
  847. ;fbsql.max_connections = 128
  848. ;fbsql.max_links = 128
  849. ;fbsql.max_persistent = -1
  850. ;fbsql.max_results = 128
  851. ;fbsql.mbatchSize = 1000
  852.  
  853. ; Local Variables:
  854. ; tab-width: 4
  855. ; End:
  856.