php.ini 68 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932
  1. [PHP]
  2. ;;;;;;;;;;;;;;;;;;;
  3. ; About php.ini ;
  4. ;;;;;;;;;;;;;;;;;;;
  5. ; PHP's initialization file, generally called php.ini, is responsible for
  6. ; configuring many of the aspects of PHP's behavior.
  7. ; PHP attempts to find and load this configuration from a number of locations.
  8. ; The following is a summary of its search order:
  9. ; 1. SAPI module specific location.
  10. ; 2. The PHPRC environment variable. (As of PHP 5.2.0)
  11. ; 3. A number of predefined registry keys on Windows (As of PHP 5.2.0)
  12. ; 4. Current working directory (except CLI)
  13. ; 5. The web server's directory (for SAPI modules), or directory of PHP
  14. ; (otherwise in Windows)
  15. ; 6. The directory from the --with-config-file-path compile time option, or the
  16. ; Windows directory (C:\windows or C:\winnt)
  17. ; See the PHP docs for more specific information.
  18. ; http://php.net/configuration.file
  19. ; The syntax of the file is extremely simple. Whitespace and lines
  20. ; beginning with a semicolon are silently ignored (as you probably guessed).
  21. ; Section headers (e.g. [Foo]) are also silently ignored, even though
  22. ; they might mean something in the future.
  23. ; Directives following the section heading [PATH=/www/mysite] only
  24. ; apply to PHP files in the /www/mysite directory. Directives
  25. ; following the section heading [HOST=www.example.com] only apply to
  26. ; PHP files served from www.example.com. Directives set in these
  27. ; special sections cannot be overridden by user-defined INI files or
  28. ; at runtime. Currently, [PATH=] and [HOST=] sections only work under
  29. ; CGI/FastCGI.
  30. ; http://php.net/ini.sections
  31. ; Directives are specified using the following syntax:
  32. ; directive = value
  33. ; Directive names are *case sensitive* - foo=bar is different from FOO=bar.
  34. ; Directives are variables used to configure PHP or PHP extensions.
  35. ; There is no name validation. If PHP can't find an expected
  36. ; directive because it is not set or is mistyped, a default value will be used.
  37. ; The value can be a string, a number, a PHP constant (e.g. E_ALL or M_PI), one
  38. ; of the INI constants (On, Off, True, False, Yes, No and None) or an expression
  39. ; (e.g. E_ALL & ~E_NOTICE), a quoted string ("bar"), or a reference to a
  40. ; previously set variable or directive (e.g. ${foo})
  41. ; Expressions in the INI file are limited to bitwise operators and parentheses:
  42. ; | bitwise OR
  43. ; ^ bitwise XOR
  44. ; & bitwise AND
  45. ; ~ bitwise NOT
  46. ; ! boolean NOT
  47. ; Boolean flags can be turned on using the values 1, On, True or Yes.
  48. ; They can be turned off using the values 0, Off, False or No.
  49. ; An empty string can be denoted by simply not writing anything after the equal
  50. ; sign, or by using the None keyword:
  51. ; foo = ; sets foo to an empty string
  52. ; foo = None ; sets foo to an empty string
  53. ; foo = "None" ; sets foo to the string 'None'
  54. ; If you use constants in your value, and these constants belong to a
  55. ; dynamically loaded extension (either a PHP extension or a Zend extension),
  56. ; you may only use these constants *after* the line that loads the extension.
  57. ;;;;;;;;;;;;;;;;;;;
  58. ; About this file ;
  59. ;;;;;;;;;;;;;;;;;;;
  60. ; PHP comes packaged with two INI files. One that is recommended to be used
  61. ; in production environments and one that is recommended to be used in
  62. ; development environments.
  63. ; php.ini-production contains settings which hold security, performance and
  64. ; best practices at its core. But please be aware, these settings may break
  65. ; compatibility with older or less security conscience applications. We
  66. ; recommending using the production ini in production and testing environments.
  67. ; php.ini-development is very similar to its production variant, except it's
  68. ; much more verbose when it comes to errors. We recommending using the
  69. ; development version only in development environments as errors shown to
  70. ; application users can inadvertently leak otherwise secure information.
  71. ; This is php.ini-production INI file.
  72. ;;;;;;;;;;;;;;;;;;;
  73. ; Quick Reference ;
  74. ;;;;;;;;;;;;;;;;;;;
  75. ; The following are all the settings which are different in either the production
  76. ; or development versions of the INIs with respect to PHP's default behavior.
  77. ; Please see the actual settings later in the document for more details as to why
  78. ; we recommend these changes in PHP's behavior.
  79. ; display_errors
  80. ; Default Value: On
  81. ; Development Value: On
  82. ; Production Value: Off
  83. ; display_startup_errors
  84. ; Default Value: Off
  85. ; Development Value: On
  86. ; Production Value: Off
  87. ; error_reporting
  88. ; Default Value: E_ALL & ~E_NOTICE & ~E_STRICT & ~E_DEPRECATED
  89. ; Development Value: E_ALL
  90. ; Production Value: E_ALL & ~E_DEPRECATED & ~E_STRICT
  91. ; html_errors
  92. ; Default Value: On
  93. ; Development Value: On
  94. ; Production value: On
  95. ; log_errors
  96. ; Default Value: Off
  97. ; Development Value: On
  98. ; Production Value: On
  99. ; max_input_time
  100. ; Default Value: -1 (Unlimited)
  101. ; Development Value: 60 (60 seconds)
  102. ; Production Value: 60 (60 seconds)
  103. ; output_buffering
  104. ; Default Value: Off
  105. ; Development Value: 4096
  106. ; Production Value: 4096
  107. ; register_argc_argv
  108. ; Default Value: On
  109. ; Development Value: Off
  110. ; Production Value: Off
  111. ; request_order
  112. ; Default Value: None
  113. ; Development Value: "GP"
  114. ; Production Value: "GP"
  115. ; session.bug_compat_42
  116. ; Default Value: On
  117. ; Development Value: On
  118. ; Production Value: Off
  119. ; session.bug_compat_warn
  120. ; Default Value: On
  121. ; Development Value: On
  122. ; Production Value: Off
  123. ; session.gc_divisor
  124. ; Default Value: 100
  125. ; Development Value: 1000
  126. ; Production Value: 1000
  127. ; session.hash_bits_per_character
  128. ; Default Value: 4
  129. ; Development Value: 5
  130. ; Production Value: 5
  131. ; short_open_tag
  132. ; Default Value: On
  133. ; Development Value: Off
  134. ; Production Value: Off
  135. ; track_errors
  136. ; Default Value: Off
  137. ; Development Value: On
  138. ; Production Value: Off
  139. ; url_rewriter.tags
  140. ; Default Value: "a=href,area=href,frame=src,form=,fieldset="
  141. ; Development Value: "a=href,area=href,frame=src,input=src,form=fakeentry"
  142. ; Production Value: "a=href,area=href,frame=src,input=src,form=fakeentry"
  143. ; variables_order
  144. ; Default Value: "EGPCS"
  145. ; Development Value: "GPCS"
  146. ; Production Value: "GPCS"
  147. ;;;;;;;;;;;;;;;;;;;;
  148. ; php.ini Options ;
  149. ;;;;;;;;;;;;;;;;;;;;
  150. ; Name for user-defined php.ini (.htaccess) files. Default is ".user.ini"
  151. ;user_ini.filename = ".user.ini"
  152. ; To disable this feature set this option to empty value
  153. ;user_ini.filename =
  154. ; TTL for user-defined php.ini files (time-to-live) in seconds. Default is 300 seconds (5 minutes)
  155. ;user_ini.cache_ttl = 300
  156. ;;;;;;;;;;;;;;;;;;;;
  157. ; Language Options ;
  158. ;;;;;;;;;;;;;;;;;;;;
  159. ; Enable the PHP scripting language engine under Apache.
  160. ; http://php.net/engine
  161. engine = On
  162. ; This directive determines whether or not PHP will recognize code between
  163. ; <? and ?> tags as PHP source which should be processed as such. It is
  164. ; generally recommended that <?php and ?> should be used and that this feature
  165. ; should be disabled, as enabling it may result in issues when generating XML
  166. ; documents, however this remains supported for backward compatibility reasons.
  167. ; Note that this directive does not control the <?= shorthand tag, which can be
  168. ; used regardless of this directive.
  169. ; Default Value: On
  170. ; Development Value: Off
  171. ; Production Value: Off
  172. ; http://php.net/short-open-tag
  173. short_open_tag = Off
  174. ; Allow ASP-style <% %> tags.
  175. ; http://php.net/asp-tags
  176. asp_tags = Off
  177. ; The number of significant digits displayed in floating point numbers.
  178. ; http://php.net/precision
  179. precision = 14
  180. ; Output buffering is a mechanism for controlling how much output data
  181. ; (excluding headers and cookies) PHP should keep internally before pushing that
  182. ; data to the client. If your application's output exceeds this setting, PHP
  183. ; will send that data in chunks of roughly the size you specify.
  184. ; Turning on this setting and managing its maximum buffer size can yield some
  185. ; interesting side-effects depending on your application and web server.
  186. ; You may be able to send headers and cookies after you've already sent output
  187. ; through print or echo. You also may see performance benefits if your server is
  188. ; emitting less packets due to buffered output versus PHP streaming the output
  189. ; as it gets it. On production servers, 4096 bytes is a good setting for performance
  190. ; reasons.
  191. ; Note: Output buffering can also be controlled via Output Buffering Control
  192. ; functions.
  193. ; Possible Values:
  194. ; On = Enabled and buffer is unlimited. (Use with caution)
  195. ; Off = Disabled
  196. ; Integer = Enables the buffer and sets its maximum size in bytes.
  197. ; Note: This directive is hardcoded to Off for the CLI SAPI
  198. ; Default Value: Off
  199. ; Development Value: 4096
  200. ; Production Value: 4096
  201. ; http://php.net/output-buffering
  202. output_buffering = 4096
  203. ; You can redirect all of the output of your scripts to a function. For
  204. ; example, if you set output_handler to "mb_output_handler", character
  205. ; encoding will be transparently converted to the specified encoding.
  206. ; Setting any output handler automatically turns on output buffering.
  207. ; Note: People who wrote portable scripts should not depend on this ini
  208. ; directive. Instead, explicitly set the output handler using ob_start().
  209. ; Using this ini directive may cause problems unless you know what script
  210. ; is doing.
  211. ; Note: You cannot use both "mb_output_handler" with "ob_iconv_handler"
  212. ; and you cannot use both "ob_gzhandler" and "zlib.output_compression".
  213. ; Note: output_handler must be empty if this is set 'On' !!!!
  214. ; Instead you must use zlib.output_handler.
  215. ; http://php.net/output-handler
  216. ;output_handler =
  217. ; Transparent output compression using the zlib library
  218. ; Valid values for this option are 'off', 'on', or a specific buffer size
  219. ; to be used for compression (default is 4KB)
  220. ; Note: Resulting chunk size may vary due to nature of compression. PHP
  221. ; outputs chunks that are few hundreds bytes each as a result of
  222. ; compression. If you prefer a larger chunk size for better
  223. ; performance, enable output_buffering in addition.
  224. ; Note: You need to use zlib.output_handler instead of the standard
  225. ; output_handler, or otherwise the output will be corrupted.
  226. ; http://php.net/zlib.output-compression
  227. zlib.output_compression = Off
  228. ; http://php.net/zlib.output-compression-level
  229. ;zlib.output_compression_level = -1
  230. ; You cannot specify additional output handlers if zlib.output_compression
  231. ; is activated here. This setting does the same as output_handler but in
  232. ; a different order.
  233. ; http://php.net/zlib.output-handler
  234. ;zlib.output_handler =
  235. ; Implicit flush tells PHP to tell the output layer to flush itself
  236. ; automatically after every output block. This is equivalent to calling the
  237. ; PHP function flush() after each and every call to print() or echo() and each
  238. ; and every HTML block. Turning this option on has serious performance
  239. ; implications and is generally recommended for debugging purposes only.
  240. ; http://php.net/implicit-flush
  241. ; Note: This directive is hardcoded to On for the CLI SAPI
  242. implicit_flush = Off
  243. ; The unserialize callback function will be called (with the undefined class'
  244. ; name as parameter), if the unserializer finds an undefined class
  245. ; which should be instantiated. A warning appears if the specified function is
  246. ; not defined, or if the function doesn't include/implement the missing class.
  247. ; So only set this entry, if you really want to implement such a
  248. ; callback-function.
  249. unserialize_callback_func =
  250. ; When floats & doubles are serialized store serialize_precision significant
  251. ; digits after the floating point. The default value ensures that when floats
  252. ; are decoded with unserialize, the data will remain the same.
  253. serialize_precision = 17
  254. ; open_basedir, if set, limits all file operations to the defined directory
  255. ; and below. This directive makes most sense if used in a per-directory
  256. ; or per-virtualhost web server configuration file. This directive is
  257. ; *NOT* affected by whether Safe Mode is turned On or Off.
  258. ; http://php.net/open-basedir
  259. ;open_basedir =
  260. ; This directive allows you to disable certain functions for security reasons.
  261. ; It receives a comma-delimited list of function names. This directive is
  262. ; *NOT* affected by whether Safe Mode is turned On or Off.
  263. ; http://php.net/disable-functions
  264. disable_functions = pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,
  265. ; This directive allows you to disable certain classes for security reasons.
  266. ; It receives a comma-delimited list of class names. This directive is
  267. ; *NOT* affected by whether Safe Mode is turned On or Off.
  268. ; http://php.net/disable-classes
  269. disable_classes =
  270. ; Colors for Syntax Highlighting mode. Anything that's acceptable in
  271. ; <span style="color: ???????"> would work.
  272. ; http://php.net/syntax-highlighting
  273. ;highlight.string = #DD0000
  274. ;highlight.comment = #FF9900
  275. ;highlight.keyword = #007700
  276. ;highlight.default = #0000BB
  277. ;highlight.html = #000000
  278. ; If enabled, the request will be allowed to complete even if the user aborts
  279. ; the request. Consider enabling it if executing long requests, which may end up
  280. ; being interrupted by the user or a browser timing out. PHP's default behavior
  281. ; is to disable this feature.
  282. ; http://php.net/ignore-user-abort
  283. ;ignore_user_abort = On
  284. ; Determines the size of the realpath cache to be used by PHP. This value should
  285. ; be increased on systems where PHP opens many files to reflect the quantity of
  286. ; the file operations performed.
  287. ; http://php.net/realpath-cache-size
  288. ;realpath_cache_size = 16k
  289. ; Duration of time, in seconds for which to cache realpath information for a given
  290. ; file or directory. For systems with rarely changing files, consider increasing this
  291. ; value.
  292. ; http://php.net/realpath-cache-ttl
  293. ;realpath_cache_ttl = 120
  294. ; Enables or disables the circular reference collector.
  295. ; http://php.net/zend.enable-gc
  296. zend.enable_gc = On
  297. ; If enabled, scripts may be written in encodings that are incompatible with
  298. ; the scanner. CP936, Big5, CP949 and Shift_JIS are the examples of such
  299. ; encodings. To use this feature, mbstring extension must be enabled.
  300. ; Default: Off
  301. ;zend.multibyte = Off
  302. ; Allows to set the default encoding for the scripts. This value will be used
  303. ; unless "declare(encoding=...)" directive appears at the top of the script.
  304. ; Only affects if zend.multibyte is set.
  305. ; Default: ""
  306. ;zend.script_encoding =
  307. ;;;;;;;;;;;;;;;;;
  308. ; Miscellaneous ;
  309. ;;;;;;;;;;;;;;;;;
  310. ; Decides whether PHP may expose the fact that it is installed on the server
  311. ; (e.g. by adding its signature to the Web server header). It is no security
  312. ; threat in any way, but it makes it possible to determine whether you use PHP
  313. ; on your server or not.
  314. ; http://php.net/expose-php
  315. expose_php = On
  316. ;;;;;;;;;;;;;;;;;;;
  317. ; Resource Limits ;
  318. ;;;;;;;;;;;;;;;;;;;
  319. ; Maximum execution time of each script, in seconds
  320. ; http://php.net/max-execution-time
  321. ; Note: This directive is hardcoded to 0 for the CLI SAPI
  322. max_execution_time = 30
  323. ; Maximum amount of time each script may spend parsing request data. It's a good
  324. ; idea to limit this time on productions servers in order to eliminate unexpectedly
  325. ; long running scripts.
  326. ; Note: This directive is hardcoded to -1 for the CLI SAPI
  327. ; Default Value: -1 (Unlimited)
  328. ; Development Value: 60 (60 seconds)
  329. ; Production Value: 60 (60 seconds)
  330. ; http://php.net/max-input-time
  331. max_input_time = 60
  332. ; Maximum input variable nesting level
  333. ; http://php.net/max-input-nesting-level
  334. ;max_input_nesting_level = 64
  335. ; How many GET/POST/COOKIE input variables may be accepted
  336. ; max_input_vars = 1000
  337. ; Maximum amount of memory a script may consume (128MB)
  338. ; http://php.net/memory-limit
  339. memory_limit = 512M
  340. ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
  341. ; Error handling and logging ;
  342. ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
  343. ; This directive informs PHP of which errors, warnings and notices you would like
  344. ; it to take action for. The recommended way of setting values for this
  345. ; directive is through the use of the error level constants and bitwise
  346. ; operators. The error level constants are below here for convenience as well as
  347. ; some common settings and their meanings.
  348. ; By default, PHP is set to take action on all errors, notices and warnings EXCEPT
  349. ; those related to E_NOTICE and E_STRICT, which together cover best practices and
  350. ; recommended coding standards in PHP. For performance reasons, this is the
  351. ; recommend error reporting setting. Your production server shouldn't be wasting
  352. ; resources complaining about best practices and coding standards. That's what
  353. ; development servers and development settings are for.
  354. ; Note: The php.ini-development file has this setting as E_ALL. This
  355. ; means it pretty much reports everything which is exactly what you want during
  356. ; development and early testing.
  357. ;
  358. ; Error Level Constants:
  359. ; E_ALL - All errors and warnings (includes E_STRICT as of PHP 5.4.0)
  360. ; E_ERROR - fatal run-time errors
  361. ; E_RECOVERABLE_ERROR - almost fatal run-time errors
  362. ; E_WARNING - run-time warnings (non-fatal errors)
  363. ; E_PARSE - compile-time parse errors
  364. ; E_NOTICE - run-time notices (these are warnings which often result
  365. ; from a bug in your code, but it's possible that it was
  366. ; intentional (e.g., using an uninitialized variable and
  367. ; relying on the fact it's automatically initialized to an
  368. ; empty string)
  369. ; E_STRICT - run-time notices, enable to have PHP suggest changes
  370. ; to your code which will ensure the best interoperability
  371. ; and forward compatibility of your code
  372. ; E_CORE_ERROR - fatal errors that occur during PHP's initial startup
  373. ; E_CORE_WARNING - warnings (non-fatal errors) that occur during PHP's
  374. ; initial startup
  375. ; E_COMPILE_ERROR - fatal compile-time errors
  376. ; E_COMPILE_WARNING - compile-time warnings (non-fatal errors)
  377. ; E_USER_ERROR - user-generated error message
  378. ; E_USER_WARNING - user-generated warning message
  379. ; E_USER_NOTICE - user-generated notice message
  380. ; E_DEPRECATED - warn about code that will not work in future versions
  381. ; of PHP
  382. ; E_USER_DEPRECATED - user-generated deprecation warnings
  383. ;
  384. ; Common Values:
  385. ; E_ALL (Show all errors, warnings and notices including coding standards.)
  386. ; E_ALL & ~E_NOTICE (Show all errors, except for notices)
  387. ; E_ALL & ~E_NOTICE & ~E_STRICT (Show all errors, except for notices and coding standards warnings.)
  388. ; E_COMPILE_ERROR|E_RECOVERABLE_ERROR|E_ERROR|E_CORE_ERROR (Show only errors)
  389. ; Default Value: E_ALL & ~E_NOTICE & ~E_STRICT & ~E_DEPRECATED
  390. ; Development Value: E_ALL
  391. ; Production Value: E_ALL & ~E_DEPRECATED & ~E_STRICT
  392. ; http://php.net/error-reporting
  393. error_reporting = E_ALL & ~E_DEPRECATED & ~E_STRICT
  394. ; This directive controls whether or not and where PHP will output errors,
  395. ; notices and warnings too. Error output is very useful during development, but
  396. ; it could be very dangerous in production environments. Depending on the code
  397. ; which is triggering the error, sensitive information could potentially leak
  398. ; out of your application such as database usernames and passwords or worse.
  399. ; It's recommended that errors be logged on production servers rather than
  400. ; having the errors sent to STDOUT.
  401. ; Possible Values:
  402. ; Off = Do not display any errors
  403. ; stderr = Display errors to STDERR (affects only CGI/CLI binaries!)
  404. ; On or stdout = Display errors to STDOUT
  405. ; Default Value: On
  406. ; Development Value: On
  407. ; Production Value: Off
  408. ; http://php.net/display-errors
  409. display_errors = Off
  410. ; The display of errors which occur during PHP's startup sequence are handled
  411. ; separately from display_errors. PHP's default behavior is to suppress those
  412. ; errors from clients. Turning the display of startup errors on can be useful in
  413. ; debugging configuration problems. But, it's strongly recommended that you
  414. ; leave this setting off on production servers.
  415. ; Default Value: Off
  416. ; Development Value: On
  417. ; Production Value: Off
  418. ; http://php.net/display-startup-errors
  419. display_startup_errors = Off
  420. ; Besides displaying errors, PHP can also log errors to locations such as a
  421. ; server-specific log, STDERR, or a location specified by the error_log
  422. ; directive found below. While errors should not be displayed on productions
  423. ; servers they should still be monitored and logging is a great way to do that.
  424. ; Default Value: Off
  425. ; Development Value: On
  426. ; Production Value: On
  427. ; http://php.net/log-errors
  428. log_errors = On
  429. ; Set maximum length of log_errors. In error_log information about the source is
  430. ; added. The default is 1024 and 0 allows to not apply any maximum length at all.
  431. ; http://php.net/log-errors-max-len
  432. log_errors_max_len = 1024
  433. ; Do not log repeated messages. Repeated errors must occur in same file on same
  434. ; line unless ignore_repeated_source is set true.
  435. ; http://php.net/ignore-repeated-errors
  436. ignore_repeated_errors = Off
  437. ; Ignore source of message when ignoring repeated messages. When this setting
  438. ; is On you will not log errors with repeated messages from different files or
  439. ; source lines.
  440. ; http://php.net/ignore-repeated-source
  441. ignore_repeated_source = Off
  442. ; If this parameter is set to Off, then memory leaks will not be shown (on
  443. ; stdout or in the log). This has only effect in a debug compile, and if
  444. ; error reporting includes E_WARNING in the allowed list
  445. ; http://php.net/report-memleaks
  446. report_memleaks = On
  447. ; This setting is on by default.
  448. ;report_zend_debug = 0
  449. ; Store the last error/warning message in $php_errormsg (boolean). Setting this value
  450. ; to On can assist in debugging and is appropriate for development servers. It should
  451. ; however be disabled on production servers.
  452. ; Default Value: Off
  453. ; Development Value: On
  454. ; Production Value: Off
  455. ; http://php.net/track-errors
  456. track_errors = Off
  457. ; Turn off normal error reporting and emit XML-RPC error XML
  458. ; http://php.net/xmlrpc-errors
  459. ;xmlrpc_errors = 0
  460. ; An XML-RPC faultCode
  461. ;xmlrpc_error_number = 0
  462. ; When PHP displays or logs an error, it has the capability of formatting the
  463. ; error message as HTML for easier reading. This directive controls whether
  464. ; the error message is formatted as HTML or not.
  465. ; Note: This directive is hardcoded to Off for the CLI SAPI
  466. ; Default Value: On
  467. ; Development Value: On
  468. ; Production value: On
  469. ; http://php.net/html-errors
  470. html_errors = On
  471. ; If html_errors is set to On *and* docref_root is not empty, then PHP
  472. ; produces clickable error messages that direct to a page describing the error
  473. ; or function causing the error in detail.
  474. ; You can download a copy of the PHP manual from http://php.net/docs
  475. ; and change docref_root to the base URL of your local copy including the
  476. ; leading '/'. You must also specify the file extension being used including
  477. ; the dot. PHP's default behavior is to leave these settings empty, in which
  478. ; case no links to documentation are generated.
  479. ; Note: Never use this feature for production boxes.
  480. ; http://php.net/docref-root
  481. ; Examples
  482. ;docref_root = "/phpmanual/"
  483. ; http://php.net/docref-ext
  484. ;docref_ext = .html
  485. ; String to output before an error message. PHP's default behavior is to leave
  486. ; this setting blank.
  487. ; http://php.net/error-prepend-string
  488. ; Example:
  489. ;error_prepend_string = "<span style='color: #ff0000'>"
  490. ; String to output after an error message. PHP's default behavior is to leave
  491. ; this setting blank.
  492. ; http://php.net/error-append-string
  493. ; Example:
  494. ;error_append_string = "</span>"
  495. ; Log errors to specified file. PHP's default behavior is to leave this value
  496. ; empty.
  497. ; http://php.net/error-log
  498. ; Example:
  499. ;error_log = php_errors.log
  500. ; Log errors to syslog (Event Log on NT, not valid in Windows 95).
  501. ;error_log = syslog
  502. ;windows.show_crt_warning
  503. ; Default value: 0
  504. ; Development value: 0
  505. ; Production value: 0
  506. ;;;;;;;;;;;;;;;;;
  507. ; Data Handling ;
  508. ;;;;;;;;;;;;;;;;;
  509. ; The separator used in PHP generated URLs to separate arguments.
  510. ; PHP's default setting is "&".
  511. ; http://php.net/arg-separator.output
  512. ; Example:
  513. ;arg_separator.output = "&amp;"
  514. ; List of separator(s) used by PHP to parse input URLs into variables.
  515. ; PHP's default setting is "&".
  516. ; NOTE: Every character in this directive is considered as separator!
  517. ; http://php.net/arg-separator.input
  518. ; Example:
  519. ;arg_separator.input = ";&"
  520. ; This directive determines which super global arrays are registered when PHP
  521. ; starts up. G,P,C,E & S are abbreviations for the following respective super
  522. ; globals: GET, POST, COOKIE, ENV and SERVER. There is a performance penalty
  523. ; paid for the registration of these arrays and because ENV is not as commonly
  524. ; used as the others, ENV is not recommended on productions servers. You
  525. ; can still get access to the environment variables through getenv() should you
  526. ; need to.
  527. ; Default Value: "EGPCS"
  528. ; Development Value: "GPCS"
  529. ; Production Value: "GPCS";
  530. ; http://php.net/variables-order
  531. variables_order = "GPCS"
  532. ; This directive determines which super global data (G,P,C,E & S) should
  533. ; be registered into the super global array REQUEST. If so, it also determines
  534. ; the order in which that data is registered. The values for this directive are
  535. ; specified in the same manner as the variables_order directive, EXCEPT one.
  536. ; Leaving this value empty will cause PHP to use the value set in the
  537. ; variables_order directive. It does not mean it will leave the super globals
  538. ; array REQUEST empty.
  539. ; Default Value: None
  540. ; Development Value: "GP"
  541. ; Production Value: "GP"
  542. ; http://php.net/request-order
  543. request_order = "GP"
  544. ; This directive determines whether PHP registers $argv & $argc each time it
  545. ; runs. $argv contains an array of all the arguments passed to PHP when a script
  546. ; is invoked. $argc contains an integer representing the number of arguments
  547. ; that were passed when the script was invoked. These arrays are extremely
  548. ; useful when running scripts from the command line. When this directive is
  549. ; enabled, registering these variables consumes CPU cycles and memory each time
  550. ; a script is executed. For performance reasons, this feature should be disabled
  551. ; on production servers.
  552. ; Note: This directive is hardcoded to On for the CLI SAPI
  553. ; Default Value: On
  554. ; Development Value: Off
  555. ; Production Value: Off
  556. ; http://php.net/register-argc-argv
  557. register_argc_argv = Off
  558. ; When enabled, the ENV, REQUEST and SERVER variables are created when they're
  559. ; first used (Just In Time) instead of when the script starts. If these
  560. ; variables are not used within a script, having this directive on will result
  561. ; in a performance gain. The PHP directive register_argc_argv must be disabled
  562. ; for this directive to have any affect.
  563. ; http://php.net/auto-globals-jit
  564. auto_globals_jit = On
  565. ; Whether PHP will read the POST data.
  566. ; This option is enabled by default.
  567. ; Most likely, you won't want to disable this option globally. It causes $_POST
  568. ; and $_FILES to always be empty; the only way you will be able to read the
  569. ; POST data will be through the php://input stream wrapper. This can be useful
  570. ; to proxy requests or to process the POST data in a memory efficient fashion.
  571. ; http://php.net/enable-post-data-reading
  572. ;enable_post_data_reading = Off
  573. ; Maximum size of POST data that PHP will accept.
  574. ; Its value may be 0 to disable the limit. It is ignored if POST data reading
  575. ; is disabled through enable_post_data_reading.
  576. ; http://php.net/post-max-size
  577. post_max_size = 8M
  578. ; Automatically add files before PHP document.
  579. ; http://php.net/auto-prepend-file
  580. auto_prepend_file =
  581. ; Automatically add files after PHP document.
  582. ; http://php.net/auto-append-file
  583. auto_append_file =
  584. ; By default, PHP will output a character encoding using
  585. ; the Content-type: header. To disable sending of the charset, simply
  586. ; set it to be empty.
  587. ;
  588. ; PHP's built-in default is text/html
  589. ; http://php.net/default-mimetype
  590. default_mimetype = "text/html"
  591. ; PHP's default character set is set to empty.
  592. ; http://php.net/default-charset
  593. ;default_charset = "UTF-8"
  594. ; Always populate the $HTTP_RAW_POST_DATA variable. PHP's default behavior is
  595. ; to disable this feature. If post reading is disabled through
  596. ; enable_post_data_reading, $HTTP_RAW_POST_DATA is *NOT* populated.
  597. ; http://php.net/always-populate-raw-post-data
  598. ;always_populate_raw_post_data = On
  599. ;;;;;;;;;;;;;;;;;;;;;;;;;
  600. ; Paths and Directories ;
  601. ;;;;;;;;;;;;;;;;;;;;;;;;;
  602. ; UNIX: "/path1:/path2"
  603. ;include_path = ".:/usr/share/php"
  604. ;
  605. ; Windows: "\path1;\path2"
  606. ;include_path = ".;c:\php\includes"
  607. ;
  608. ; PHP's default setting for include_path is ".;/path/to/php/pear"
  609. ; http://php.net/include-path
  610. ; The root of the PHP pages, used only if nonempty.
  611. ; if PHP was not compiled with FORCE_REDIRECT, you SHOULD set doc_root
  612. ; if you are running php as a CGI under any web server (other than IIS)
  613. ; see documentation for security issues. The alternate is to use the
  614. ; cgi.force_redirect configuration below
  615. ; http://php.net/doc-root
  616. doc_root =
  617. ; The directory under which PHP opens the script using /~username used only
  618. ; if nonempty.
  619. ; http://php.net/user-dir
  620. user_dir =
  621. ; Directory in which the loadable extensions (modules) reside.
  622. ; http://php.net/extension-dir
  623. ; extension_dir = "./"
  624. ; On windows:
  625. ; extension_dir = "ext"
  626. ; Directory where the temporary files should be placed.
  627. ; Defaults to the system default (see sys_get_temp_dir)
  628. ; sys_temp_dir = "/tmp"
  629. ; Whether or not to enable the dl() function. The dl() function does NOT work
  630. ; properly in multithreaded servers, such as IIS or Zeus, and is automatically
  631. ; disabled on them.
  632. ; http://php.net/enable-dl
  633. enable_dl = Off
  634. ; cgi.force_redirect is necessary to provide security running PHP as a CGI under
  635. ; most web servers. Left undefined, PHP turns this on by default. You can
  636. ; turn it off here AT YOUR OWN RISK
  637. ; **You CAN safely turn this off for IIS, in fact, you MUST.**
  638. ; http://php.net/cgi.force-redirect
  639. ;cgi.force_redirect = 1
  640. ; if cgi.nph is enabled it will force cgi to always sent Status: 200 with
  641. ; every request. PHP's default behavior is to disable this feature.
  642. ;cgi.nph = 1
  643. ; if cgi.force_redirect is turned on, and you are not running under Apache or Netscape
  644. ; (iPlanet) web servers, you MAY need to set an environment variable name that PHP
  645. ; will look for to know it is OK to continue execution. Setting this variable MAY
  646. ; cause security issues, KNOW WHAT YOU ARE DOING FIRST.
  647. ; http://php.net/cgi.redirect-status-env
  648. ;cgi.redirect_status_env =
  649. ; cgi.fix_pathinfo provides *real* PATH_INFO/PATH_TRANSLATED support for CGI. PHP's
  650. ; previous behaviour was to set PATH_TRANSLATED to SCRIPT_FILENAME, and to not grok
  651. ; what PATH_INFO is. For more information on PATH_INFO, see the cgi specs. Setting
  652. ; this to 1 will cause PHP CGI to fix its paths to conform to the spec. A setting
  653. ; of zero causes PHP to behave as before. Default is 1. You should fix your scripts
  654. ; to use SCRIPT_FILENAME rather than PATH_TRANSLATED.
  655. ; http://php.net/cgi.fix-pathinfo
  656. ;cgi.fix_pathinfo=1
  657. ; FastCGI under IIS (on WINNT based OS) supports the ability to impersonate
  658. ; security tokens of the calling client. This allows IIS to define the
  659. ; security context that the request runs under. mod_fastcgi under Apache
  660. ; does not currently support this feature (03/17/2002)
  661. ; Set to 1 if running under IIS. Default is zero.
  662. ; http://php.net/fastcgi.impersonate
  663. ;fastcgi.impersonate = 1
  664. ; Disable logging through FastCGI connection. PHP's default behavior is to enable
  665. ; this feature.
  666. ;fastcgi.logging = 0
  667. ; cgi.rfc2616_headers configuration option tells PHP what type of headers to
  668. ; use when sending HTTP response code. If it's set 0 PHP sends Status: header that
  669. ; is supported by Apache. When this option is set to 1 PHP will send
  670. ; RFC2616 compliant header.
  671. ; Default is zero.
  672. ; http://php.net/cgi.rfc2616-headers
  673. ;cgi.rfc2616_headers = 0
  674. ;;;;;;;;;;;;;;;;
  675. ; File Uploads ;
  676. ;;;;;;;;;;;;;;;;
  677. ; Whether to allow HTTP file uploads.
  678. ; http://php.net/file-uploads
  679. file_uploads = On
  680. ; Temporary directory for HTTP uploaded files (will use system default if not
  681. ; specified).
  682. ; http://php.net/upload-tmp-dir
  683. ;upload_tmp_dir =
  684. ; Maximum allowed size for uploaded files.
  685. ; http://php.net/upload-max-filesize
  686. upload_max_filesize = 2M
  687. ; Maximum number of files that can be uploaded via a single request
  688. max_file_uploads = 20
  689. ;;;;;;;;;;;;;;;;;;
  690. ; Fopen wrappers ;
  691. ;;;;;;;;;;;;;;;;;;
  692. ; Whether to allow the treatment of URLs (like http:// or ftp://) as files.
  693. ; http://php.net/allow-url-fopen
  694. allow_url_fopen = On
  695. ; Whether to allow include/require to open URLs (like http:// or ftp://) as files.
  696. ; http://php.net/allow-url-include
  697. allow_url_include = Off
  698. ; Define the anonymous ftp password (your email address). PHP's default setting
  699. ; for this is empty.
  700. ; http://php.net/from
  701. ;from="john@doe.com"
  702. ; Define the User-Agent string. PHP's default setting for this is empty.
  703. ; http://php.net/user-agent
  704. ;user_agent="PHP"
  705. ; Default timeout for socket based streams (seconds)
  706. ; http://php.net/default-socket-timeout
  707. default_socket_timeout = 60
  708. ; If your scripts have to deal with files from Macintosh systems,
  709. ; or you are running on a Mac and need to deal with files from
  710. ; unix or win32 systems, setting this flag will cause PHP to
  711. ; automatically detect the EOL character in those files so that
  712. ; fgets() and file() will work regardless of the source of the file.
  713. ; http://php.net/auto-detect-line-endings
  714. ;auto_detect_line_endings = Off
  715. ;;;;;;;;;;;;;;;;;;;;;;
  716. ; Dynamic Extensions ;
  717. ;;;;;;;;;;;;;;;;;;;;;;
  718. ; If you wish to have an extension loaded automatically, use the following
  719. ; syntax:
  720. ;
  721. ; extension=modulename.extension
  722. ;
  723. ; For example, on Windows:
  724. ;
  725. ; extension=msql.dll
  726. ;
  727. ; ... or under UNIX:
  728. ;
  729. ; extension=msql.so
  730. ;
  731. ; ... or with a path:
  732. ;
  733. ; extension=/path/to/extension/msql.so
  734. ;
  735. ; If you only provide the name of the extension, PHP will look for it in its
  736. ; default extension directory.
  737. ;
  738. ;;;;;;;;;;;;;;;;;;;
  739. ; Module Settings ;
  740. ;;;;;;;;;;;;;;;;;;;
  741. [CLI Server]
  742. ; Whether the CLI web server uses ANSI color coding in its terminal output.
  743. cli_server.color = On
  744. [Date]
  745. ; Defines the default timezone used by the date functions
  746. ; http://php.net/date.timezone
  747. date.timezone = America/Sao_Paulo
  748. ; http://php.net/date.default-latitude
  749. ;date.default_latitude = 31.7667
  750. ; http://php.net/date.default-longitude
  751. ;date.default_longitude = 35.2333
  752. ; http://php.net/date.sunrise-zenith
  753. ;date.sunrise_zenith = 90.583333
  754. ; http://php.net/date.sunset-zenith
  755. ;date.sunset_zenith = 90.583333
  756. [filter]
  757. ; http://php.net/filter.default
  758. ;filter.default = unsafe_raw
  759. ; http://php.net/filter.default-flags
  760. ;filter.default_flags =
  761. [iconv]
  762. ;iconv.input_encoding = ISO-8859-1
  763. ;iconv.internal_encoding = ISO-8859-1
  764. ;iconv.output_encoding = ISO-8859-1
  765. [intl]
  766. ;intl.default_locale =
  767. ; This directive allows you to produce PHP errors when some error
  768. ; happens within intl functions. The value is the level of the error produced.
  769. ; Default is 0, which does not produce any errors.
  770. ;intl.error_level = E_WARNING
  771. [sqlite]
  772. ; http://php.net/sqlite.assoc-case
  773. ;sqlite.assoc_case = 0
  774. [sqlite3]
  775. ;sqlite3.extension_dir =
  776. [Pcre]
  777. ;PCRE library backtracking limit.
  778. ; http://php.net/pcre.backtrack-limit
  779. ;pcre.backtrack_limit=100000
  780. ;PCRE library recursion limit.
  781. ;Please note that if you set this value to a high number you may consume all
  782. ;the available process stack and eventually crash PHP (due to reaching the
  783. ;stack size limit imposed by the Operating System).
  784. ; http://php.net/pcre.recursion-limit
  785. ;pcre.recursion_limit=100000
  786. [Pdo]
  787. ; Whether to pool ODBC connections. Can be one of "strict", "relaxed" or "off"
  788. ; http://php.net/pdo-odbc.connection-pooling
  789. ;pdo_odbc.connection_pooling=strict
  790. ;pdo_odbc.db2_instance_name
  791. [Pdo_mysql]
  792. ; If mysqlnd is used: Number of cache slots for the internal result set cache
  793. ; http://php.net/pdo_mysql.cache_size
  794. pdo_mysql.cache_size = 2000
  795. ; Default socket name for local MySQL connects. If empty, uses the built-in
  796. ; MySQL defaults.
  797. ; http://php.net/pdo_mysql.default-socket
  798. pdo_mysql.default_socket=
  799. [Phar]
  800. ; http://php.net/phar.readonly
  801. ;phar.readonly = On
  802. ; http://php.net/phar.require-hash
  803. ;phar.require_hash = On
  804. ;phar.cache_list =
  805. [mail function]
  806. ; For Win32 only.
  807. ; http://php.net/smtp
  808. SMTP = localhost
  809. ; http://php.net/smtp-port
  810. smtp_port = 25
  811. ; For Win32 only.
  812. ; http://php.net/sendmail-from
  813. ;sendmail_from = me@example.com
  814. ; For Unix only. You may supply arguments as well (default: "sendmail -t -i").
  815. ; http://php.net/sendmail-path
  816. ;sendmail_path =
  817. ; Force the addition of the specified parameters to be passed as extra parameters
  818. ; to the sendmail binary. These parameters will always replace the value of
  819. ; the 5th parameter to mail(), even in safe mode.
  820. ;mail.force_extra_parameters =
  821. ; Add X-PHP-Originating-Script: that will include uid of the script followed by the filename
  822. mail.add_x_header = On
  823. ; The path to a log file that will log all mail() calls. Log entries include
  824. ; the full path of the script, line number, To address and headers.
  825. ;mail.log =
  826. ; Log mail to syslog (Event Log on NT, not valid in Windows 95).
  827. ;mail.log = syslog
  828. [SQL]
  829. ; http://php.net/sql.safe-mode
  830. sql.safe_mode = Off
  831. [ODBC]
  832. ; http://php.net/odbc.default-db
  833. ;odbc.default_db = Not yet implemented
  834. ; http://php.net/odbc.default-user
  835. ;odbc.default_user = Not yet implemented
  836. ; http://php.net/odbc.default-pw
  837. ;odbc.default_pw = Not yet implemented
  838. ; Controls the ODBC cursor model.
  839. ; Default: SQL_CURSOR_STATIC (default).
  840. ;odbc.default_cursortype
  841. ; Allow or prevent persistent links.
  842. ; http://php.net/odbc.allow-persistent
  843. odbc.allow_persistent = On
  844. ; Check that a connection is still valid before reuse.
  845. ; http://php.net/odbc.check-persistent
  846. odbc.check_persistent = On
  847. ; Maximum number of persistent links. -1 means no limit.
  848. ; http://php.net/odbc.max-persistent
  849. odbc.max_persistent = -1
  850. ; Maximum number of links (persistent + non-persistent). -1 means no limit.
  851. ; http://php.net/odbc.max-links
  852. odbc.max_links = -1
  853. ; Handling of LONG fields. Returns number of bytes to variables. 0 means
  854. ; passthru.
  855. ; http://php.net/odbc.defaultlrl
  856. odbc.defaultlrl = 4096
  857. ; Handling of binary data. 0 means passthru, 1 return as is, 2 convert to char.
  858. ; See the documentation on odbc_binmode and odbc_longreadlen for an explanation
  859. ; of odbc.defaultlrl and odbc.defaultbinmode
  860. ; http://php.net/odbc.defaultbinmode
  861. odbc.defaultbinmode = 1
  862. ;birdstep.max_links = -1
  863. [Interbase]
  864. ; Allow or prevent persistent links.
  865. ibase.allow_persistent = 1
  866. ; Maximum number of persistent links. -1 means no limit.
  867. ibase.max_persistent = -1
  868. ; Maximum number of links (persistent + non-persistent). -1 means no limit.
  869. ibase.max_links = -1
  870. ; Default database name for ibase_connect().
  871. ;ibase.default_db =
  872. ; Default username for ibase_connect().
  873. ;ibase.default_user =
  874. ; Default password for ibase_connect().
  875. ;ibase.default_password =
  876. ; Default charset for ibase_connect().
  877. ;ibase.default_charset =
  878. ; Default timestamp format.
  879. ibase.timestampformat = "%Y-%m-%d %H:%M:%S"
  880. ; Default date format.
  881. ibase.dateformat = "%Y-%m-%d"
  882. ; Default time format.
  883. ibase.timeformat = "%H:%M:%S"
  884. [MySQL]
  885. ; Allow accessing, from PHP's perspective, local files with LOAD DATA statements
  886. ; http://php.net/mysql.allow_local_infile
  887. mysql.allow_local_infile = On
  888. ; Allow or prevent persistent links.
  889. ; http://php.net/mysql.allow-persistent
  890. mysql.allow_persistent = On
  891. ; If mysqlnd is used: Number of cache slots for the internal result set cache
  892. ; http://php.net/mysql.cache_size
  893. mysql.cache_size = 2000
  894. ; Maximum number of persistent links. -1 means no limit.
  895. ; http://php.net/mysql.max-persistent
  896. mysql.max_persistent = -1
  897. ; Maximum number of links (persistent + non-persistent). -1 means no limit.
  898. ; http://php.net/mysql.max-links
  899. mysql.max_links = -1
  900. ; Default port number for mysql_connect(). If unset, mysql_connect() will use
  901. ; the $MYSQL_TCP_PORT or the mysql-tcp entry in /etc/services or the
  902. ; compile-time value defined MYSQL_PORT (in that order). Win32 will only look
  903. ; at MYSQL_PORT.
  904. ; http://php.net/mysql.default-port
  905. mysql.default_port =
  906. ; Default socket name for local MySQL connects. If empty, uses the built-in
  907. ; MySQL defaults.
  908. ; http://php.net/mysql.default-socket
  909. mysql.default_socket =
  910. ; Default host for mysql_connect() (doesn't apply in safe mode).
  911. ; http://php.net/mysql.default-host
  912. mysql.default_host =
  913. ; Default user for mysql_connect() (doesn't apply in safe mode).
  914. ; http://php.net/mysql.default-user
  915. mysql.default_user =
  916. ; Default password for mysql_connect() (doesn't apply in safe mode).
  917. ; Note that this is generally a *bad* idea to store passwords in this file.
  918. ; *Any* user with PHP access can run 'echo get_cfg_var("mysql.default_password")
  919. ; and reveal this password! And of course, any users with read access to this
  920. ; file will be able to reveal the password as well.
  921. ; http://php.net/mysql.default-password
  922. mysql.default_password =
  923. ; Maximum time (in seconds) for connect timeout. -1 means no limit
  924. ; http://php.net/mysql.connect-timeout
  925. mysql.connect_timeout = 60
  926. ; Trace mode. When trace_mode is active (=On), warnings for table/index scans and
  927. ; SQL-Errors will be displayed.
  928. ; http://php.net/mysql.trace-mode
  929. mysql.trace_mode = Off
  930. [MySQLi]
  931. ; Maximum number of persistent links. -1 means no limit.
  932. ; http://php.net/mysqli.max-persistent
  933. mysqli.max_persistent = -1
  934. ; Allow accessing, from PHP's perspective, local files with LOAD DATA statements
  935. ; http://php.net/mysqli.allow_local_infile
  936. ;mysqli.allow_local_infile = On
  937. ; Allow or prevent persistent links.
  938. ; http://php.net/mysqli.allow-persistent
  939. mysqli.allow_persistent = On
  940. ; Maximum number of links. -1 means no limit.
  941. ; http://php.net/mysqli.max-links
  942. mysqli.max_links = -1
  943. ; If mysqlnd is used: Number of cache slots for the internal result set cache
  944. ; http://php.net/mysqli.cache_size
  945. mysqli.cache_size = 2000
  946. ; Default port number for mysqli_connect(). If unset, mysqli_connect() will use
  947. ; the $MYSQL_TCP_PORT or the mysql-tcp entry in /etc/services or the
  948. ; compile-time value defined MYSQL_PORT (in that order). Win32 will only look
  949. ; at MYSQL_PORT.
  950. ; http://php.net/mysqli.default-port
  951. mysqli.default_port = 3306
  952. ; Default socket name for local MySQL connects. If empty, uses the built-in
  953. ; MySQL defaults.
  954. ; http://php.net/mysqli.default-socket
  955. mysqli.default_socket =
  956. ; Default host for mysql_connect() (doesn't apply in safe mode).
  957. ; http://php.net/mysqli.default-host
  958. mysqli.default_host =
  959. ; Default user for mysql_connect() (doesn't apply in safe mode).
  960. ; http://php.net/mysqli.default-user
  961. mysqli.default_user =
  962. ; Default password for mysqli_connect() (doesn't apply in safe mode).
  963. ; Note that this is generally a *bad* idea to store passwords in this file.
  964. ; *Any* user with PHP access can run 'echo get_cfg_var("mysqli.default_pw")
  965. ; and reveal this password! And of course, any users with read access to this
  966. ; file will be able to reveal the password as well.
  967. ; http://php.net/mysqli.default-pw
  968. mysqli.default_pw =
  969. ; Allow or prevent reconnect
  970. mysqli.reconnect = Off
  971. [mysqlnd]
  972. ; Enable / Disable collection of general statistics by mysqlnd which can be
  973. ; used to tune and monitor MySQL operations.
  974. ; http://php.net/mysqlnd.collect_statistics
  975. mysqlnd.collect_statistics = On
  976. ; Enable / Disable collection of memory usage statistics by mysqlnd which can be
  977. ; used to tune and monitor MySQL operations.
  978. ; http://php.net/mysqlnd.collect_memory_statistics
  979. mysqlnd.collect_memory_statistics = Off
  980. ; Size of a pre-allocated buffer used when sending commands to MySQL in bytes.
  981. ; http://php.net/mysqlnd.net_cmd_buffer_size
  982. ;mysqlnd.net_cmd_buffer_size = 2048
  983. ; Size of a pre-allocated buffer used for reading data sent by the server in
  984. ; bytes.
  985. ; http://php.net/mysqlnd.net_read_buffer_size
  986. ;mysqlnd.net_read_buffer_size = 32768
  987. [OCI8]
  988. ; Connection: Enables privileged connections using external
  989. ; credentials (OCI_SYSOPER, OCI_SYSDBA)
  990. ; http://php.net/oci8.privileged-connect
  991. ;oci8.privileged_connect = Off
  992. ; Connection: The maximum number of persistent OCI8 connections per
  993. ; process. Using -1 means no limit.
  994. ; http://php.net/oci8.max-persistent
  995. ;oci8.max_persistent = -1
  996. ; Connection: The maximum number of seconds a process is allowed to
  997. ; maintain an idle persistent connection. Using -1 means idle
  998. ; persistent connections will be maintained forever.
  999. ; http://php.net/oci8.persistent-timeout
  1000. ;oci8.persistent_timeout = -1
  1001. ; Connection: The number of seconds that must pass before issuing a
  1002. ; ping during oci_pconnect() to check the connection validity. When
  1003. ; set to 0, each oci_pconnect() will cause a ping. Using -1 disables
  1004. ; pings completely.
  1005. ; http://php.net/oci8.ping-interval
  1006. ;oci8.ping_interval = 60
  1007. ; Connection: Set this to a user chosen connection class to be used
  1008. ; for all pooled server requests with Oracle 11g Database Resident
  1009. ; Connection Pooling (DRCP). To use DRCP, this value should be set to
  1010. ; the same string for all web servers running the same application,
  1011. ; the database pool must be configured, and the connection string must
  1012. ; specify to use a pooled server.
  1013. ;oci8.connection_class =
  1014. ; High Availability: Using On lets PHP receive Fast Application
  1015. ; Notification (FAN) events generated when a database node fails. The
  1016. ; database must also be configured to post FAN events.
  1017. ;oci8.events = Off
  1018. ; Tuning: This option enables statement caching, and specifies how
  1019. ; many statements to cache. Using 0 disables statement caching.
  1020. ; http://php.net/oci8.statement-cache-size
  1021. ;oci8.statement_cache_size = 20
  1022. ; Tuning: Enables statement prefetching and sets the default number of
  1023. ; rows that will be fetched automatically after statement execution.
  1024. ; http://php.net/oci8.default-prefetch
  1025. ;oci8.default_prefetch = 100
  1026. ; Compatibility. Using On means oci_close() will not close
  1027. ; oci_connect() and oci_new_connect() connections.
  1028. ; http://php.net/oci8.old-oci-close-semantics
  1029. ;oci8.old_oci_close_semantics = Off
  1030. [PostgreSQL]
  1031. ; Allow or prevent persistent links.
  1032. ; http://php.net/pgsql.allow-persistent
  1033. pgsql.allow_persistent = On
  1034. ; Detect broken persistent links always with pg_pconnect().
  1035. ; Auto reset feature requires a little overheads.
  1036. ; http://php.net/pgsql.auto-reset-persistent
  1037. pgsql.auto_reset_persistent = Off
  1038. ; Maximum number of persistent links. -1 means no limit.
  1039. ; http://php.net/pgsql.max-persistent
  1040. pgsql.max_persistent = -1
  1041. ; Maximum number of links (persistent+non persistent). -1 means no limit.
  1042. ; http://php.net/pgsql.max-links
  1043. pgsql.max_links = -1
  1044. ; Ignore PostgreSQL backends Notice message or not.
  1045. ; Notice message logging require a little overheads.
  1046. ; http://php.net/pgsql.ignore-notice
  1047. pgsql.ignore_notice = 0
  1048. ; Log PostgreSQL backends Notice message or not.
  1049. ; Unless pgsql.ignore_notice=0, module cannot log notice message.
  1050. ; http://php.net/pgsql.log-notice
  1051. pgsql.log_notice = 0
  1052. [Sybase-CT]
  1053. ; Allow or prevent persistent links.
  1054. ; http://php.net/sybct.allow-persistent
  1055. sybct.allow_persistent = On
  1056. ; Maximum number of persistent links. -1 means no limit.
  1057. ; http://php.net/sybct.max-persistent
  1058. sybct.max_persistent = -1
  1059. ; Maximum number of links (persistent + non-persistent). -1 means no limit.
  1060. ; http://php.net/sybct.max-links
  1061. sybct.max_links = -1
  1062. ; Minimum server message severity to display.
  1063. ; http://php.net/sybct.min-server-severity
  1064. sybct.min_server_severity = 10
  1065. ; Minimum client message severity to display.
  1066. ; http://php.net/sybct.min-client-severity
  1067. sybct.min_client_severity = 10
  1068. ; Set per-context timeout
  1069. ; http://php.net/sybct.timeout
  1070. ;sybct.timeout=
  1071. ;sybct.packet_size
  1072. ; The maximum time in seconds to wait for a connection attempt to succeed before returning failure.
  1073. ; Default: one minute
  1074. ;sybct.login_timeout=
  1075. ; The name of the host you claim to be connecting from, for display by sp_who.
  1076. ; Default: none
  1077. ;sybct.hostname=
  1078. ; Allows you to define how often deadlocks are to be retried. -1 means "forever".
  1079. ; Default: 0
  1080. ;sybct.deadlock_retry_count=
  1081. [bcmath]
  1082. ; Number of decimal digits for all bcmath functions.
  1083. ; http://php.net/bcmath.scale
  1084. bcmath.scale = 0
  1085. [browscap]
  1086. ; http://php.net/browscap
  1087. ;browscap = extra/browscap.ini
  1088. [Session]
  1089. ; Handler used to store/retrieve data.
  1090. ; http://php.net/session.save-handler
  1091. session.save_handler = files
  1092. ; Argument passed to save_handler. In the case of files, this is the path
  1093. ; where data files are stored. Note: Windows users have to change this
  1094. ; variable in order to use PHP's session functions.
  1095. ;
  1096. ; The path can be defined as:
  1097. ;
  1098. ; session.save_path = "N;/path"
  1099. ;
  1100. ; where N is an integer. Instead of storing all the session files in
  1101. ; /path, what this will do is use subdirectories N-levels deep, and
  1102. ; store the session data in those directories. This is useful if you
  1103. ; or your OS have problems with lots of files in one directory, and is
  1104. ; a more efficient layout for servers that handle lots of sessions.
  1105. ;
  1106. ; NOTE 1: PHP will not create this directory structure automatically.
  1107. ; You can use the script in the ext/session dir for that purpose.
  1108. ; NOTE 2: See the section on garbage collection below if you choose to
  1109. ; use subdirectories for session storage
  1110. ;
  1111. ; The file storage module creates files using mode 600 by default.
  1112. ; You can change that by using
  1113. ;
  1114. ; session.save_path = "N;MODE;/path"
  1115. ;
  1116. ; where MODE is the octal representation of the mode. Note that this
  1117. ; does not overwrite the process's umask.
  1118. ; http://php.net/session.save-path
  1119. ;session.save_path = "/var/lib/php5"
  1120. ; Whether to use strict session mode.
  1121. ; Strict session mode does not accept uninitialized session ID and regenerate
  1122. ; session ID if browser sends uninitialized session ID. Strict mode protects
  1123. ; applications from session fixation via session adoption vulnerability. It is
  1124. ; disabled by default for maximum compatibility, but enabling it is encouraged.
  1125. ; https://wiki.php.net/rfc/strict_sessions
  1126. session.use_strict_mode = 0
  1127. ; Whether to use cookies.
  1128. ; http://php.net/session.use-cookies
  1129. session.use_cookies = 1
  1130. ; http://php.net/session.cookie-secure
  1131. ;session.cookie_secure =
  1132. ; This option forces PHP to fetch and use a cookie for storing and maintaining
  1133. ; the session id. We encourage this operation as it's very helpful in combating
  1134. ; session hijacking when not specifying and managing your own session id. It is
  1135. ; not the end all be all of session hijacking defense, but it's a good start.
  1136. ; http://php.net/session.use-only-cookies
  1137. session.use_only_cookies = 1
  1138. ; Name of the session (used as cookie name).
  1139. ; http://php.net/session.name
  1140. session.name = PHPSESSID
  1141. ; Initialize session on request startup.
  1142. ; http://php.net/session.auto-start
  1143. session.auto_start = 0
  1144. ; Lifetime in seconds of cookie or, if 0, until browser is restarted.
  1145. ; http://php.net/session.cookie-lifetime
  1146. session.cookie_lifetime = 0
  1147. ; The path for which the cookie is valid.
  1148. ; http://php.net/session.cookie-path
  1149. session.cookie_path = /
  1150. ; The domain for which the cookie is valid.
  1151. ; http://php.net/session.cookie-domain
  1152. session.cookie_domain =
  1153. ; Whether or not to add the httpOnly flag to the cookie, which makes it inaccessible to browser scripting languages such as JavaScript.
  1154. ; http://php.net/session.cookie-httponly
  1155. session.cookie_httponly =
  1156. ; Handler used to serialize data. php is the standard serializer of PHP.
  1157. ; http://php.net/session.serialize-handler
  1158. session.serialize_handler = php
  1159. ; Defines the probability that the 'garbage collection' process is started
  1160. ; on every session initialization. The probability is calculated by using
  1161. ; gc_probability/gc_divisor. Where session.gc_probability is the numerator
  1162. ; and gc_divisor is the denominator in the equation. Setting this value to 1
  1163. ; when the session.gc_divisor value is 100 will give you approximately a 1% chance
  1164. ; the gc will run on any give request.
  1165. ; Default Value: 1
  1166. ; Development Value: 1
  1167. ; Production Value: 1
  1168. ; http://php.net/session.gc-probability
  1169. session.gc_probability = 0
  1170. ; Defines the probability that the 'garbage collection' process is started on every
  1171. ; session initialization. The probability is calculated by using the following equation:
  1172. ; gc_probability/gc_divisor. Where session.gc_probability is the numerator and
  1173. ; session.gc_divisor is the denominator in the equation. Setting this value to 1
  1174. ; when the session.gc_divisor value is 100 will give you approximately a 1% chance
  1175. ; the gc will run on any give request. Increasing this value to 1000 will give you
  1176. ; a 0.1% chance the gc will run on any give request. For high volume production servers,
  1177. ; this is a more efficient approach.
  1178. ; Default Value: 100
  1179. ; Development Value: 1000
  1180. ; Production Value: 1000
  1181. ; http://php.net/session.gc-divisor
  1182. session.gc_divisor = 1000
  1183. ; After this number of seconds, stored data will be seen as 'garbage' and
  1184. ; cleaned up by the garbage collection process.
  1185. ; http://php.net/session.gc-maxlifetime
  1186. session.gc_maxlifetime = 1440
  1187. ; NOTE: If you are using the subdirectory option for storing session files
  1188. ; (see session.save_path above), then garbage collection does *not*
  1189. ; happen automatically. You will need to do your own garbage
  1190. ; collection through a shell script, cron entry, or some other method.
  1191. ; For example, the following script would is the equivalent of
  1192. ; setting session.gc_maxlifetime to 1440 (1440 seconds = 24 minutes):
  1193. ; find /path/to/sessions -cmin +24 -type f | xargs rm
  1194. ; PHP 4.2 and less have an undocumented feature/bug that allows you to
  1195. ; to initialize a session variable in the global scope.
  1196. ; PHP 4.3 and later will warn you, if this feature is used.
  1197. ; You can disable the feature and the warning separately. At this time,
  1198. ; the warning is only displayed, if bug_compat_42 is enabled. This feature
  1199. ; introduces some serious security problems if not handled correctly. It's
  1200. ; recommended that you do not use this feature on production servers. But you
  1201. ; should enable this on development servers and enable the warning as well. If you
  1202. ; do not enable the feature on development servers, you won't be warned when it's
  1203. ; used and debugging errors caused by this can be difficult to track down.
  1204. ; Default Value: On
  1205. ; Development Value: On
  1206. ; Production Value: Off
  1207. ; http://php.net/session.bug-compat-42
  1208. session.bug_compat_42 = Off
  1209. ; This setting controls whether or not you are warned by PHP when initializing a
  1210. ; session value into the global space. session.bug_compat_42 must be enabled before
  1211. ; these warnings can be issued by PHP. See the directive above for more information.
  1212. ; Default Value: On
  1213. ; Development Value: On
  1214. ; Production Value: Off
  1215. ; http://php.net/session.bug-compat-warn
  1216. session.bug_compat_warn = Off
  1217. ; Check HTTP Referer to invalidate externally stored URLs containing ids.
  1218. ; HTTP_REFERER has to contain this substring for the session to be
  1219. ; considered as valid.
  1220. ; http://php.net/session.referer-check
  1221. session.referer_check =
  1222. ; How many bytes to read from the file.
  1223. ; http://php.net/session.entropy-length
  1224. ;session.entropy_length = 32
  1225. ; Specified here to create the session id.
  1226. ; http://php.net/session.entropy-file
  1227. ; Defaults to /dev/urandom
  1228. ; On systems that don't have /dev/urandom but do have /dev/arandom, this will default to /dev/arandom
  1229. ; If neither are found at compile time, the default is no entropy file.
  1230. ; On windows, setting the entropy_length setting will activate the
  1231. ; Windows random source (using the CryptoAPI)
  1232. ;session.entropy_file = /dev/urandom
  1233. ; Set to {nocache,private,public,} to determine HTTP caching aspects
  1234. ; or leave this empty to avoid sending anti-caching headers.
  1235. ; http://php.net/session.cache-limiter
  1236. session.cache_limiter = nocache
  1237. ; Document expires after n minutes.
  1238. ; http://php.net/session.cache-expire
  1239. session.cache_expire = 180
  1240. ; trans sid support is disabled by default.
  1241. ; Use of trans sid may risk your users security.
  1242. ; Use this option with caution.
  1243. ; - User may send URL contains active session ID
  1244. ; to other person via. email/irc/etc.
  1245. ; - URL that contains active session ID may be stored
  1246. ; in publicly accessible computer.
  1247. ; - User may access your site with the same session ID
  1248. ; always using URL stored in browser's history or bookmarks.
  1249. ; http://php.net/session.use-trans-sid
  1250. session.use_trans_sid = 0
  1251. ; Select a hash function for use in generating session ids.
  1252. ; Possible Values
  1253. ; 0 (MD5 128 bits)
  1254. ; 1 (SHA-1 160 bits)
  1255. ; This option may also be set to the name of any hash function supported by
  1256. ; the hash extension. A list of available hashes is returned by the hash_algos()
  1257. ; function.
  1258. ; http://php.net/session.hash-function
  1259. session.hash_function = 0
  1260. ; Define how many bits are stored in each character when converting
  1261. ; the binary hash data to something readable.
  1262. ; Possible values:
  1263. ; 4 (4 bits: 0-9, a-f)
  1264. ; 5 (5 bits: 0-9, a-v)
  1265. ; 6 (6 bits: 0-9, a-z, A-Z, "-", ",")
  1266. ; Default Value: 4
  1267. ; Development Value: 5
  1268. ; Production Value: 5
  1269. ; http://php.net/session.hash-bits-per-character
  1270. session.hash_bits_per_character = 5
  1271. ; The URL rewriter will look for URLs in a defined set of HTML tags.
  1272. ; form/fieldset are special; if you include them here, the rewriter will
  1273. ; add a hidden <input> field with the info which is otherwise appended
  1274. ; to URLs. If you want XHTML conformity, remove the form entry.
  1275. ; Note that all valid entries require a "=", even if no value follows.
  1276. ; Default Value: "a=href,area=href,frame=src,form=,fieldset="
  1277. ; Development Value: "a=href,area=href,frame=src,input=src,form=fakeentry"
  1278. ; Production Value: "a=href,area=href,frame=src,input=src,form=fakeentry"
  1279. ; http://php.net/url-rewriter.tags
  1280. url_rewriter.tags = "a=href,area=href,frame=src,input=src,form=fakeentry"
  1281. ; Enable upload progress tracking in $_SESSION
  1282. ; Default Value: On
  1283. ; Development Value: On
  1284. ; Production Value: On
  1285. ; http://php.net/session.upload-progress.enabled
  1286. ;session.upload_progress.enabled = On
  1287. ; Cleanup the progress information as soon as all POST data has been read
  1288. ; (i.e. upload completed).
  1289. ; Default Value: On
  1290. ; Development Value: On
  1291. ; Production Value: On
  1292. ; http://php.net/session.upload-progress.cleanup
  1293. ;session.upload_progress.cleanup = On
  1294. ; A prefix used for the upload progress key in $_SESSION
  1295. ; Default Value: "upload_progress_"
  1296. ; Development Value: "upload_progress_"
  1297. ; Production Value: "upload_progress_"
  1298. ; http://php.net/session.upload-progress.prefix
  1299. ;session.upload_progress.prefix = "upload_progress_"
  1300. ; The index name (concatenated with the prefix) in $_SESSION
  1301. ; containing the upload progress information
  1302. ; Default Value: "PHP_SESSION_UPLOAD_PROGRESS"
  1303. ; Development Value: "PHP_SESSION_UPLOAD_PROGRESS"
  1304. ; Production Value: "PHP_SESSION_UPLOAD_PROGRESS"
  1305. ; http://php.net/session.upload-progress.name
  1306. ;session.upload_progress.name = "PHP_SESSION_UPLOAD_PROGRESS"
  1307. ; How frequently the upload progress should be updated.
  1308. ; Given either in percentages (per-file), or in bytes
  1309. ; Default Value: "1%"
  1310. ; Development Value: "1%"
  1311. ; Production Value: "1%"
  1312. ; http://php.net/session.upload-progress.freq
  1313. ;session.upload_progress.freq = "1%"
  1314. ; The minimum delay between updates, in seconds
  1315. ; Default Value: 1
  1316. ; Development Value: 1
  1317. ; Production Value: 1
  1318. ; http://php.net/session.upload-progress.min-freq
  1319. ;session.upload_progress.min_freq = "1"
  1320. [MSSQL]
  1321. ; Allow or prevent persistent links.
  1322. mssql.allow_persistent = On
  1323. ; Maximum number of persistent links. -1 means no limit.
  1324. mssql.max_persistent = -1
  1325. ; Maximum number of links (persistent+non persistent). -1 means no limit.
  1326. mssql.max_links = -1
  1327. ; Minimum error severity to display.
  1328. mssql.min_error_severity = 10
  1329. ; Minimum message severity to display.
  1330. mssql.min_message_severity = 10
  1331. ; Compatibility mode with old versions of PHP 3.0.
  1332. mssql.compatibility_mode = Off
  1333. ; Connect timeout
  1334. ;mssql.connect_timeout = 5
  1335. ; Query timeout
  1336. ;mssql.timeout = 60
  1337. ; Valid range 0 - 2147483647. Default = 4096.
  1338. ;mssql.textlimit = 4096
  1339. ; Valid range 0 - 2147483647. Default = 4096.
  1340. ;mssql.textsize = 4096
  1341. ; Limits the number of records in each batch. 0 = all records in one batch.
  1342. ;mssql.batchsize = 0
  1343. ; Specify how datetime and datetim4 columns are returned
  1344. ; On => Returns data converted to SQL server settings
  1345. ; Off => Returns values as YYYY-MM-DD hh:mm:ss
  1346. ;mssql.datetimeconvert = On
  1347. ; Use NT authentication when connecting to the server
  1348. mssql.secure_connection = Off
  1349. ; Specify max number of processes. -1 = library default
  1350. ; msdlib defaults to 25
  1351. ; FreeTDS defaults to 4096
  1352. ;mssql.max_procs = -1
  1353. ; Specify client character set.
  1354. ; If empty or not set the client charset from freetds.conf is used
  1355. ; This is only used when compiled with FreeTDS
  1356. ;mssql.charset = "ISO-8859-1"
  1357. [Assertion]
  1358. ; Assert(expr); active by default.
  1359. ; http://php.net/assert.active
  1360. ;assert.active = On
  1361. ; Issue a PHP warning for each failed assertion.
  1362. ; http://php.net/assert.warning
  1363. ;assert.warning = On
  1364. ; Don't bail out by default.
  1365. ; http://php.net/assert.bail
  1366. ;assert.bail = Off
  1367. ; User-function to be called if an assertion fails.
  1368. ; http://php.net/assert.callback
  1369. ;assert.callback = 0
  1370. ; Eval the expression with current error_reporting(). Set to true if you want
  1371. ; error_reporting(0) around the eval().
  1372. ; http://php.net/assert.quiet-eval
  1373. ;assert.quiet_eval = 0
  1374. [COM]
  1375. ; path to a file containing GUIDs, IIDs or filenames of files with TypeLibs
  1376. ; http://php.net/com.typelib-file
  1377. ;com.typelib_file =
  1378. ; allow Distributed-COM calls
  1379. ; http://php.net/com.allow-dcom
  1380. ;com.allow_dcom = true
  1381. ; autoregister constants of a components typlib on com_load()
  1382. ; http://php.net/com.autoregister-typelib
  1383. ;com.autoregister_typelib = true
  1384. ; register constants casesensitive
  1385. ; http://php.net/com.autoregister-casesensitive
  1386. ;com.autoregister_casesensitive = false
  1387. ; show warnings on duplicate constant registrations
  1388. ; http://php.net/com.autoregister-verbose
  1389. ;com.autoregister_verbose = true
  1390. ; The default character set code-page to use when passing strings to and from COM objects.
  1391. ; Default: system ANSI code page
  1392. ;com.code_page=
  1393. [mbstring]
  1394. ; language for internal character representation.
  1395. ; http://php.net/mbstring.language
  1396. ;mbstring.language = Japanese
  1397. ; internal/script encoding.
  1398. ; Some encoding cannot work as internal encoding.
  1399. ; (e.g. SJIS, BIG5, ISO-2022-*)
  1400. ; http://php.net/mbstring.internal-encoding
  1401. ;mbstring.internal_encoding = UTF-8
  1402. ; http input encoding.
  1403. ; http://php.net/mbstring.http-input
  1404. ;mbstring.http_input = UTF-8
  1405. ; http output encoding. mb_output_handler must be
  1406. ; registered as output buffer to function
  1407. ; http://php.net/mbstring.http-output
  1408. ;mbstring.http_output = pass
  1409. ; enable automatic encoding translation according to
  1410. ; mbstring.internal_encoding setting. Input chars are
  1411. ; converted to internal encoding by setting this to On.
  1412. ; Note: Do _not_ use automatic encoding translation for
  1413. ; portable libs/applications.
  1414. ; http://php.net/mbstring.encoding-translation
  1415. ;mbstring.encoding_translation = Off
  1416. ; automatic encoding detection order.
  1417. ; auto means
  1418. ; http://php.net/mbstring.detect-order
  1419. ;mbstring.detect_order = auto
  1420. ; substitute_character used when character cannot be converted
  1421. ; one from another
  1422. ; http://php.net/mbstring.substitute-character
  1423. ;mbstring.substitute_character = none
  1424. ; overload(replace) single byte functions by mbstring functions.
  1425. ; mail(), ereg(), etc are overloaded by mb_send_mail(), mb_ereg(),
  1426. ; etc. Possible values are 0,1,2,4 or combination of them.
  1427. ; For example, 7 for overload everything.
  1428. ; 0: No overload
  1429. ; 1: Overload mail() function
  1430. ; 2: Overload str*() functions
  1431. ; 4: Overload ereg*() functions
  1432. ; http://php.net/mbstring.func-overload
  1433. ;mbstring.func_overload = 0
  1434. ; enable strict encoding detection.
  1435. ;mbstring.strict_detection = On
  1436. ; This directive specifies the regex pattern of content types for which mb_output_handler()
  1437. ; is activated.
  1438. ; Default: mbstring.http_output_conv_mimetype=^(text/|application/xhtml\+xml)
  1439. ;mbstring.http_output_conv_mimetype=
  1440. [gd]
  1441. ; Tell the jpeg decode to ignore warnings and try to create
  1442. ; a gd image. The warning will then be displayed as notices
  1443. ; disabled by default
  1444. ; http://php.net/gd.jpeg-ignore-warning
  1445. ;gd.jpeg_ignore_warning = 0
  1446. [exif]
  1447. ; Exif UNICODE user comments are handled as UCS-2BE/UCS-2LE and JIS as JIS.
  1448. ; With mbstring support this will automatically be converted into the encoding
  1449. ; given by corresponding encode setting. When empty mbstring.internal_encoding
  1450. ; is used. For the decode settings you can distinguish between motorola and
  1451. ; intel byte order. A decode setting cannot be empty.
  1452. ; http://php.net/exif.encode-unicode
  1453. ;exif.encode_unicode = ISO-8859-15
  1454. ; http://php.net/exif.decode-unicode-motorola
  1455. ;exif.decode_unicode_motorola = UCS-2BE
  1456. ; http://php.net/exif.decode-unicode-intel
  1457. ;exif.decode_unicode_intel = UCS-2LE
  1458. ; http://php.net/exif.encode-jis
  1459. ;exif.encode_jis =
  1460. ; http://php.net/exif.decode-jis-motorola
  1461. ;exif.decode_jis_motorola = JIS
  1462. ; http://php.net/exif.decode-jis-intel
  1463. ;exif.decode_jis_intel = JIS
  1464. [Tidy]
  1465. ; The path to a default tidy configuration file to use when using tidy
  1466. ; http://php.net/tidy.default-config
  1467. ;tidy.default_config = /usr/local/lib/php/default.tcfg
  1468. ; Should tidy clean and repair output automatically?
  1469. ; WARNING: Do not use this option if you are generating non-html content
  1470. ; such as dynamic images
  1471. ; http://php.net/tidy.clean-output
  1472. tidy.clean_output = Off
  1473. [soap]
  1474. ; Enables or disables WSDL caching feature.
  1475. ; http://php.net/soap.wsdl-cache-enabled
  1476. soap.wsdl_cache_enabled=1
  1477. ; Sets the directory name where SOAP extension will put cache files.
  1478. ; http://php.net/soap.wsdl-cache-dir
  1479. soap.wsdl_cache_dir="/tmp"
  1480. ; (time to live) Sets the number of second while cached file will be used
  1481. ; instead of original one.
  1482. ; http://php.net/soap.wsdl-cache-ttl
  1483. soap.wsdl_cache_ttl=86400
  1484. ; Sets the size of the cache limit. (Max. number of WSDL files to cache)
  1485. soap.wsdl_cache_limit = 5
  1486. [sysvshm]
  1487. ; A default size of the shared memory segment
  1488. ;sysvshm.init_mem = 10000
  1489. [ldap]
  1490. ; Sets the maximum number of open links or -1 for unlimited.
  1491. ldap.max_links = -1
  1492. [mcrypt]
  1493. ; For more information about mcrypt settings see http://php.net/mcrypt-module-open
  1494. ; Directory where to load mcrypt algorithms
  1495. ; Default: Compiled in into libmcrypt (usually /usr/local/lib/libmcrypt)
  1496. ;mcrypt.algorithms_dir=
  1497. ; Directory where to load mcrypt modes
  1498. ; Default: Compiled in into libmcrypt (usually /usr/local/lib/libmcrypt)
  1499. ;mcrypt.modes_dir=
  1500. [dba]
  1501. ;dba.default_handler=
  1502. [opcache]
  1503. ; Determines if Zend OPCache is enabled
  1504. ;opcache.enable=0
  1505. ; Determines if Zend OPCache is enabled for the CLI version of PHP
  1506. ;opcache.enable_cli=0
  1507. ; The OPcache shared memory storage size.
  1508. ;opcache.memory_consumption=64
  1509. ; The amount of memory for interned strings in Mbytes.
  1510. ;opcache.interned_strings_buffer=4
  1511. ; The maximum number of keys (scripts) in the OPcache hash table.
  1512. ; Only numbers between 200 and 100000 are allowed.
  1513. ;opcache.max_accelerated_files=2000
  1514. ; The maximum percentage of "wasted" memory until a restart is scheduled.
  1515. ;opcache.max_wasted_percentage=5
  1516. ; When this directive is enabled, the OPcache appends the current working
  1517. ; directory to the script key, thus eliminating possible collisions between
  1518. ; files with the same name (basename). Disabling the directive improves
  1519. ; performance, but may break existing applications.
  1520. ;opcache.use_cwd=1
  1521. ; When disabled, you must reset the OPcache manually or restart the
  1522. ; webserver for changes to the filesystem to take effect.
  1523. ;opcache.validate_timestamps=1
  1524. ; How often (in seconds) to check file timestamps for changes to the shared
  1525. ; memory storage allocation. ("1" means validate once per second, but only
  1526. ; once per request. "0" means always validate)
  1527. ;opcache.revalidate_freq=2
  1528. ; Enables or disables file search in include_path optimization
  1529. ;opcache.revalidate_path=0
  1530. ; If disabled, all PHPDoc comments are dropped from the code to reduce the
  1531. ; size of the optimized code.
  1532. ;opcache.save_comments=1
  1533. ; If disabled, PHPDoc comments are not loaded from SHM, so "Doc Comments"
  1534. ; may be always stored (save_comments=1), but not loaded by applications
  1535. ; that don't need them anyway.
  1536. ;opcache.load_comments=1
  1537. ; If enabled, a fast shutdown sequence is used for the accelerated code
  1538. ;opcache.fast_shutdown=0
  1539. ; Allow file existence override (file_exists, etc.) performance feature.
  1540. ;opcache.enable_file_override=0
  1541. ; A bitmask, where each bit enables or disables the appropriate OPcache
  1542. ; passes
  1543. ;opcache.optimization_level=0xffffffff
  1544. ;opcache.inherited_hack=1
  1545. ;opcache.dups_fix=0
  1546. ; The location of the OPcache blacklist file (wildcards allowed).
  1547. ; Each OPcache blacklist file is a text file that holds the names of files
  1548. ; that should not be accelerated. The file format is to add each filename
  1549. ; to a new line. The filename may be a full path or just a file prefix
  1550. ; (i.e., /var/www/x blacklists all the files and directories in /var/www
  1551. ; that start with 'x'). Line starting with a ; are ignored (comments).
  1552. ;opcache.blacklist_filename=
  1553. ; Allows exclusion of large files from being cached. By default all files
  1554. ; are cached.
  1555. ;opcache.max_file_size=0
  1556. ; Check the cache checksum each N requests.
  1557. ; The default value of "0" means that the checks are disabled.
  1558. ;opcache.consistency_checks=0
  1559. ; How long to wait (in seconds) for a scheduled restart to begin if the cache
  1560. ; is not being accessed.
  1561. ;opcache.force_restart_timeout=180
  1562. ; OPcache error_log file name. Empty string assumes "stderr".
  1563. ;opcache.error_log=
  1564. ; All OPcache errors go to the Web server log.
  1565. ; By default, only fatal errors (level 0) or errors (level 1) are logged.
  1566. ; You can also enable warnings (level 2), info messages (level 3) or
  1567. ; debug messages (level 4).
  1568. ;opcache.log_verbosity_level=1
  1569. ; Preferred Shared Memory back-end. Leave empty and let the system decide.
  1570. ;opcache.preferred_memory_model=
  1571. ; Protect the shared memory from unexpected writing during script execution.
  1572. ; Useful for internal debugging only.
  1573. ;opcache.protect_memory=0
  1574. [curl]
  1575. ; A default value for the CURLOPT_CAINFO option. This is required to be an
  1576. ; absolute path.
  1577. ;curl.cainfo =
  1578. ; Local Variables:
  1579. ; tab-width: 4
  1580. ; End:
  1581. [xdebug]
  1582. zend_extension=/usr/lib/php/modules/xdebug.so