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

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