Advertisement
Guest User

Untitled

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