home *** CD-ROM | disk | FTP | other *** search
/ PC Pro 2004 July / DPPCPRO0704.ISO / Download / PHP 5 / php-5.0.0RC1-Win32.exe / php.ini-dist < prev    next >
Encoding:
INI File  |  2004-03-18  |  40.6 KB  |  1,173 lines

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