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