Advertisement
Guest User

php ini

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