home *** CD-ROM | disk | FTP | other *** search
/ Chip 2001 January / Chip_2001-01_cd1.bin / tema / php / php4-win.exe / php.ini-dist < prev    next >
INI File  |  2000-10-06  |  24KB  |  485 lines

  1. [PHP]
  2.  
  3. ;;;;;;;;;;;;;;;;;;;
  4. ; About this file ;
  5. ;;;;;;;;;;;;;;;;;;;
  6. ; This file controls many aspects of PHP's behavior.  In order for PHP to
  7. ; read it, it must be named 'php.ini'.  PHP looks for it in the current
  8. ; working directory, in the path designated by the environment variable
  9. ; PHPRC, and in the path that was defined in compile time (in that order).
  10. ; Under Windows, the compile-time path is the Windows directory.  The
  11. ; path in which the php.ini file is looked for can be overriden using
  12. ; the -c argument in command line mode.
  13. ;
  14. ; The syntax of the file is extremely simple.  Whitespace and Lines
  15. ; beginning with a semicolon are silently ignored (as you probably guessed).
  16. ; Section headers (e.g. [Foo]) are also silently ignored, even though
  17. ; they might mean something in the future.
  18. ;
  19. ; Directives are specified using the following syntax:
  20. ; directive = value
  21. ; Directive names are *case sensitive* - foo=bar is different from FOO=bar.
  22. ;
  23. ; The value can be a string, a number, a PHP constant (e.g. E_ALL or M_PI), one
  24. ; of the INI constants (On, Off, True, False, Yes, No and None) or an expression
  25. ; (e.g. E_ALL & ~E_NOTICE), or a quoted string ("foo").
  26. ;
  27. ; Expressions in the INI file are limited to bitwise operators and parentheses:
  28. ; |                bitwise OR
  29. ; &                bitwise AND
  30. ; ~                bitwise NOT
  31. ; !                boolean NOT
  32. ;
  33. ; Boolean flags can be turned on using the values 1, On, True or Yes.
  34. ; They can be turned off using the values 0, Off, False or No.
  35. ;
  36. ; An empty string can be denoted by simply not writing anything after the equal
  37. ; sign, or by using the None keyword:
  38. ;
  39. ;   foo =            ; sets foo to an empty string
  40. ;    foo = none        ; sets foo to an empty string
  41. ;    foo = "none"    ; sets foo to the string 'none'
  42. ;
  43. ; If you use constants in your value, and these constants belong to a dynamically
  44. ; loaded extension (either a PHP extension or a Zend extension), you may only
  45. ; use these constants *after* the line that loads the extension.
  46. ;
  47. ; All the values in the php.ini-dist file correspond to the builtin
  48. ; defaults (that is, if no php.ini is used, or if you delete these lines,
  49. ; the builtin defaults will be identical).
  50.  
  51.  
  52. ;;;;;;;;;;;;;;;;;;;;
  53. ; Language Options ;
  54. ;;;;;;;;;;;;;;;;;;;;
  55.  
  56. engine            =    On    ; Enable the PHP scripting language engine under Apache
  57. short_open_tag    =    On    ; allow the <? tag.  otherwise, only <?php and <script> tags are recognized.
  58. asp_tags        =    Off ; allow ASP-style <% %> tags
  59. precision        =    14    ; number of significant digits displayed in floating point numbers
  60. y2k_compliance    =    Off    ; whether to be year 2000 compliant (will cause problems with non y2k compliant browsers)
  61. output_buffering    = Off    ; Output buffering allows you to send header lines (including cookies)
  62.                             ; even after you send body content, in the price of slowing PHP's
  63.                             ; output layer a bit.
  64.                             ; You can enable output buffering by in runtime by calling the output
  65.                             ; buffering functions, or enable output buffering for all files
  66.                             ; by setting this directive to On.
  67. implicit_flush        = Off    ; Implicit flush tells PHP to tell the output layer to flush itself
  68.                             ; automatically after every output block.  This is equivalent to
  69.                             ; calling the PHP function flush() after each and every call to print()
  70.                             ; or echo() and each and every HTML block.
  71.                             ; Turning this option on has serious performance implications, and
  72.                             ; is generally recommended for debugging purposes only.
  73. allow_call_time_pass_reference    = On    ; whether to enable the ability to force arguments to be 
  74.                                         ; passed by reference at function-call time.  This method
  75.                                         ; is deprecated, and is likely to be unsupported in future
  76.                                         ; versions of PHP/Zend.  The encouraged method of specifying
  77.                                         ; which arguments should be passed by reference is in the
  78.                                         ; function declaration.  You're encouraged to try and
  79.                                         ; turn this option Off, and make sure your scripts work
  80.                                         ; properly with it, to ensure they will work with future
  81.                                         ; versions of the language (you will receive a warning
  82.                                         ; each time you use this feature, and the argument will
  83.                                         ; be passed by value instead of by reference).
  84.  
  85. ; Safe Mode
  86. safe_mode        =    Off
  87. safe_mode_exec_dir    =
  88. safe_mode_allowed_env_vars = PHP_                    ; Setting certain environment variables
  89.                                                     ; may be a potential security breach.
  90.                                                     ; This directive contains a comma-delimited
  91.                                                     ; list of prefixes.  In Safe Mode, the
  92.                                                     ; user may only alter environment
  93.                                                     ; variables whose names begin with the
  94.                                                     ; prefixes supplied here.
  95.                                                     ; By default, users will only be able
  96.                                                     ; to set environment variables that begin
  97.                                                     ; with PHP_ (e.g. PHP_FOO=BAR).
  98.                                                     ; Note:  If this directive is empty, PHP
  99.                                                     ; will let the user modify ANY environment
  100.                                                     ; variable!
  101. safe_mode_protected_env_vars = LD_LIBRARY_PATH        ; This directive contains a comma-
  102.                                                     ; delimited list of environment variables,
  103.                                                     ; that the end user won't be able to
  104.                                                     ; change using putenv().
  105.                                                     ; These variables will be protected
  106.                                                     ; even if safe_mode_allowed_env_vars is
  107.                                                     ; set to allow to change them.
  108.  
  109.  
  110. disable_functions    =                                ; This directive allows you to disable certain
  111.                                                     ; functions for security reasons.  It receives
  112.                                                     ; a comma separated list of function names.
  113.                                                     ; This directive is *NOT* affected by whether
  114.                                                     ; Safe Mode is turned on or off.
  115.                                                     
  116.  
  117. ; Colors for Syntax Highlighting mode.  Anything that's acceptable in <font color=???> would work.
  118. highlight.string    =    #DD0000
  119. highlight.comment    =    #FF8000
  120. highlight.keyword    =    #007700
  121. highlight.bg        =    #FFFFFF
  122. highlight.default    =    #0000BB
  123. highlight.html        =    #000000
  124.  
  125. ; Misc
  126. expose_php    =    On        ; Decides whether PHP may expose the fact that it is installed on the
  127.                         ; server (e.g., by adding its signature to the Web server header).
  128.                         ; It is no security threat in any way, but it makes it possible
  129.                         ; to determine whether you use PHP on your server or not.
  130.  
  131.  
  132.  
  133. ;;;;;;;;;;;;;;;;;;;
  134. ; Resource Limits ;
  135. ;;;;;;;;;;;;;;;;;;;
  136.  
  137. max_execution_time = 30     ; Maximum execution time of each script, in seconds
  138. memory_limit = 8M            ; Maximum amount of memory a script may consume (8MB)
  139.  
  140.  
  141. ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
  142. ; Error handling and logging ;
  143. ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
  144. ; error_reporting is a bit-field.  Or each number up to get desired error reporting level
  145. ; E_ALL                - All errors and warnings
  146. ; E_ERROR            - fatal run-time errors
  147. ; E_WARNING            - run-time warnings (non fatal errors)
  148. ; E_PARSE            - compile-time parse errors
  149. ; E_NOTICE            - run-time notices (these are warnings which often result from a bug in
  150. ;                      your code, but it's possible that it was intentional (e.g., using an
  151. ;                      uninitialized variable and relying on the fact it's automatically
  152. ;                      initialized to an empty string)
  153. ; E_CORE_ERROR        - fatal errors that occur during PHP's initial startup
  154. ; E_CORE_WARNING    - warnings (non fatal errors) that occur during PHP's initial startup
  155. ; E_COMPILE_ERROR    - fatal compile-time errors
  156. ; E_COMPILE_WARNING    - compile-time warnings (non fatal errors)
  157. ; E_USER_ERROR        - user-generated error message
  158. ; E_USER_WARNING    - user-generated warning message
  159. ; E_USER_NOTICE        - user-generated notice message
  160. ; Examples:
  161. ; error_reporting = E_ALL & ~E_NOTICE                        ; show all errors, except for notices
  162. ; error_reporting = E_COMPILE_ERROR|E_ERROR|E_CORE_ERROR    ; show only errors
  163. error_reporting    =    E_ALL & ~E_NOTICE        ; Show all errors except for notices
  164. display_errors    =    On    ; Print out errors (as a part of the output)
  165.                         ; For production web sites, you're strongly encouraged
  166.                         ; to turn this feature off, and use error logging instead (see below).
  167.                         ; Keeping display_errors enabled on a production web site may reveal
  168.                         ; security information to end users, such as file paths on your Web server,
  169.                         ; your database schema or other information.
  170. display_startup_errors = Off        ; Even when display_errors is on, errors that occur during
  171.                                     ; PHP's startup sequence are not displayed.  It's strongly
  172.                                     ; recommended to keep display_startup_errors off, except for
  173.                                     ; when debugging.
  174. log_errors        =    Off    ; Log errors into a log file (server-specific log, stderr, or error_log (below))
  175.                         ; As stated above, you're strongly advised to use error logging in place of
  176.                         ; error displaying on production web sites.
  177. track_errors    =    Off    ; Store the last error/warning message in $php_errormsg (boolean)
  178. ;error_prepend_string = "<font color=ff0000>"   ; string to output before an error message
  179. ;error_append_string = "</font>"                ; string to output after an error message
  180. ;error_log    =    filename    ; log errors to specified file
  181. ;error_log    =    syslog        ; log errors to syslog (Event Log on NT, not valid in Windows 95)
  182. warn_plus_overloading    =    Off        ; warn if the + operator is used with strings
  183.  
  184.  
  185. ;;;;;;;;;;;;;;;;;
  186. ; Data Handling ;
  187. ;;;;;;;;;;;;;;;;;
  188. ; Note - track_vars is ALWAYS enabled as of PHP 4.0.3
  189. variables_order        =    "EGPCS"    ; This directive describes the order in which PHP registers
  190.                                 ; GET, POST, Cookie, Environment and Built-in variables (G, P,
  191.                                 ; C, E & S respectively, often referred to as EGPCS or GPC).
  192.                                 ; Registration is done from left to right, newer values override
  193.                                 ; older values.
  194. register_globals    =    On        ; Whether or not to register the EGPCS variables as global
  195.                                 ; variables.  You may want to turn this off if you don't want
  196.                                 ; to clutter your scripts' global scope with user data.  This makes
  197.                                 ; most sense when coupled with track_vars - in which case you can
  198.                                 ; access all of the GPC variables through the $HTTP_*_VARS[],
  199.                                 ; variables.
  200.                                 ; You should do your best to write your scripts so that they do
  201.                                 ; not require register_globals to be on;  Using form variables
  202.                                 ; as globals can easily lead to possible security problems, if
  203.                                 ; the code is not very well thought of.
  204. register_argc_argv    =    On        ; This directive tells PHP whether to declare the argv&argc
  205.                                 ; variables (that would contain the GET information).  If you
  206.                                 ; don't use these variables, you should turn it off for
  207.                                 ; increased performance
  208. post_max_size        =    8M        ; Maximum size of POST data that PHP will accept.
  209. gpc_order            =    "GPC"    ; This directive is deprecated.  Use variables_order instead.
  210.  
  211. ; Magic quotes
  212. magic_quotes_gpc    =    On        ; magic quotes for incoming GET/POST/Cookie data
  213. magic_quotes_runtime=    Off        ; magic quotes for runtime-generated data, e.g. data from SQL, from exec(), etc.
  214. magic_quotes_sybase    =    Off        ; Use Sybase-style magic quotes (escape ' with '' instead of \')
  215.  
  216. ; automatically add files before or after any PHP document
  217. auto_prepend_file    =
  218. auto_append_file    =
  219.  
  220. ; As of 4.0b4, PHP always outputs a character encoding by default in
  221. ; the Content-type: header.  To disable sending of the charset, simply
  222. ; set it to be empty.
  223. ; PHP's built-in default is text/html
  224. default_mimetype = "text/html"
  225. ;default_charset = "iso-8859-1"
  226.  
  227. ;;;;;;;;;;;;;;;;;;;;;;;;;
  228. ; Paths and Directories ;
  229. ;;;;;;;;;;;;;;;;;;;;;;;;;
  230. include_path    =                   ; UNIX: "/path1:/path2"  Windows: "\path1;\path2"
  231. doc_root        =                    ; the root of the php pages, used only if nonempty
  232. user_dir        =                    ; the directory under which php opens the script using /~username, used only if nonempty
  233. extension_dir    =    ./                ; directory in which the loadable extensions (modules) reside
  234. enable_dl        = On                ; Whether or not to enable the dl() function.
  235.                                     ; The dl() function does NOT properly work in multithreaded
  236.                                     ; servers, such as IIS or Zeus, and is automatically disabled
  237.                                     ; on them.
  238.  
  239.  
  240. ;;;;;;;;;;;;;;;;
  241. ; File Uploads ;
  242. ;;;;;;;;;;;;;;;;
  243. file_uploads    = On                ; Whether to allow HTTP file uploads
  244. ;upload_tmp_dir    =                    ; temporary directory for HTTP uploaded files (will use system default if not specified)
  245. upload_max_filesize = 2M            ; Maximum allowed size for uploaded files
  246.  
  247.  
  248. ;;;;;;;;;;;;;;;;;;;;;;
  249. ; Dynamic Extensions ;
  250. ;;;;;;;;;;;;;;;;;;;;;;
  251. ; if you wish to have an extension loaded automaticly, use the
  252. ; following syntax:  extension=modulename.extension
  253. ; for example, on windows,
  254. ; extension=msql.dll
  255. ; or under UNIX,
  256. ; extension=msql.so
  257. ; Note that it should be the name of the module only, no directory information 
  258. ; needs to go here.  Specify the location of the extension with the extension_dir directive above.
  259.  
  260.  
  261. ;Windows Extensions
  262. ;Note that MySQL and ODBC support is now built in, so no dll is needed for it.
  263. ;
  264. ;extension=php_cpdf.dll
  265. ;extension=php_cybercash.dll
  266. ;extension=php_db.dll
  267. ;extension=php_dbase.dll
  268. ;extension=php_domxml.dll
  269. ;extension=php_dotnet.dll
  270. ;extension=php_exif.dll
  271. ;extension=php_fdf.dll
  272. ;extension=php_gd.dll
  273. ;extension=php_gettext.dll
  274. ;extension=php_ifx.dll
  275. ;extension=php_imap.dll
  276. ;extension=php_interbase.dll
  277. ;extension=php_java.dll
  278. ;extension=php_ldap.dll
  279. ;extension=php_mhash.dll
  280. ;extension=php_mssql65.dll
  281. ;extension=php_mssql70.dll
  282. ;extension=php_oci8.dll
  283. ;extension=php_oracle.dll
  284. ;extension=php_pdf.dll
  285. ;extension=php_pgsql.dll
  286. ;extension=php_sablot.dll
  287. ;extension=php_swf.dll
  288. ;extension=php_sybase_ct.dll
  289. ;extension=php_zlib.dll
  290.  
  291.  
  292. ;;;;;;;;;;;;;;;;;;;
  293. ; Module Settings ;
  294. ;;;;;;;;;;;;;;;;;;;
  295.  
  296. [Syslog]
  297. define_syslog_variables    = Off    ; Whether or not to define the various syslog variables,
  298.                                 ; e.g. $LOG_PID, $LOG_CRON, etc.  Turning it off is a
  299.                                 ; good idea performance-wise.  In runtime, you can define
  300.                                 ; these variables by calling define_syslog_variables()
  301.  
  302.  
  303. [mail function]
  304. SMTP            =    localhost            ;for win32 only
  305. sendmail_from    =    me@localhost.com    ;for win32 only
  306. ;sendmail_path    =                        ;for unix only, may supply arguments as well (default is 'sendmail -t -i')
  307.  
  308. [Debugger]
  309. debugger.host    =    localhost
  310. debugger.port    =    7869
  311. debugger.enabled    =    False
  312.  
  313. [Logging]
  314. ; These configuration directives are used by the example logging mechanism.
  315. ; See examples/README.logging for more explanation.
  316. ;logging.method    = db
  317. ;logging.directory = /path/to/log/directory
  318.  
  319. [Java]
  320. ;java.class.path = .\php_java.jar
  321. ;java.home = c:\jdk
  322. ;java.library = c:\jdk\jre\bin\hotspot\jvm.dll 
  323. ;java.library.path = .\
  324.  
  325.  
  326. [SQL]
  327. sql.safe_mode    =    Off
  328.  
  329. [ODBC]
  330. ;uodbc.default_db        =    Not yet implemented
  331. ;uodbc.default_user        =    Not yet implemented
  332. ;uodbc.default_pw        =    Not yet implemented
  333. uodbc.allow_persistent    =    On    ; allow or prevent persistent links
  334. uodbc.check_persistent  =     On    ; check that a connection is still validbefore reuse
  335. uodbc.max_persistent    =    -1    ; maximum number of persistent links. -1 means no limit
  336. uodbc.max_links            =    -1    ; maximum number of links (persistent+non persistent). -1 means no limit
  337. uodbc.defaultlrl    =    4096    ; Handling of LONG fields. Returns number of bytes to variables, 0 means passthru
  338. uodbc.defaultbinmode    =     1    ; Handling of binary data. 0 means passthru, 1 return as is, 2 convert to char
  339. ; See the documentation on odbc_binmode and odbc_longreadlen for an explanation of uodbc.defaultlrl
  340. ; and uodbc.defaultbinmode
  341.  
  342. [MySQL]
  343. mysql.allow_persistent    =    On    ; allow or prevent persistent link
  344. mysql.max_persistent    =    -1    ; maximum number of persistent links. -1 means no limit
  345. mysql.max_links            =    -1    ; maximum number of links (persistent+non persistent).  -1 means no limit
  346. mysql.default_port        =        ; default port number for mysql_connect().  If unset,
  347.                                 ; mysql_connect() will use the $MYSQL_TCP_PORT, or the mysql-tcp
  348.                                 ; entry in /etc/services, or the compile-time defined MYSQL_PORT
  349.                                 ; (in that order).  Win32 will only look at MYSQL_PORT.
  350. mysql.default_socket    =        ; default socket name for local MySQL connects.  If empty, uses the built-in
  351.                                 ; MySQL defaults
  352. mysql.default_host        =        ; default host for mysql_connect() (doesn't apply in safe mode)
  353. mysql.default_user        =        ; default user for mysql_connect() (doesn't apply in safe mode)
  354. mysql.default_password    =        ; default password for mysql_connect() (doesn't apply in safe mode)
  355.                                 ; Note that this is generally a *bad* idea to store passwords
  356.                                 ; in this file.  *Any* user with PHP access can run
  357.                                 ; 'echo cfg_get_var("mysql.default_password")' and reveal that
  358.                                 ; password!  And of course, any users with read access to this
  359.                                 ; file will be able to reveal the password as well.
  360.  
  361. [mSQL]
  362. msql.allow_persistent    =    On    ; allow or prevent persistent link
  363. msql.max_persistent        =    -1    ; maximum number of persistent links. -1 means no limit
  364. msql.max_links            =    -1    ; maximum number of links (persistent+non persistent).  -1 means no limit
  365.  
  366. [PostgresSQL]
  367. pgsql.allow_persistent    =    On    ; allow or prevent persistent link
  368. pgsql.max_persistent    =    -1    ; maximum number of persistent links. -1 means no limit
  369. pgsql.max_links            =    -1    ; maximum number of links (persistent+non persistent).  -1 means no limit
  370.  
  371. [Sybase]
  372. sybase.allow_persistent    =    On    ; allow or prevent persistent link
  373. sybase.max_persistent    =    -1    ; maximum number of persistent links. -1 means no limit
  374. sybase.max_links        =    -1    ; maximum number of links (persistent+non persistent).  -1 means no limit
  375. ;sybase.interface_file    =    "/usr/sybase/interfaces"
  376. sybase.min_error_severity    =    10    ; minimum error severity to display
  377. sybase.min_message_severity    =    10    ; minimum message severity to display
  378. sybase.compatability_mode    = Off    ; compatability mode with old versions of PHP 3.0.
  379.                                     ; If on, this will cause PHP to automatically assign types to results
  380.                                     ; according to their Sybase type, instead of treating them all as
  381.                                     ; strings.  This compatability mode will probably not stay around
  382.                                     ; forever, so try applying whatever necessary changes to your code,
  383.                                     ; and turn it off.
  384.  
  385. [Sybase-CT]
  386. sybct.allow_persistent    =    On        ; allow or prevent persistent link
  387. sybct.max_persistent    =    -1        ; maximum number of persistent links. -1 means no limit
  388. sybct.max_links            =    -1        ; maximum number of links (persistent+non persistent).  -1 means no limit
  389. sybct.min_server_severity    =    10    ; minimum server message severity to display
  390. sybct.min_client_severity    =    10    ; minimum client message severity to display
  391.  
  392. [bcmath]
  393. bcmath.scale    =    0    ; number of decimal digits for all bcmath functions
  394.  
  395. [browscap]
  396. ;browscap    =    extra/browscap.ini
  397.  
  398. [Informix]
  399. ifx.default_host        =        ; default host for ifx_connect() (doesn't apply in safe mode)
  400. ifx.default_user        =        ; default user for ifx_connect() (doesn't apply in safe mode)
  401. ifx.default_password        =        ; default password for ifx_connect() (doesn't apply in safe mode)
  402. ifx.allow_persistent        =    On    ; allow or prevent persistent link
  403. ifx.max_persistent        =    -1    ; maximum number of persistent links. -1 means no limit
  404. ifx.max_links            =    -1    ; maximum number of links (persistent+non persistent).  -1 means no limit
  405. ifx.textasvarchar        =    0    ; if set on, select statements return the contents of a text blob instead of it's id
  406. ifx.byteasvarchar        =    0    ; if set on, select statements return the contents of a byte blob instead of it's id
  407. ifx.charasvarchar        =    0    ; trailing blanks are stripped from fixed-length char columns. May help the life
  408.                         ; of Informix SE users. 
  409. ifx.blobinfile            =    0    ; if set on, the contents of text&byte blobs are dumped to a file instead of
  410.                         ; keeping them in memory
  411. ifx.nullformat            =    0    ; NULL's are returned as empty strings, unless this is set to 1. In that case,
  412.                         ; NULL's are returned as string 'NULL'.
  413.  
  414. [Session]
  415. session.save_handler      = files   ; handler used to store/retrieve data
  416. session.save_path         = /tmp    ; argument passed to save_handler
  417.                                     ; in the case of files, this is the
  418.                                     ; path where data files are stored
  419. session.use_cookies       = 1       ; whether to use cookies
  420. session.name              = PHPSESSID  
  421.                                     ; name of the session
  422.                                     ; is used as cookie name
  423. session.auto_start        = 0       ; initialize session on request startup
  424. session.cookie_lifetime   = 0       ; lifetime in seconds of cookie
  425.                                     ; or if 0, until browser is restarted
  426. session.cookie_path       = /       ; the path the cookie is valid for
  427. session.cookie_domain     =         ; the domain the cookie is valid for
  428. session.serialize_handler = php     ; handler used to serialize data
  429.                                     ; php is the standard serializer of PHP
  430. session.gc_probability    = 1       ; percentual probability that the 
  431.                                     ; 'garbage collection' process is started
  432.                                     ; on every session initialization
  433. session.gc_maxlifetime    = 1440    ; after this number of seconds, stored
  434.                                     ; data will be seen as 'garbage' and
  435.                                     ; cleaned up by the gc process
  436. session.referer_check     =         ; check HTTP Referer to invalidate 
  437.                                     ; externally stored URLs containing ids
  438. session.entropy_length    = 0       ; how many bytes to read from the file
  439. session.entropy_file      =         ; specified here to create the session id
  440. ; session.entropy_length    = 16
  441. ; session.entropy_file      = /dev/urandom
  442. session.cache_limiter     = nocache ; set to {nocache,private,public} to
  443.                                     ; determine HTTP caching aspects
  444. session.cache_expire      = 180     ; document expires after n minutes
  445. session.use_trans_sid     = 1       ; use transient sid support if enabled
  446.                                     ; by compiling with --enable-trans-sid
  447.  
  448. [MSSQL]
  449. ;extension=php_mssql.dll
  450. mssql.allow_persistent        =    On    ; allow or prevent persistent link
  451. mssql.max_persistent        =    -1    ; maximum number of persistent links. -1 means no limit
  452. mssql.max_links                =    -1    ; maximum number of links (persistent+non persistent).  -1 means no limit
  453. mssql.min_error_severity    =    10    ; minimum error severity to display
  454. mssql.min_message_severity    =    10    ; minimum message severity to display
  455. mssql.compatability_mode    = Off    ; compatability mode with old versions of PHP 3.0.
  456.  
  457. [Assertion]
  458. ;assert.active                =    On    ; assert(expr); active by default
  459. ;assert.warning                =    On    ; issue a PHP warning for each failed assertion.
  460. ;assert.bail                =    Off    ; don't bail out by default.
  461. ;assert.callback            =    0    ; user-function to be called if an assertion fails.
  462. ;assert.quiet_eval            =    0    ; eval the expression with current error_reporting(). set to true if you want error_reporting(0) around the eval().
  463.  
  464. [Ingres II]
  465. ingres.allow_persistent        =    On    ; allow or prevent persistent link
  466. ingres.max_persistent        =    -1    ; maximum number of persistent links. (-1 means no limit)
  467. ingres.max_links            =    -1    ; maximum number of links, including persistents (-1 means no limit)
  468. ingres.default_database        =        ; default database (format : [node_id::]dbname[/srv_class]
  469. ingres.default_user            =        ; default user
  470. ingres.default_password        =        ; default password
  471.  
  472. [Verisign Payflow Pro]
  473. pfpro.defaulthost            =    "test.signio.com"    ; default Signio server
  474. pfpro.defaultport            =    443    ; default port to connect to
  475. pfpro.defaulttimeout        =    30    ; default timeout in seconds
  476.  
  477. ; pfpro.proxyaddress        =        ; default proxy IP address (if required)
  478. ; pfpro.proxyport            =        ; default proxy port
  479. ; pfpro.proxylogon            =        ; default proxy logon
  480. ; pfpro.proxypassword        =        ; default proxy password
  481.  
  482. ; Local Variables:
  483. ; tab-width: 4
  484. ; End:
  485.