Advertisement
Guest User

Untitled

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