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