Advertisement
r3muxd

Untitled

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