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.

1337 lines
48 KiB

22 years ago
22 years ago
22 years ago
22 years ago
22 years ago
22 years ago
22 years ago
20 years ago
24 years ago
22 years ago
22 years ago
22 years ago
20 years ago
22 years ago
20 years ago
22 years ago
20 years ago
22 years ago
22 years ago
21 years ago
21 years ago
20 years ago
20 years ago
20 years ago
20 years ago
21 years ago
22 years ago
22 years ago
22 years ago
21 years ago
21 years ago
21 years ago
18 years ago
21 years ago
  1. [PHP]
  2. ;;;;;;;;;;;;;;;;;;;
  3. ; About php.ini ;
  4. ;;;;;;;;;;;;;;;;;;;
  5. ; This file controls many aspects of PHP's behavior. In order for PHP to
  6. ; read it, it must be named 'php.ini'. PHP looks for it in the current
  7. ; working directory, in the path designated by the environment variable
  8. ; PHPRC, and in the path that was defined in compile time (in that order).
  9. ; Under Windows, the compile-time path is the Windows directory. The
  10. ; path in which the php.ini file is looked for can be overridden using
  11. ; the -c argument in command line mode.
  12. ;
  13. ; The syntax of the file is extremely simple. Whitespace and Lines
  14. ; beginning with a semicolon are silently ignored (as you probably guessed).
  15. ; Section headers (e.g. [Foo]) are also silently ignored, even though
  16. ; they might mean something in the future.
  17. ;
  18. ; Directives are specified using the following syntax:
  19. ; directive = value
  20. ; Directive names are *case sensitive* - foo=bar is different from FOO=bar.
  21. ;
  22. ; The value can be a string, a number, a PHP constant (e.g. E_ALL or M_PI), one
  23. ; of the INI constants (On, Off, True, False, Yes, No and None) or an expression
  24. ; (e.g. E_ALL & ~E_NOTICE), or a quoted string ("foo").
  25. ;
  26. ; Expressions in the INI file are limited to bitwise operators and parentheses:
  27. ; | bitwise OR
  28. ; & bitwise AND
  29. ; ~ bitwise NOT
  30. ; ! boolean NOT
  31. ;
  32. ; Boolean flags can be turned on using the values 1, On, True or Yes.
  33. ; They can be turned off using the values 0, Off, False or No.
  34. ;
  35. ; An empty string can be denoted by simply not writing anything after the equal
  36. ; sign, or by using the None keyword:
  37. ;
  38. ; foo = ; sets foo to an empty string
  39. ; foo = none ; sets foo to an empty string
  40. ; foo = "none" ; sets foo to the string 'none'
  41. ;
  42. ; If you use constants in your value, and these constants belong to a
  43. ; dynamically loaded extension (either a PHP extension or a Zend extension),
  44. ; you may only use these constants *after* the line that loads the extension.
  45. ;
  46. ;
  47. ;;;;;;;;;;;;;;;;;;;
  48. ; About this file ;
  49. ;;;;;;;;;;;;;;;;;;;
  50. ; This is the recommended, PHP 5-style version of the php.ini-dist file. It
  51. ; sets some non standard settings, that make PHP more efficient, more secure,
  52. ; and encourage cleaner coding.
  53. ;
  54. ; The price is that with these settings, PHP may be incompatible with some
  55. ; applications, and sometimes, more difficult to develop with. Using this
  56. ; file is warmly recommended for production sites. As all of the changes from
  57. ; the standard settings are thoroughly documented, you can go over each one,
  58. ; and decide whether you want to use it or not.
  59. ;
  60. ; For general information about the php.ini file, please consult the php.ini-dist
  61. ; file, included in your PHP distribution.
  62. ;
  63. ; This file is different from the php.ini-dist file in the fact that it features
  64. ; different values for several directives, in order to improve performance, while
  65. ; possibly breaking compatibility with the standard out-of-the-box behavior of
  66. ; PHP. Please make sure you read what's different, and modify your scripts
  67. ; accordingly, if you decide to use this file instead.
  68. ;
  69. ; - register_long_arrays = Off [Performance]
  70. ; Disables registration of the older (and deprecated) long predefined array
  71. ; variables ($HTTP_*_VARS). Instead, use the superglobals that were
  72. ; introduced in PHP 4.1.0
  73. ; - display_errors = Off [Security]
  74. ; With this directive set to off, errors that occur during the execution of
  75. ; scripts will no longer be displayed as a part of the script output, and thus,
  76. ; will no longer be exposed to remote users. With some errors, the error message
  77. ; content may expose information about your script, web server, or database
  78. ; server that may be exploitable for hacking. Production sites should have this
  79. ; directive set to off.
  80. ; - log_errors = On [Security]
  81. ; This directive complements the above one. Any errors that occur during the
  82. ; execution of your script will be logged (typically, to your server's error log,
  83. ; but can be configured in several ways). Along with setting display_errors to off,
  84. ; this setup gives you the ability to fully understand what may have gone wrong,
  85. ; without exposing any sensitive information to remote users.
  86. ; - output_buffering = 4096 [Performance]
  87. ; Set a 4KB output buffer. Enabling output buffering typically results in less
  88. ; writes, and sometimes less packets sent on the wire, which can often lead to
  89. ; better performance. The gain this directive actually yields greatly depends
  90. ; on which Web server you're working with, and what kind of scripts you're using.
  91. ; - register_argc_argv = Off [Performance]
  92. ; Disables registration of the somewhat redundant $argv and $argc global
  93. ; variables.
  94. ; - magic_quotes_gpc = Off [Performance]
  95. ; Input data is no longer escaped with slashes so that it can be sent into
  96. ; SQL databases without further manipulation. Instead, you should use the
  97. ; database vendor specific escape string function on each input element you
  98. ; wish to send to a database.
  99. ; - variables_order = "GPCS" [Performance]
  100. ; The environment variables are not hashed into the $_ENV. To access
  101. ; environment variables, you can use getenv() instead.
  102. ; - error_reporting = E_ALL [Code Cleanliness, Security(?)]
  103. ; By default, PHP suppresses errors of type E_NOTICE. These error messages
  104. ; are emitted for non-critical errors, but that could be a symptom of a bigger
  105. ; problem. Most notably, this will cause error messages about the use
  106. ; of uninitialized variables to be displayed.
  107. ; - allow_call_time_pass_reference = Off [Code cleanliness]
  108. ; It's not possible to decide to force a variable to be passed by reference
  109. ; when calling a function. The PHP 4 style to do this is by making the
  110. ; function require the relevant argument by reference.
  111. ; - short_open_tag = Off [Portability]
  112. ; Using short tags is discouraged when developing code meant for redistribution
  113. ; since short tags may not be supported on the target server.
  114. ;;;;;;;;;;;;;;;;;;;;
  115. ; Language Options ;
  116. ;;;;;;;;;;;;;;;;;;;;
  117. ; Enable the PHP scripting language engine under Apache.
  118. engine = On
  119. ; Enable compatibility mode with Zend Engine 1 (PHP 4.x)
  120. zend.ze1_compatibility_mode = Off
  121. ; Allow the <? tag. Otherwise, only <?php and <script> tags are recognized.
  122. ; NOTE: Using short tags should be avoided when developing applications or
  123. ; libraries that are meant for redistribution, or deployment on PHP
  124. ; servers which are not under your control, because short tags may not
  125. ; be supported on the target server. For portable, redistributable code,
  126. ; be sure not to use short tags.
  127. short_open_tag = Off
  128. ; Allow ASP-style <% %> tags.
  129. asp_tags = Off
  130. ; The number of significant digits displayed in floating point numbers.
  131. precision = 14
  132. ; Enforce year 2000 compliance (will cause problems with non-compliant browsers)
  133. y2k_compliance = On
  134. ; Output buffering allows you to send header lines (including cookies) even
  135. ; after you send body content, at the price of slowing PHP's output layer a
  136. ; bit. You can enable output buffering during runtime by calling the output
  137. ; buffering functions. You can also enable output buffering for all files by
  138. ; setting this directive to On. If you wish to limit the size of the buffer
  139. ; to a certain size - you can use a maximum number of bytes instead of 'On', as
  140. ; a value for this directive (e.g., output_buffering=4096).
  141. output_buffering = 4096
  142. ; You can redirect all of the output of your scripts to a function. For
  143. ; example, if you set output_handler to "mb_output_handler", character
  144. ; encoding will be transparently converted to the specified encoding.
  145. ; Setting any output handler automatically turns on output buffering.
  146. ; Note: People who wrote portable scripts should not depend on this ini
  147. ; directive. Instead, explicitly set the output handler using ob_start().
  148. ; Using this ini directive may cause problems unless you know what script
  149. ; is doing.
  150. ; Note: You cannot use both "mb_output_handler" with "ob_iconv_handler"
  151. ; and you cannot use both "ob_gzhandler" and "zlib.output_compression".
  152. ; Note: output_handler must be empty if this is set 'On' !!!!
  153. ; Instead you must use zlib.output_handler.
  154. ;output_handler =
  155. ; Transparent output compression using the zlib library
  156. ; Valid values for this option are 'off', 'on', or a specific buffer size
  157. ; to be used for compression (default is 4KB)
  158. ; Note: Resulting chunk size may vary due to nature of compression. PHP
  159. ; outputs chunks that are few hundreds bytes each as a result of
  160. ; compression. If you prefer a larger chunk size for better
  161. ; performance, enable output_buffering in addition.
  162. ; Note: You need to use zlib.output_handler instead of the standard
  163. ; output_handler, or otherwise the output will be corrupted.
  164. zlib.output_compression = Off
  165. ;zlib.output_compression_level = -1
  166. ; You cannot specify additional output handlers if zlib.output_compression
  167. ; is activated here. This setting does the same as output_handler but in
  168. ; a different order.
  169. ;zlib.output_handler =
  170. ; Implicit flush tells PHP to tell the output layer to flush itself
  171. ; automatically after every output block. This is equivalent to calling the
  172. ; PHP function flush() after each and every call to print() or echo() and each
  173. ; and every HTML block. Turning this option on has serious performance
  174. ; implications and is generally recommended for debugging purposes only.
  175. implicit_flush = Off
  176. ; The unserialize callback function will be called (with the undefined class'
  177. ; name as parameter), if the unserializer finds an undefined class
  178. ; which should be instantiated.
  179. ; A warning appears if the specified function is not defined, or if the
  180. ; function doesn't include/implement the missing class.
  181. ; So only set this entry, if you really want to implement such a
  182. ; callback-function.
  183. unserialize_callback_func=
  184. ; When floats & doubles are serialized store serialize_precision significant
  185. ; digits after the floating point. The default value ensures that when floats
  186. ; are decoded with unserialize, the data will remain the same.
  187. serialize_precision = 100
  188. ; Whether to enable the ability to force arguments to be passed by reference
  189. ; at function call time. This method is deprecated and is likely to be
  190. ; unsupported in future versions of PHP/Zend. The encouraged method of
  191. ; specifying which arguments should be passed by reference is in the function
  192. ; declaration. You're encouraged to try and turn this option Off and make
  193. ; sure your scripts work properly with it in order to ensure they will work
  194. ; with future versions of the language (you will receive a warning each time
  195. ; you use this feature, and the argument will be passed by value instead of by
  196. ; reference).
  197. allow_call_time_pass_reference = Off
  198. ;
  199. ; Safe Mode
  200. ;
  201. safe_mode = Off
  202. ; By default, Safe Mode does a UID compare check when
  203. ; opening files. If you want to relax this to a GID compare,
  204. ; then turn on safe_mode_gid.
  205. safe_mode_gid = Off
  206. ; When safe_mode is on, UID/GID checks are bypassed when
  207. ; including files from this directory and its subdirectories.
  208. ; (directory must also be in include_path or full path must
  209. ; be used when including)
  210. safe_mode_include_dir =
  211. ; When safe_mode is on, only executables located in the safe_mode_exec_dir
  212. ; will be allowed to be executed via the exec family of functions.
  213. safe_mode_exec_dir =
  214. ; Setting certain environment variables may be a potential security breach.
  215. ; This directive contains a comma-delimited list of prefixes. In Safe Mode,
  216. ; the user may only alter environment variables whose names begin with the
  217. ; prefixes supplied here. By default, users will only be able to set
  218. ; environment variables that begin with PHP_ (e.g. PHP_FOO=BAR).
  219. ;
  220. ; Note: If this directive is empty, PHP will let the user modify ANY
  221. ; environment variable!
  222. safe_mode_allowed_env_vars = PHP_
  223. ; This directive contains a comma-delimited list of environment variables that
  224. ; the end user won't be able to change using putenv(). These variables will be
  225. ; protected even if safe_mode_allowed_env_vars is set to allow to change them.
  226. safe_mode_protected_env_vars = LD_LIBRARY_PATH
  227. ; open_basedir, if set, limits all file operations to the defined directory
  228. ; and below. This directive makes most sense if used in a per-directory
  229. ; or per-virtualhost web server configuration file. This directive is
  230. ; *NOT* affected by whether Safe Mode is turned On or Off.
  231. ;open_basedir =
  232. ; This directive allows you to disable certain functions for security reasons.
  233. ; It receives a comma-delimited list of function names. This directive is
  234. ; *NOT* affected by whether Safe Mode is turned On or Off.
  235. disable_functions =
  236. ; This directive allows you to disable certain classes for security reasons.
  237. ; It receives a comma-delimited list of class names. This directive is
  238. ; *NOT* affected by whether Safe Mode is turned On or Off.
  239. disable_classes =
  240. ; Colors for Syntax Highlighting mode. Anything that's acceptable in
  241. ; <span style="color: ???????"> would work.
  242. ;highlight.string = #DD0000
  243. ;highlight.comment = #FF9900
  244. ;highlight.keyword = #007700
  245. ;highlight.bg = #FFFFFF
  246. ;highlight.default = #0000BB
  247. ;highlight.html = #000000
  248. ; If enabled, the request will be allowed to complete even if the user aborts
  249. ; the request. Consider enabling it if executing long request, which may end up
  250. ; being interrupted by the user or a browser timing out.
  251. ; ignore_user_abort = On
  252. ; Determines the size of the realpath cache to be used by PHP. This value should
  253. ; be increased on systems where PHP opens many files to reflect the quantity of
  254. ; the file operations performed.
  255. ; realpath_cache_size=16k
  256. ; Duration of time, in seconds for which to cache realpath information for a given
  257. ; file or directory. For systems with rarely changing files, consider increasing this
  258. ; value.
  259. ; realpath_cache_ttl=120
  260. ;
  261. ; Misc
  262. ;
  263. ; Decides whether PHP may expose the fact that it is installed on the server
  264. ; (e.g. by adding its signature to the Web server header). It is no security
  265. ; threat in any way, but it makes it possible to determine whether you use PHP
  266. ; on your server or not.
  267. expose_php = On
  268. ;;;;;;;;;;;;;;;;;;;
  269. ; Resource Limits ;
  270. ;;;;;;;;;;;;;;;;;;;
  271. max_execution_time = 30 ; Maximum execution time of each script, in seconds
  272. max_input_time = 60 ; Maximum amount of time each script may spend parsing request data
  273. ;max_input_nesting_level = 64 ; Maximum input variable nesting level
  274. memory_limit = 128M ; Maximum amount of memory a script may consume (128MB)
  275. ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
  276. ; Error handling and logging ;
  277. ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
  278. ; error_reporting is a bit-field. Or each number up to get desired error
  279. ; reporting level
  280. ; E_ALL - All errors and warnings (doesn't include E_STRICT)
  281. ; E_ERROR - fatal run-time errors
  282. ; E_RECOVERABLE_ERROR - almost fatal run-time errors
  283. ; E_WARNING - run-time warnings (non-fatal errors)
  284. ; E_PARSE - compile-time parse errors
  285. ; E_NOTICE - run-time notices (these are warnings which often result
  286. ; from a bug in your code, but it's possible that it was
  287. ; intentional (e.g., using an uninitialized variable and
  288. ; relying on the fact it's automatically initialized to an
  289. ; empty string)
  290. ; E_STRICT - run-time notices, enable to have PHP suggest changes
  291. ; to your code which will ensure the best interoperability
  292. ; and forward compatibility of your code
  293. ; E_CORE_ERROR - fatal errors that occur during PHP's initial startup
  294. ; E_CORE_WARNING - warnings (non-fatal errors) that occur during PHP's
  295. ; initial startup
  296. ; E_COMPILE_ERROR - fatal compile-time errors
  297. ; E_COMPILE_WARNING - compile-time warnings (non-fatal errors)
  298. ; E_USER_ERROR - user-generated error message
  299. ; E_USER_WARNING - user-generated warning message
  300. ; E_USER_NOTICE - user-generated notice message
  301. ;
  302. ; Examples:
  303. ;
  304. ; - Show all errors, except for notices and coding standards warnings
  305. ;
  306. ;error_reporting = E_ALL & ~E_NOTICE
  307. ;
  308. ; - Show all errors, except for notices
  309. ;
  310. ;error_reporting = E_ALL & ~E_NOTICE | E_STRICT
  311. ;
  312. ; - Show only errors
  313. ;
  314. ;error_reporting = E_COMPILE_ERROR|E_RECOVERABLE_ERROR|E_ERROR|E_CORE_ERROR
  315. ;
  316. ; - Show all errors, except coding standards warnings
  317. ;
  318. error_reporting = E_ALL
  319. ; Print out errors (as a part of the output). For production web sites,
  320. ; you're strongly encouraged to turn this feature off, and use error logging
  321. ; instead (see below). Keeping display_errors enabled on a production web site
  322. ; may reveal security information to end users, such as file paths on your Web
  323. ; server, your database schema or other information.
  324. ;
  325. ; possible values for display_errors:
  326. ;
  327. ; Off - Do not display any errors
  328. ; stderr - Display errors to STDERR (affects only CGI/CLI binaries!)
  329. ; On or stdout - Display errors to STDOUT (default)
  330. ;
  331. ; To output errors to STDERR with CGI/CLI:
  332. ;display_errors = "stderr"
  333. ;
  334. ; Default
  335. ;
  336. display_errors = Off
  337. ; Even when display_errors is on, errors that occur during PHP's startup
  338. ; sequence are not displayed. It's strongly recommended to keep
  339. ; display_startup_errors off, except for when debugging.
  340. display_startup_errors = Off
  341. ; Log errors into a log file (server-specific log, stderr, or error_log (below))
  342. ; As stated above, you're strongly advised to use error logging in place of
  343. ; error displaying on production web sites.
  344. log_errors = On
  345. ; Set maximum length of log_errors. In error_log information about the source is
  346. ; added. The default is 1024 and 0 allows to not apply any maximum length at all.
  347. log_errors_max_len = 1024
  348. ; Do not log repeated messages. Repeated errors must occur in same file on same
  349. ; line unless ignore_repeated_source is set true.
  350. ignore_repeated_errors = Off
  351. ; Ignore source of message when ignoring repeated messages. When this setting
  352. ; is On you will not log errors with repeated messages from different files or
  353. ; source lines.
  354. ignore_repeated_source = Off
  355. ; If this parameter is set to Off, then memory leaks will not be shown (on
  356. ; stdout or in the log). This has only effect in a debug compile, and if
  357. ; error reporting includes E_WARNING in the allowed list
  358. report_memleaks = On
  359. ;report_zend_debug = 0
  360. ; Store the last error/warning message in $php_errormsg (boolean).
  361. track_errors = Off
  362. ; Turn off normal error reporting and emit XML-RPC error XML
  363. ;xmlrpc_errors = 0
  364. ; An XML-RPC faultCode
  365. ;xmlrpc_error_number = 0
  366. ; Disable the inclusion of HTML tags in error messages.
  367. ; Note: Never use this feature for production boxes.
  368. ;html_errors = Off
  369. ; If html_errors is set On PHP produces clickable error messages that direct
  370. ; to a page describing the error or function causing the error in detail.
  371. ; You can download a copy of the PHP manual from http://www.php.net/docs.php
  372. ; and change docref_root to the base URL of your local copy including the
  373. ; leading '/'. You must also specify the file extension being used including
  374. ; the dot.
  375. ; Note: Never use this feature for production boxes.
  376. ;docref_root = "/phpmanual/"
  377. ;docref_ext = .html
  378. ; String to output before an error message.
  379. ;error_prepend_string = "<font color=#ff0000>"
  380. ; String to output after an error message.
  381. ;error_append_string = "</font>"
  382. ; Log errors to specified file.
  383. ;error_log = filename
  384. ; Log errors to syslog (Event Log on NT, not valid in Windows 95).
  385. ;error_log = syslog
  386. ;;;;;;;;;;;;;;;;;
  387. ; Data Handling ;
  388. ;;;;;;;;;;;;;;;;;
  389. ;
  390. ; Note - track_vars is ALWAYS enabled as of PHP 4.0.3
  391. ; The separator used in PHP generated URLs to separate arguments.
  392. ; Default is "&".
  393. ;arg_separator.output = "&amp;"
  394. ; List of separator(s) used by PHP to parse input URLs into variables.
  395. ; Default is "&".
  396. ; NOTE: Every character in this directive is considered as separator!
  397. ;arg_separator.input = ";&"
  398. ; This directive describes the order in which PHP registers GET, POST, Cookie,
  399. ; Environment and Built-in variables (G, P, C, E & S respectively, often
  400. ; referred to as EGPCS or GPC). Registration is done from left to right, newer
  401. ; values override older values.
  402. variables_order = "GPCS"
  403. ; Whether or not to register the EGPCS variables as global variables. You may
  404. ; want to turn this off if you don't want to clutter your scripts' global scope
  405. ; with user data. This makes most sense when coupled with track_vars - in which
  406. ; case you can access all of the GPC variables through the $HTTP_*_VARS[],
  407. ; variables.
  408. ;
  409. ; You should do your best to write your scripts so that they do not require
  410. ; register_globals to be on; Using form variables as globals can easily lead
  411. ; to possible security problems, if the code is not very well thought of.
  412. register_globals = Off
  413. ; Whether or not to register the old-style input arrays, HTTP_GET_VARS
  414. ; and friends. If you're not using them, it's recommended to turn them off,
  415. ; for performance reasons.
  416. register_long_arrays = Off
  417. ; This directive tells PHP whether to declare the argv&argc variables (that
  418. ; would contain the GET information). If you don't use these variables, you
  419. ; should turn it off for increased performance.
  420. register_argc_argv = Off
  421. ; When enabled, the SERVER and ENV variables are created when they're first
  422. ; used (Just In Time) instead of when the script starts. If these variables
  423. ; are not used within a script, having this directive on will result in a
  424. ; performance gain. The PHP directives register_globals, register_long_arrays,
  425. ; and register_argc_argv must be disabled for this directive to have any affect.
  426. auto_globals_jit = On
  427. ; Maximum size of POST data that PHP will accept.
  428. post_max_size = 8M
  429. ; Magic quotes
  430. ;
  431. ; Magic quotes for incoming GET/POST/Cookie data.
  432. magic_quotes_gpc = Off
  433. ; Magic quotes for runtime-generated data, e.g. data from SQL, from exec(), etc.
  434. magic_quotes_runtime = Off
  435. ; Use Sybase-style magic quotes (escape ' with '' instead of \').
  436. magic_quotes_sybase = Off
  437. ; Automatically add files before or after any PHP document.
  438. auto_prepend_file =
  439. auto_append_file =
  440. ; As of 4.0b4, PHP always outputs a character encoding by default in
  441. ; the Content-type: header. To disable sending of the charset, simply
  442. ; set it to be empty.
  443. ;
  444. ; PHP's built-in default is text/html
  445. default_mimetype = "text/html"
  446. ;default_charset = "iso-8859-1"
  447. ; Always populate the $HTTP_RAW_POST_DATA variable.
  448. ;always_populate_raw_post_data = On
  449. ;;;;;;;;;;;;;;;;;;;;;;;;;
  450. ; Paths and Directories ;
  451. ;;;;;;;;;;;;;;;;;;;;;;;;;
  452. ; UNIX: "/path1:/path2"
  453. ;include_path = ".:/php/includes"
  454. ;
  455. ; Windows: "\path1;\path2"
  456. ;include_path = ".;c:\php\includes"
  457. ; The root of the PHP pages, used only if nonempty.
  458. ; if PHP was not compiled with FORCE_REDIRECT, you SHOULD set doc_root
  459. ; if you are running php as a CGI under any web server (other than IIS)
  460. ; see documentation for security issues. The alternate is to use the
  461. ; cgi.force_redirect configuration below
  462. doc_root =
  463. ; The directory under which PHP opens the script using /~username used only
  464. ; if nonempty.
  465. user_dir =
  466. ; Directory in which the loadable extensions (modules) reside.
  467. extension_dir = "./"
  468. ; Whether or not to enable the dl() function. The dl() function does NOT work
  469. ; properly in multithreaded servers, such as IIS or Zeus, and is automatically
  470. ; disabled on them.
  471. enable_dl = On
  472. ; cgi.force_redirect is necessary to provide security running PHP as a CGI under
  473. ; most web servers. Left undefined, PHP turns this on by default. You can
  474. ; turn it off here AT YOUR OWN RISK
  475. ; **You CAN safely turn this off for IIS, in fact, you MUST.**
  476. ; cgi.force_redirect = 1
  477. ; if cgi.nph is enabled it will force cgi to always sent Status: 200 with
  478. ; every request.
  479. ; cgi.nph = 1
  480. ; if cgi.force_redirect is turned on, and you are not running under Apache or Netscape
  481. ; (iPlanet) web servers, you MAY need to set an environment variable name that PHP
  482. ; will look for to know it is OK to continue execution. Setting this variable MAY
  483. ; cause security issues, KNOW WHAT YOU ARE DOING FIRST.
  484. ; cgi.redirect_status_env = ;
  485. ; cgi.fix_pathinfo provides *real* PATH_INFO/PATH_TRANSLATED support for CGI. PHP's
  486. ; previous behaviour was to set PATH_TRANSLATED to SCRIPT_FILENAME, and to not grok
  487. ; what PATH_INFO is. For more information on PATH_INFO, see the cgi specs. Setting
  488. ; this to 1 will cause PHP CGI to fix it's paths to conform to the spec. A setting
  489. ; of zero causes PHP to behave as before. Default is 1. You should fix your scripts
  490. ; to use SCRIPT_FILENAME rather than PATH_TRANSLATED.
  491. ; cgi.fix_pathinfo=1
  492. ; FastCGI under IIS (on WINNT based OS) supports the ability to impersonate
  493. ; security tokens of the calling client. This allows IIS to define the
  494. ; security context that the request runs under. mod_fastcgi under Apache
  495. ; does not currently support this feature (03/17/2002)
  496. ; Set to 1 if running under IIS. Default is zero.
  497. ; fastcgi.impersonate = 1;
  498. ; Disable logging through FastCGI connection
  499. ; fastcgi.logging = 0
  500. ; cgi.rfc2616_headers configuration option tells PHP what type of headers to
  501. ; use when sending HTTP response code. If it's set 0 PHP sends Status: header that
  502. ; is supported by Apache. When this option is set to 1 PHP will send
  503. ; RFC2616 compliant header.
  504. ; Default is zero.
  505. ;cgi.rfc2616_headers = 0
  506. ;;;;;;;;;;;;;;;;
  507. ; File Uploads ;
  508. ;;;;;;;;;;;;;;;;
  509. ; Whether to allow HTTP file uploads.
  510. file_uploads = On
  511. ; Temporary directory for HTTP uploaded files (will use system default if not
  512. ; specified).
  513. ;upload_tmp_dir =
  514. ; Maximum allowed size for uploaded files.
  515. upload_max_filesize = 2M
  516. ;;;;;;;;;;;;;;;;;;
  517. ; Fopen wrappers ;
  518. ;;;;;;;;;;;;;;;;;;
  519. ; Whether to allow the treatment of URLs (like http:// or ftp://) as files.
  520. allow_url_fopen = On
  521. ; Whether to allow include/require to open URLs (like http:// or ftp://) as files.
  522. allow_url_include = Off
  523. ; Define the anonymous ftp password (your email address)
  524. ;from="john@doe.com"
  525. ; Define the User-Agent string
  526. ; user_agent="PHP"
  527. ; Default timeout for socket based streams (seconds)
  528. default_socket_timeout = 60
  529. ; If your scripts have to deal with files from Macintosh systems,
  530. ; or you are running on a Mac and need to deal with files from
  531. ; unix or win32 systems, setting this flag will cause PHP to
  532. ; automatically detect the EOL character in those files so that
  533. ; fgets() and file() will work regardless of the source of the file.
  534. ; auto_detect_line_endings = Off
  535. ;;;;;;;;;;;;;;;;;;;;;;
  536. ; Dynamic Extensions ;
  537. ;;;;;;;;;;;;;;;;;;;;;;
  538. ;
  539. ; If you wish to have an extension loaded automatically, use the following
  540. ; syntax:
  541. ;
  542. ; extension=modulename.extension
  543. ;
  544. ; For example, on Windows:
  545. ;
  546. ; extension=msql.dll
  547. ;
  548. ; ... or under UNIX:
  549. ;
  550. ; extension=msql.so
  551. ;
  552. ; Note that it should be the name of the module only; no directory information
  553. ; needs to go here. Specify the location of the extension with the
  554. ; extension_dir directive above.
  555. ; Windows Extensions
  556. ; Note that ODBC support is built in, so no dll is needed for it.
  557. ; Note that many DLL files are located in the extensions/ (PHP 4) ext/ (PHP 5)
  558. ; extension folders as well as the separate PECL DLL download (PHP 5).
  559. ; Be sure to appropriately set the extension_dir directive.
  560. ;extension=php_bz2.dll
  561. ;extension=php_curl.dll
  562. ;extension=php_dba.dll
  563. ;extension=php_dbase.dll
  564. ;extension=php_exif.dll
  565. ;extension=php_fdf.dll
  566. ;extension=php_gd2.dll
  567. ;extension=php_gettext.dll
  568. ;extension=php_gmp.dll
  569. ;extension=php_ifx.dll
  570. ;extension=php_imap.dll
  571. ;extension=php_interbase.dll
  572. ;extension=php_ldap.dll
  573. ;extension=php_mbstring.dll
  574. ;extension=php_mcrypt.dll
  575. ;extension=php_mhash.dll
  576. ;extension=php_mime_magic.dll
  577. ;extension=php_ming.dll
  578. ;extension=php_msql.dll
  579. ;extension=php_mssql.dll
  580. ;extension=php_mysql.dll
  581. ;extension=php_mysqli.dll
  582. ;extension=php_oci8.dll
  583. ;extension=php_openssl.dll
  584. ;extension=php_pdo.dll
  585. ;extension=php_pdo_firebird.dll
  586. ;extension=php_pdo_mssql.dll
  587. ;extension=php_pdo_mysql.dll
  588. ;extension=php_pdo_oci.dll
  589. ;extension=php_pdo_oci8.dll
  590. ;extension=php_pdo_odbc.dll
  591. ;extension=php_pdo_pgsql.dll
  592. ;extension=php_pdo_sqlite.dll
  593. ;extension=php_pgsql.dll
  594. ;extension=php_pspell.dll
  595. ;extension=php_shmop.dll
  596. ;extension=php_snmp.dll
  597. ;extension=php_soap.dll
  598. ;extension=php_sockets.dll
  599. ;extension=php_sqlite.dll
  600. ;extension=php_sybase_ct.dll
  601. ;extension=php_tidy.dll
  602. ;extension=php_xmlrpc.dll
  603. ;extension=php_xsl.dll
  604. ;extension=php_zip.dll
  605. ;;;;;;;;;;;;;;;;;;;
  606. ; Module Settings ;
  607. ;;;;;;;;;;;;;;;;;;;
  608. [Date]
  609. ; Defines the default timezone used by the date functions
  610. ;date.timezone =
  611. ;date.default_latitude = 31.7667
  612. ;date.default_longitude = 35.2333
  613. ;date.sunrise_zenith = 90.583333
  614. ;date.sunset_zenith = 90.583333
  615. [filter]
  616. ;filter.default = unsafe_raw
  617. ;filter.default_flags =
  618. [iconv]
  619. ;iconv.input_encoding = ISO-8859-1
  620. ;iconv.internal_encoding = ISO-8859-1
  621. ;iconv.output_encoding = ISO-8859-1
  622. [sqlite]
  623. ;sqlite.assoc_case = 0
  624. [Pcre]
  625. ;PCRE library backtracking limit.
  626. ;pcre.backtrack_limit=100000
  627. ;PCRE library recursion limit.
  628. ;Please note that if you set this value to a high number you may consume all
  629. ;the available process stack and eventually crash PHP (due to reaching the
  630. ;stack size limit imposed by the Operating System).
  631. ;pcre.recursion_limit=100000
  632. [Syslog]
  633. ; Whether or not to define the various syslog variables (e.g. $LOG_PID,
  634. ; $LOG_CRON, etc.). Turning it off is a good idea performance-wise. In
  635. ; runtime, you can define these variables by calling define_syslog_variables().
  636. define_syslog_variables = Off
  637. [mail function]
  638. ; For Win32 only.
  639. SMTP = localhost
  640. smtp_port = 25
  641. ; For Win32 only.
  642. ;sendmail_from = me@example.com
  643. ; For Unix only. You may supply arguments as well (default: "sendmail -t -i").
  644. ;sendmail_path =
  645. ; Force the addition of the specified parameters to be passed as extra parameters
  646. ; to the sendmail binary. These parameters will always replace the value of
  647. ; the 5th parameter to mail(), even in safe mode.
  648. ;mail.force_extra_parameters =
  649. [SQL]
  650. sql.safe_mode = Off
  651. [ODBC]
  652. ;odbc.default_db = Not yet implemented
  653. ;odbc.default_user = Not yet implemented
  654. ;odbc.default_pw = Not yet implemented
  655. ; Allow or prevent persistent links.
  656. odbc.allow_persistent = On
  657. ; Check that a connection is still valid before reuse.
  658. odbc.check_persistent = On
  659. ; Maximum number of persistent links. -1 means no limit.
  660. odbc.max_persistent = -1
  661. ; Maximum number of links (persistent + non-persistent). -1 means no limit.
  662. odbc.max_links = -1
  663. ; Handling of LONG fields. Returns number of bytes to variables. 0 means
  664. ; passthru.
  665. odbc.defaultlrl = 4096
  666. ; Handling of binary data. 0 means passthru, 1 return as is, 2 convert to char.
  667. ; See the documentation on odbc_binmode and odbc_longreadlen for an explanation
  668. ; of uodbc.defaultlrl and uodbc.defaultbinmode
  669. odbc.defaultbinmode = 1
  670. [MySQL]
  671. ; Allow or prevent persistent links.
  672. mysql.allow_persistent = On
  673. ; Maximum number of persistent links. -1 means no limit.
  674. mysql.max_persistent = -1
  675. ; Maximum number of links (persistent + non-persistent). -1 means no limit.
  676. mysql.max_links = -1
  677. ; Default port number for mysql_connect(). If unset, mysql_connect() will use
  678. ; the $MYSQL_TCP_PORT or the mysql-tcp entry in /etc/services or the
  679. ; compile-time value defined MYSQL_PORT (in that order). Win32 will only look
  680. ; at MYSQL_PORT.
  681. mysql.default_port =
  682. ; Default socket name for local MySQL connects. If empty, uses the built-in
  683. ; MySQL defaults.
  684. mysql.default_socket =
  685. ; Default host for mysql_connect() (doesn't apply in safe mode).
  686. mysql.default_host =
  687. ; Default user for mysql_connect() (doesn't apply in safe mode).
  688. mysql.default_user =
  689. ; Default password for mysql_connect() (doesn't apply in safe mode).
  690. ; Note that this is generally a *bad* idea to store passwords in this file.
  691. ; *Any* user with PHP access can run 'echo get_cfg_var("mysql.default_password")
  692. ; and reveal this password! And of course, any users with read access to this
  693. ; file will be able to reveal the password as well.
  694. mysql.default_password =
  695. ; Maximum time (in seconds) for connect timeout. -1 means no limit
  696. mysql.connect_timeout = 60
  697. ; Trace mode. When trace_mode is active (=On), warnings for table/index scans and
  698. ; SQL-Errors will be displayed.
  699. mysql.trace_mode = Off
  700. [MySQLi]
  701. ; Maximum number of links. -1 means no limit.
  702. mysqli.max_links = -1
  703. ; Default port number for mysqli_connect(). If unset, mysqli_connect() will use
  704. ; the $MYSQL_TCP_PORT or the mysql-tcp entry in /etc/services or the
  705. ; compile-time value defined MYSQL_PORT (in that order). Win32 will only look
  706. ; at MYSQL_PORT.
  707. mysqli.default_port = 3306
  708. ; Default socket name for local MySQL connects. If empty, uses the built-in
  709. ; MySQL defaults.
  710. mysqli.default_socket =
  711. ; Default host for mysql_connect() (doesn't apply in safe mode).
  712. mysqli.default_host =
  713. ; Default user for mysql_connect() (doesn't apply in safe mode).
  714. mysqli.default_user =
  715. ; Default password for mysqli_connect() (doesn't apply in safe mode).
  716. ; Note that this is generally a *bad* idea to store passwords in this file.
  717. ; *Any* user with PHP access can run 'echo get_cfg_var("mysqli.default_pw")
  718. ; and reveal this password! And of course, any users with read access to this
  719. ; file will be able to reveal the password as well.
  720. mysqli.default_pw =
  721. ; Allow or prevent reconnect
  722. mysqli.reconnect = Off
  723. [mSQL]
  724. ; Allow or prevent persistent links.
  725. msql.allow_persistent = On
  726. ; Maximum number of persistent links. -1 means no limit.
  727. msql.max_persistent = -1
  728. ; Maximum number of links (persistent+non persistent). -1 means no limit.
  729. msql.max_links = -1
  730. [OCI8]
  731. ; enables privileged connections using external credentials (OCI_SYSOPER, OCI_SYSDBA)
  732. ;oci8.privileged_connect = Off
  733. ; Connection: The maximum number of persistent OCI8 connections per
  734. ; process. Using -1 means no limit.
  735. ;oci8.max_persistent = -1
  736. ; Connection: The maximum number of seconds a process is allowed to
  737. ; maintain an idle persistent connection. Using -1 means idle
  738. ; persistent connections will be maintained forever.
  739. ;oci8.persistent_timeout = -1
  740. ; Connection: The number of seconds that must pass before issuing a
  741. ; ping during oci_pconnect() to check the connection validity. When
  742. ; set to 0, each oci_pconnect() will cause a ping. Using -1 disables
  743. ; pings completely.
  744. ;oci8.ping_interval = 60
  745. ; Tuning: This option enables statement caching, and specifies how
  746. ; many statements to cache. Using 0 disables statement caching.
  747. ;oci8.statement_cache_size = 20
  748. ; Tuning: Enables statement prefetching and sets the default number of
  749. ; rows that will be fetched automatically after statement execution.
  750. ;oci8.default_prefetch = 10
  751. ; Compatibility. Using On means oci_close() will not close
  752. ; oci_connect() and oci_new_connect() connections.
  753. ;oci8.old_oci_close_semantics = Off
  754. [PostgresSQL]
  755. ; Allow or prevent persistent links.
  756. pgsql.allow_persistent = On
  757. ; Detect broken persistent links always with pg_pconnect().
  758. ; Auto reset feature requires a little overheads.
  759. pgsql.auto_reset_persistent = Off
  760. ; Maximum number of persistent links. -1 means no limit.
  761. pgsql.max_persistent = -1
  762. ; Maximum number of links (persistent+non persistent). -1 means no limit.
  763. pgsql.max_links = -1
  764. ; Ignore PostgreSQL backends Notice message or not.
  765. ; Notice message logging require a little overheads.
  766. pgsql.ignore_notice = 0
  767. ; Log PostgreSQL backends Notice message or not.
  768. ; Unless pgsql.ignore_notice=0, module cannot log notice message.
  769. pgsql.log_notice = 0
  770. [Sybase]
  771. ; Allow or prevent persistent links.
  772. sybase.allow_persistent = On
  773. ; Maximum number of persistent links. -1 means no limit.
  774. sybase.max_persistent = -1
  775. ; Maximum number of links (persistent + non-persistent). -1 means no limit.
  776. sybase.max_links = -1
  777. ;sybase.interface_file = "/usr/sybase/interfaces"
  778. ; Minimum error severity to display.
  779. sybase.min_error_severity = 10
  780. ; Minimum message severity to display.
  781. sybase.min_message_severity = 10
  782. ; Compatibility mode with old versions of PHP 3.0.
  783. ; If on, this will cause PHP to automatically assign types to results according
  784. ; to their Sybase type, instead of treating them all as strings. This
  785. ; compatibility mode will probably not stay around forever, so try applying
  786. ; whatever necessary changes to your code, and turn it off.
  787. sybase.compatability_mode = Off
  788. [Sybase-CT]
  789. ; Allow or prevent persistent links.
  790. sybct.allow_persistent = On
  791. ; Maximum number of persistent links. -1 means no limit.
  792. sybct.max_persistent = -1
  793. ; Maximum number of links (persistent + non-persistent). -1 means no limit.
  794. sybct.max_links = -1
  795. ; Minimum server message severity to display.
  796. sybct.min_server_severity = 10
  797. ; Minimum client message severity to display.
  798. sybct.min_client_severity = 10
  799. [bcmath]
  800. ; Number of decimal digits for all bcmath functions.
  801. bcmath.scale = 0
  802. [browscap]
  803. ;browscap = extra/browscap.ini
  804. [Informix]
  805. ; Default host for ifx_connect() (doesn't apply in safe mode).
  806. ifx.default_host =
  807. ; Default user for ifx_connect() (doesn't apply in safe mode).
  808. ifx.default_user =
  809. ; Default password for ifx_connect() (doesn't apply in safe mode).
  810. ifx.default_password =
  811. ; Allow or prevent persistent links.
  812. ifx.allow_persistent = On
  813. ; Maximum number of persistent links. -1 means no limit.
  814. ifx.max_persistent = -1
  815. ; Maximum number of links (persistent + non-persistent). -1 means no limit.
  816. ifx.max_links = -1
  817. ; If on, select statements return the contents of a text blob instead of its id.
  818. ifx.textasvarchar = 0
  819. ; If on, select statements return the contents of a byte blob instead of its id.
  820. ifx.byteasvarchar = 0
  821. ; Trailing blanks are stripped from fixed-length char columns. May help the
  822. ; life of Informix SE users.
  823. ifx.charasvarchar = 0
  824. ; If on, the contents of text and byte blobs are dumped to a file instead of
  825. ; keeping them in memory.
  826. ifx.blobinfile = 0
  827. ; NULL's are returned as empty strings, unless this is set to 1. In that case,
  828. ; NULL's are returned as string 'NULL'.
  829. ifx.nullformat = 0
  830. [Session]
  831. ; Handler used to store/retrieve data.
  832. session.save_handler = files
  833. ; Argument passed to save_handler. In the case of files, this is the path
  834. ; where data files are stored. Note: Windows users have to change this
  835. ; variable in order to use PHP's session functions.
  836. ;
  837. ; As of PHP 4.0.1, you can define the path as:
  838. ;
  839. ; session.save_path = "N;/path"
  840. ;
  841. ; where N is an integer. Instead of storing all the session files in
  842. ; /path, what this will do is use subdirectories N-levels deep, and
  843. ; store the session data in those directories. This is useful if you
  844. ; or your OS have problems with lots of files in one directory, and is
  845. ; a more efficient layout for servers that handle lots of sessions.
  846. ;
  847. ; NOTE 1: PHP will not create this directory structure automatically.
  848. ; You can use the script in the ext/session dir for that purpose.
  849. ; NOTE 2: See the section on garbage collection below if you choose to
  850. ; use subdirectories for session storage
  851. ;
  852. ; The file storage module creates files using mode 600 by default.
  853. ; You can change that by using
  854. ;
  855. ; session.save_path = "N;MODE;/path"
  856. ;
  857. ; where MODE is the octal representation of the mode. Note that this
  858. ; does not overwrite the process's umask.
  859. ;session.save_path = "/tmp"
  860. ; Whether to use cookies.
  861. session.use_cookies = 1
  862. ;session.cookie_secure =
  863. ; This option enables administrators to make their users invulnerable to
  864. ; attacks which involve passing session ids in URLs; defaults to 0.
  865. ; session.use_only_cookies = 1
  866. ; Name of the session (used as cookie name).
  867. session.name = PHPSESSID
  868. ; Initialize session on request startup.
  869. session.auto_start = 0
  870. ; Lifetime in seconds of cookie or, if 0, until browser is restarted.
  871. session.cookie_lifetime = 0
  872. ; The path for which the cookie is valid.
  873. session.cookie_path = /
  874. ; The domain for which the cookie is valid.
  875. session.cookie_domain =
  876. ; Whether or not to add the httpOnly flag to the cookie, which makes it inaccessible to browser scripting languages such as JavaScript.
  877. session.cookie_httponly =
  878. ; Handler used to serialize data. php is the standard serializer of PHP.
  879. session.serialize_handler = php
  880. ; Define the probability that the 'garbage collection' process is started
  881. ; on every session initialization.
  882. ; The probability is calculated by using gc_probability/gc_divisor,
  883. ; e.g. 1/100 means there is a 1% chance that the GC process starts
  884. ; on each request.
  885. session.gc_probability = 1
  886. session.gc_divisor = 1000
  887. ; After this number of seconds, stored data will be seen as 'garbage' and
  888. ; cleaned up by the garbage collection process.
  889. session.gc_maxlifetime = 1440
  890. ; NOTE: If you are using the subdirectory option for storing session files
  891. ; (see session.save_path above), then garbage collection does *not*
  892. ; happen automatically. You will need to do your own garbage
  893. ; collection through a shell script, cron entry, or some other method.
  894. ; For example, the following script would is the equivalent of
  895. ; setting session.gc_maxlifetime to 1440 (1440 seconds = 24 minutes):
  896. ; cd /path/to/sessions; find -cmin +24 | xargs rm
  897. ; PHP 4.2 and less have an undocumented feature/bug that allows you to
  898. ; to initialize a session variable in the global scope, albeit register_globals
  899. ; is disabled. PHP 4.3 and later will warn you, if this feature is used.
  900. ; You can disable the feature and the warning separately. At this time,
  901. ; the warning is only displayed, if bug_compat_42 is enabled.
  902. session.bug_compat_42 = 0
  903. session.bug_compat_warn = 1
  904. ; Check HTTP Referer to invalidate externally stored URLs containing ids.
  905. ; HTTP_REFERER has to contain this substring for the session to be
  906. ; considered as valid.
  907. session.referer_check =
  908. ; How many bytes to read from the file.
  909. session.entropy_length = 0
  910. ; Specified here to create the session id.
  911. session.entropy_file =
  912. ;session.entropy_length = 16
  913. ;session.entropy_file = /dev/urandom
  914. ; Set to {nocache,private,public,} to determine HTTP caching aspects
  915. ; or leave this empty to avoid sending anti-caching headers.
  916. session.cache_limiter = nocache
  917. ; Document expires after n minutes.
  918. session.cache_expire = 180
  919. ; trans sid support is disabled by default.
  920. ; Use of trans sid may risk your users security.
  921. ; Use this option with caution.
  922. ; - User may send URL contains active session ID
  923. ; to other person via. email/irc/etc.
  924. ; - URL that contains active session ID may be stored
  925. ; in publically accessible computer.
  926. ; - User may access your site with the same session ID
  927. ; always using URL stored in browser's history or bookmarks.
  928. session.use_trans_sid = 0
  929. ; Select a hash function
  930. ; 0: MD5 (128 bits)
  931. ; 1: SHA-1 (160 bits)
  932. session.hash_function = 0
  933. ; Define how many bits are stored in each character when converting
  934. ; the binary hash data to something readable.
  935. ;
  936. ; 4 bits: 0-9, a-f
  937. ; 5 bits: 0-9, a-v
  938. ; 6 bits: 0-9, a-z, A-Z, "-", ","
  939. session.hash_bits_per_character = 5
  940. ; The URL rewriter will look for URLs in a defined set of HTML tags.
  941. ; form/fieldset are special; if you include them here, the rewriter will
  942. ; add a hidden <input> field with the info which is otherwise appended
  943. ; to URLs. If you want XHTML conformity, remove the form entry.
  944. ; Note that all valid entries require a "=", even if no value follows.
  945. url_rewriter.tags = "a=href,area=href,frame=src,input=src,form=fakeentry"
  946. [MSSQL]
  947. ; Allow or prevent persistent links.
  948. mssql.allow_persistent = On
  949. ; Maximum number of persistent links. -1 means no limit.
  950. mssql.max_persistent = -1
  951. ; Maximum number of links (persistent+non persistent). -1 means no limit.
  952. mssql.max_links = -1
  953. ; Minimum error severity to display.
  954. mssql.min_error_severity = 10
  955. ; Minimum message severity to display.
  956. mssql.min_message_severity = 10
  957. ; Compatibility mode with old versions of PHP 3.0.
  958. mssql.compatability_mode = Off
  959. ; Connect timeout
  960. ;mssql.connect_timeout = 5
  961. ; Query timeout
  962. ;mssql.timeout = 60
  963. ; Valid range 0 - 2147483647. Default = 4096.
  964. ;mssql.textlimit = 4096
  965. ; Valid range 0 - 2147483647. Default = 4096.
  966. ;mssql.textsize = 4096
  967. ; Limits the number of records in each batch. 0 = all records in one batch.
  968. ;mssql.batchsize = 0
  969. ; Specify how datetime and datetim4 columns are returned
  970. ; On => Returns data converted to SQL server settings
  971. ; Off => Returns values as YYYY-MM-DD hh:mm:ss
  972. ;mssql.datetimeconvert = On
  973. ; Use NT authentication when connecting to the server
  974. mssql.secure_connection = Off
  975. ; Specify max number of processes. -1 = library default
  976. ; msdlib defaults to 25
  977. ; FreeTDS defaults to 4096
  978. ;mssql.max_procs = -1
  979. ; Specify client character set.
  980. ; If empty or not set the client charset from freetds.comf is used
  981. ; This is only used when compiled with FreeTDS
  982. ;mssql.charset = "ISO-8859-1"
  983. [Assertion]
  984. ; Assert(expr); active by default.
  985. ;assert.active = On
  986. ; Issue a PHP warning for each failed assertion.
  987. ;assert.warning = On
  988. ; Don't bail out by default.
  989. ;assert.bail = Off
  990. ; User-function to be called if an assertion fails.
  991. ;assert.callback = 0
  992. ; Eval the expression with current error_reporting(). Set to true if you want
  993. ; error_reporting(0) around the eval().
  994. ;assert.quiet_eval = 0
  995. [COM]
  996. ; path to a file containing GUIDs, IIDs or filenames of files with TypeLibs
  997. ;com.typelib_file =
  998. ; allow Distributed-COM calls
  999. ;com.allow_dcom = true
  1000. ; autoregister constants of a components typlib on com_load()
  1001. ;com.autoregister_typelib = true
  1002. ; register constants casesensitive
  1003. ;com.autoregister_casesensitive = false
  1004. ; show warnings on duplicate constant registrations
  1005. ;com.autoregister_verbose = true
  1006. [mbstring]
  1007. ; language for internal character representation.
  1008. ;mbstring.language = Japanese
  1009. ; internal/script encoding.
  1010. ; Some encoding cannot work as internal encoding.
  1011. ; (e.g. SJIS, BIG5, ISO-2022-*)
  1012. ;mbstring.internal_encoding = EUC-JP
  1013. ; http input encoding.
  1014. ;mbstring.http_input = auto
  1015. ; http output encoding. mb_output_handler must be
  1016. ; registered as output buffer to function
  1017. ;mbstring.http_output = SJIS
  1018. ; enable automatic encoding translation according to
  1019. ; mbstring.internal_encoding setting. Input chars are
  1020. ; converted to internal encoding by setting this to On.
  1021. ; Note: Do _not_ use automatic encoding translation for
  1022. ; portable libs/applications.
  1023. ;mbstring.encoding_translation = Off
  1024. ; automatic encoding detection order.
  1025. ; auto means
  1026. ;mbstring.detect_order = auto
  1027. ; substitute_character used when character cannot be converted
  1028. ; one from another
  1029. ;mbstring.substitute_character = none;
  1030. ; overload(replace) single byte functions by mbstring functions.
  1031. ; mail(), ereg(), etc are overloaded by mb_send_mail(), mb_ereg(),
  1032. ; etc. Possible values are 0,1,2,4 or combination of them.
  1033. ; For example, 7 for overload everything.
  1034. ; 0: No overload
  1035. ; 1: Overload mail() function
  1036. ; 2: Overload str*() functions
  1037. ; 4: Overload ereg*() functions
  1038. ;mbstring.func_overload = 0
  1039. ; enable strict encoding detection.
  1040. ;mbstring.strict_detection = Off
  1041. [FrontBase]
  1042. ;fbsql.allow_persistent = On
  1043. ;fbsql.autocommit = On
  1044. ;fbsql.show_timestamp_decimals = Off
  1045. ;fbsql.default_database =
  1046. ;fbsql.default_database_password =
  1047. ;fbsql.default_host =
  1048. ;fbsql.default_password =
  1049. ;fbsql.default_user = "_SYSTEM"
  1050. ;fbsql.generate_warnings = Off
  1051. ;fbsql.max_connections = 128
  1052. ;fbsql.max_links = 128
  1053. ;fbsql.max_persistent = -1
  1054. ;fbsql.max_results = 128
  1055. [gd]
  1056. ; Tell the jpeg decode to libjpeg warnings and try to create
  1057. ; a gd image. The warning will then be displayed as notices
  1058. ; disabled by default
  1059. ;gd.jpeg_ignore_warning = 0
  1060. [exif]
  1061. ; Exif UNICODE user comments are handled as UCS-2BE/UCS-2LE and JIS as JIS.
  1062. ; With mbstring support this will automatically be converted into the encoding
  1063. ; given by corresponding encode setting. When empty mbstring.internal_encoding
  1064. ; is used. For the decode settings you can distinguish between motorola and
  1065. ; intel byte order. A decode setting cannot be empty.
  1066. ;exif.encode_unicode = ISO-8859-15
  1067. ;exif.decode_unicode_motorola = UCS-2BE
  1068. ;exif.decode_unicode_intel = UCS-2LE
  1069. ;exif.encode_jis =
  1070. ;exif.decode_jis_motorola = JIS
  1071. ;exif.decode_jis_intel = JIS
  1072. [Tidy]
  1073. ; The path to a default tidy configuration file to use when using tidy
  1074. ;tidy.default_config = /usr/local/lib/php/default.tcfg
  1075. ; Should tidy clean and repair output automatically?
  1076. ; WARNING: Do not use this option if you are generating non-html content
  1077. ; such as dynamic images
  1078. tidy.clean_output = Off
  1079. [soap]
  1080. ; Enables or disables WSDL caching feature.
  1081. soap.wsdl_cache_enabled=1
  1082. ; Sets the directory name where SOAP extension will put cache files.
  1083. soap.wsdl_cache_dir="/tmp"
  1084. ; (time to live) Sets the number of second while cached file will be used
  1085. ; instead of original one.
  1086. soap.wsdl_cache_ttl=86400
  1087. ; Local Variables:
  1088. ; tab-width: 4
  1089. ; End: