php.ini.install 47 KB

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