You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

534 lines
25 KiB

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