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