PageRenderTime 58ms CodeModel.GetById 17ms RepoModel.GetById 0ms app.codeStats 1ms

/net7/etc/php/php.ini.pacsave

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