Advertisement
Guest User

Untitled

a guest
Mar 12th, 2019
215
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 23.36 KB | None | 0 0
  1. --- php5.6.ini 2019-03-12 13:41:27.670421643 +0000
  2. +++ php7.2.ini 2019-03-12 13:41:01.293667880 +0000
  3. @@ -143,7 +143,7 @@
  4. ; Development Value: 1000
  5. ; Production Value: 1000
  6.  
  7. -; session.hash_bits_per_character
  8. +; session.sid_bits_per_character
  9. ; Default Value: 4
  10. ; Development Value: 5
  11. ; Production Value: 5
  12. @@ -158,11 +158,6 @@
  13. ; Development Value: On
  14. ; Production Value: Off
  15.  
  16. -; url_rewriter.tags
  17. -; Default Value: "a=href,area=href,frame=src,form=,fieldset="
  18. -; Development Value: "a=href,area=href,frame=src,input=src,form=fakeentry"
  19. -; Production Value: "a=href,area=href,frame=src,input=src,form=fakeentry"
  20. -
  21. ; variables_order
  22. ; Default Value: "EGPCS"
  23. ; Development Value: "GPCS"
  24. @@ -201,10 +196,6 @@
  25. ; http://php.net/short-open-tag
  26. short_open_tag = Off
  27.  
  28. -; Allow ASP-style <% %> tags.
  29. -; http://php.net/asp-tags
  30. -asp_tags = Off
  31. -
  32. ; The number of significant digits displayed in floating point numbers.
  33. ; http://php.net/precision
  34. precision = 14
  35. @@ -248,6 +239,23 @@
  36. ; http://php.net/output-handler
  37. ;output_handler =
  38.  
  39. +; URL rewriter function rewrites URL on the fly by using
  40. +; output buffer. You can set target tags by this configuration.
  41. +; "form" tag is special tag. It will add hidden input tag to pass values.
  42. +; Refer to session.trans_sid_tags for usage.
  43. +; Default Value: "form="
  44. +; Development Value: "form="
  45. +; Production Value: "form="
  46. +;url_rewriter.tags
  47. +
  48. +; URL rewriter will not rewrites absolute URL nor form by default. To enable
  49. +; absolute URL rewrite, allowed hosts must be defined at RUNTIME.
  50. +; Refer to session.trans_sid_hosts for more details.
  51. +; Default Value: ""
  52. +; Development Value: ""
  53. +; Production Value: ""
  54. +;url_rewriter.hosts
  55. +
  56. ; Transparent output compression using the zlib library
  57. ; Valid values for this option are 'off', 'on', or a specific buffer size
  58. ; to be used for compression (default is 4KB)
  59. @@ -286,14 +294,18 @@
  60. ; callback-function.
  61. unserialize_callback_func =
  62.  
  63. -; When floats & doubles are serialized store serialize_precision significant
  64. +; When floats & doubles are serialized, store serialize_precision significant
  65. ; digits after the floating point. The default value ensures that when floats
  66. ; are decoded with unserialize, the data will remain the same.
  67. -serialize_precision = 17
  68. +; The value is also used for json_encode when encoding double values.
  69. +; If -1 is used, then dtoa mode 0 is used which automatically select the best
  70. +; precision.
  71. +serialize_precision = -1
  72.  
  73. ; open_basedir, if set, limits all file operations to the defined directory
  74. ; and below. This directive makes most sense if used in a per-directory
  75. ; or per-virtualhost web server configuration file.
  76. +; Note: disables the realpath cache
  77. ; http://php.net/open-basedir
  78. ;open_basedir =
  79.  
  80. @@ -326,8 +338,9 @@
  81. ; Determines the size of the realpath cache to be used by PHP. This value should
  82. ; be increased on systems where PHP opens many files to reflect the quantity of
  83. ; the file operations performed.
  84. +; Note: if open_basedir is set, the cache is disabled
  85. ; http://php.net/realpath-cache-size
  86. -;realpath_cache_size = 16k
  87. +;realpath_cache_size = 4096k
  88.  
  89. ; Duration of time, in seconds for which to cache realpath information for a given
  90. ; file or directory. For systems with rarely changing files, consider increasing this
  91. @@ -514,11 +527,12 @@
  92. ; Store the last error/warning message in $php_errormsg (boolean). Setting this value
  93. ; to On can assist in debugging and is appropriate for development servers. It should
  94. ; however be disabled on production servers.
  95. +; This directive is DEPRECATED.
  96. ; Default Value: Off
  97. -; Development Value: On
  98. +; Development Value: Off
  99. ; Production Value: Off
  100. ; http://php.net/track-errors
  101. -track_errors = Off
  102. +;track_errors = Off
  103.  
  104. ; Turn off normal error reporting and emit XML-RPC error XML
  105. ; http://php.net/xmlrpc-errors
  106. @@ -694,13 +708,6 @@
  107. ; http://php.net/output-encoding
  108. ;output_encoding =
  109.  
  110. -; Always populate the $HTTP_RAW_POST_DATA variable. PHP's default behavior is
  111. -; to disable this feature and it will be removed in a future version.
  112. -; If post reading is disabled through enable_post_data_reading,
  113. -; $HTTP_RAW_POST_DATA is *NOT* populated.
  114. -; http://php.net/always-populate-raw-post-data
  115. -;always_populate_raw_post_data = -1
  116. -
  117. ;;;;;;;;;;;;;;;;;;;;;;;;;
  118. ; Paths and Directories ;
  119. ;;;;;;;;;;;;;;;;;;;;;;;;;
  120. @@ -862,65 +869,63 @@
  121. ; If you wish to have an extension loaded automatically, use the following
  122. ; syntax:
  123. ;
  124. -; extension=modulename.extension
  125. +; extension=modulename
  126. ;
  127. -; For example, on Windows:
  128. +; For example:
  129. ;
  130. -; extension=msql.dll
  131. +; extension=mysqli
  132. ;
  133. -; ... or under UNIX:
  134. +; When the extension library to load is not located in the default extension
  135. +; directory, You may specify an absolute path to the library file:
  136. ;
  137. -; extension=msql.so
  138. +; extension=/path/to/extension/mysqli.so
  139. ;
  140. -; ... or with a path:
  141. +; Note : The syntax used in previous PHP versions ('extension=<ext>.so' and
  142. +; 'extension='php_<ext>.dll') is supported for legacy reasons and may be
  143. +; deprecated in a future PHP major version. So, when it is possible, please
  144. +; move to the new ('extension=<ext>) syntax.
  145. ;
  146. -; extension=/path/to/extension/msql.so
  147. +; Notes for Windows environments :
  148. ;
  149. -; If you only provide the name of the extension, PHP will look for it in its
  150. -; default extension directory.
  151. -;
  152. -; Windows Extensions
  153. -; Note that ODBC support is built in, so no dll is needed for it.
  154. -; Note that many DLL files are located in the extensions/ (PHP 4) ext/ (PHP 5)
  155. -; extension folders as well as the separate PECL DLL download (PHP 5).
  156. +; - Many DLL files are located in the extensions/ (PHP 4) or ext/ (PHP 5+)
  157. +; extension folders as well as the separate PECL DLL download (PHP 5+).
  158. ; Be sure to appropriately set the extension_dir directive.
  159. ;
  160. -;extension=php_bz2.dll
  161. -;extension=php_curl.dll
  162. -;extension=php_fileinfo.dll
  163. -;extension=php_gd2.dll
  164. -;extension=php_gettext.dll
  165. -;extension=php_gmp.dll
  166. -;extension=php_intl.dll
  167. -;extension=php_imap.dll
  168. -;extension=php_interbase.dll
  169. -;extension=php_ldap.dll
  170. -;extension=php_mbstring.dll
  171. -;extension=php_exif.dll ; Must be after mbstring as it depends on it
  172. -;extension=php_mysql.dll
  173. -;extension=php_mysqli.dll
  174. -;extension=php_oci8_12c.dll ; Use with Oracle Database 12c Instant Client
  175. -;extension=php_openssl.dll
  176. -;extension=php_pdo_firebird.dll
  177. -;extension=php_pdo_mysql.dll
  178. -;extension=php_pdo_oci.dll
  179. -;extension=php_pdo_odbc.dll
  180. -;extension=php_pdo_pgsql.dll
  181. -;extension=php_pdo_sqlite.dll
  182. -;extension=php_pgsql.dll
  183. -;extension=php_shmop.dll
  184. +;extension=bz2
  185. +;extension=curl
  186. +;extension=fileinfo
  187. +;extension=gd2
  188. +;extension=gettext
  189. +;extension=gmp
  190. +;extension=intl
  191. +;extension=imap
  192. +;extension=interbase
  193. +;extension=ldap
  194. +;extension=mbstring
  195. +;extension=exif ; Must be after mbstring as it depends on it
  196. +;extension=mysqli
  197. +;extension=oci8_12c ; Use with Oracle Database 12c Instant Client
  198. +;extension=odbc
  199. +;extension=openssl
  200. +;extension=pdo_firebird
  201. +;extension=pdo_mysql
  202. +;extension=pdo_oci
  203. +;extension=pdo_odbc
  204. +;extension=pdo_pgsql
  205. +;extension=pdo_sqlite
  206. +;extension=pgsql
  207. +;extension=shmop
  208.  
  209. ; The MIBS data available in the PHP distribution must be installed.
  210. ; See http://www.php.net/manual/en/snmp.installation.php
  211. -;extension=php_snmp.dll
  212. +;extension=snmp
  213.  
  214. -;extension=php_soap.dll
  215. -;extension=php_sockets.dll
  216. -;extension=php_sqlite3.dll
  217. -;extension=php_sybase_ct.dll
  218. -;extension=php_tidy.dll
  219. -;extension=php_xmlrpc.dll
  220. -;extension=php_xsl.dll
  221. +;extension=soap
  222. +;extension=sockets
  223. +;extension=sqlite3
  224. +;extension=tidy
  225. +;extension=xmlrpc
  226. +;extension=xsl
  227.  
  228. ;;;;;;;;;;;;;;;;;;;
  229. ; Module Settings ;
  230. @@ -972,6 +977,13 @@
  231. ; otherwise output encoding conversion cannot be performed.
  232. ;iconv.output_encoding =
  233.  
  234. +[imap]
  235. +; rsh/ssh logins are disabled by default. Use this INI entry if you want to
  236. +; enable them. Note that the IMAP library does not filter mailbox names before
  237. +; passing them to rsh/ssh command, thus passing untrusted data to this function
  238. +; with rsh/ssh enabled is insecure.
  239. +;imap.enable_insecure_rsh=0
  240. +
  241. [intl]
  242. ;intl.default_locale =
  243. ; This directive allows you to produce PHP errors when some error
  244. @@ -995,6 +1007,10 @@
  245. ; http://php.net/pcre.recursion-limit
  246. ;pcre.recursion_limit=100000
  247.  
  248. +;Enables or disables JIT compilation of patterns. This requires the PCRE
  249. +;library to be compiled with JIT support.
  250. +;pcre.jit=1
  251. +
  252. [Pdo]
  253. ; Whether to pool ODBC connections. Can be one of "strict", "relaxed" or "off"
  254. ; http://php.net/pdo-odbc.connection-pooling
  255. @@ -1042,7 +1058,7 @@
  256. ;mail.force_extra_parameters =
  257.  
  258. ; Add X-PHP-Originating-Script: that will include uid of the script followed by the filename
  259. -mail.add_x_header = On
  260. +mail.add_x_header = Off
  261.  
  262. ; The path to a log file that will log all mail() calls. Log entries include
  263. ; the full path of the script, line number, To address and headers.
  264. @@ -1050,10 +1066,6 @@
  265. ; Log mail to syslog (Event Log on Windows).
  266. ;mail.log = syslog
  267.  
  268. -[SQL]
  269. -; http://php.net/sql.safe-mode
  270. -sql.safe_mode = Off
  271. -
  272. [ODBC]
  273. ; http://php.net/odbc.default-db
  274. ;odbc.default_db = Not yet implemented
  275. @@ -1128,64 +1140,6 @@
  276. ; Default time format.
  277. ibase.timeformat = "%H:%M:%S"
  278.  
  279. -[MySQL]
  280. -; Allow accessing, from PHP's perspective, local files with LOAD DATA statements
  281. -; http://php.net/mysql.allow_local_infile
  282. -mysql.allow_local_infile = On
  283. -
  284. -; Allow or prevent persistent links.
  285. -; http://php.net/mysql.allow-persistent
  286. -mysql.allow_persistent = On
  287. -
  288. -; If mysqlnd is used: Number of cache slots for the internal result set cache
  289. -; http://php.net/mysql.cache_size
  290. -mysql.cache_size = 2000
  291. -
  292. -; Maximum number of persistent links. -1 means no limit.
  293. -; http://php.net/mysql.max-persistent
  294. -mysql.max_persistent = -1
  295. -
  296. -; Maximum number of links (persistent + non-persistent). -1 means no limit.
  297. -; http://php.net/mysql.max-links
  298. -mysql.max_links = -1
  299. -
  300. -; Default port number for mysql_connect(). If unset, mysql_connect() will use
  301. -; the $MYSQL_TCP_PORT or the mysql-tcp entry in /etc/services or the
  302. -; compile-time value defined MYSQL_PORT (in that order). Win32 will only look
  303. -; at MYSQL_PORT.
  304. -; http://php.net/mysql.default-port
  305. -mysql.default_port =
  306. -
  307. -; Default socket name for local MySQL connects. If empty, uses the built-in
  308. -; MySQL defaults.
  309. -; http://php.net/mysql.default-socket
  310. -mysql.default_socket =
  311. -
  312. -; Default host for mysql_connect() (doesn't apply in safe mode).
  313. -; http://php.net/mysql.default-host
  314. -mysql.default_host =
  315. -
  316. -; Default user for mysql_connect() (doesn't apply in safe mode).
  317. -; http://php.net/mysql.default-user
  318. -mysql.default_user =
  319. -
  320. -; Default password for mysql_connect() (doesn't apply in safe mode).
  321. -; Note that this is generally a *bad* idea to store passwords in this file.
  322. -; *Any* user with PHP access can run 'echo get_cfg_var("mysql.default_password")
  323. -; and reveal this password! And of course, any users with read access to this
  324. -; file will be able to reveal the password as well.
  325. -; http://php.net/mysql.default-password
  326. -mysql.default_password =
  327. -
  328. -; Maximum time (in seconds) for connect timeout. -1 means no limit
  329. -; http://php.net/mysql.connect-timeout
  330. -mysql.connect_timeout = 60
  331. -
  332. -; Trace mode. When trace_mode is active (=On), warnings for table/index scans and
  333. -; SQL-Errors will be displayed.
  334. -; http://php.net/mysql.trace-mode
  335. -mysql.trace_mode = Off
  336. -
  337. [MySQLi]
  338.  
  339. ; Maximum number of persistent links. -1 means no limit.
  340. @@ -1362,45 +1316,6 @@
  341. ; http://php.net/pgsql.log-notice
  342. pgsql.log_notice = 0
  343.  
  344. -[Sybase-CT]
  345. -; Allow or prevent persistent links.
  346. -; http://php.net/sybct.allow-persistent
  347. -sybct.allow_persistent = On
  348. -
  349. -; Maximum number of persistent links. -1 means no limit.
  350. -; http://php.net/sybct.max-persistent
  351. -sybct.max_persistent = -1
  352. -
  353. -; Maximum number of links (persistent + non-persistent). -1 means no limit.
  354. -; http://php.net/sybct.max-links
  355. -sybct.max_links = -1
  356. -
  357. -; Minimum server message severity to display.
  358. -; http://php.net/sybct.min-server-severity
  359. -sybct.min_server_severity = 10
  360. -
  361. -; Minimum client message severity to display.
  362. -; http://php.net/sybct.min-client-severity
  363. -sybct.min_client_severity = 10
  364. -
  365. -; Set per-context timeout
  366. -; http://php.net/sybct.timeout
  367. -;sybct.timeout=
  368. -
  369. -;sybct.packet_size
  370. -
  371. -; The maximum time in seconds to wait for a connection attempt to succeed before returning failure.
  372. -; Default: one minute
  373. -;sybct.login_timeout=
  374. -
  375. -; The name of the host you claim to be connecting from, for display by sp_who.
  376. -; Default: none
  377. -;sybct.hostname=
  378. -
  379. -; Allows you to define how often deadlocks are to be retried. -1 means "forever".
  380. -; Default: 0
  381. -;sybct.deadlock_retry_count=
  382. -
  383. [bcmath]
  384. ; Number of decimal digits for all bcmath functions.
  385. ; http://php.net/bcmath.scale
  386. @@ -1539,19 +1454,6 @@
  387. ; http://php.net/session.referer-check
  388. session.referer_check =
  389.  
  390. -; How many bytes to read from the file.
  391. -; http://php.net/session.entropy-length
  392. -;session.entropy_length = 32
  393. -
  394. -; Specified here to create the session id.
  395. -; http://php.net/session.entropy-file
  396. -; Defaults to /dev/urandom
  397. -; On systems that don't have /dev/urandom but do have /dev/arandom, this will default to /dev/arandom
  398. -; If neither are found at compile time, the default is no entropy file.
  399. -; On windows, setting the entropy_length setting will activate the
  400. -; Windows random source (using the CryptoAPI)
  401. -;session.entropy_file = /dev/urandom
  402. -
  403. ; Set to {nocache,private,public,} to determine HTTP caching aspects
  404. ; or leave this empty to avoid sending anti-caching headers.
  405. ; http://php.net/session.cache-limiter
  406. @@ -1573,15 +1475,39 @@
  407. ; http://php.net/session.use-trans-sid
  408. session.use_trans_sid = 0
  409.  
  410. -; Select a hash function for use in generating session ids.
  411. -; Possible Values
  412. -; 0 (MD5 128 bits)
  413. -; 1 (SHA-1 160 bits)
  414. -; This option may also be set to the name of any hash function supported by
  415. -; the hash extension. A list of available hashes is returned by the hash_algos()
  416. -; function.
  417. -; http://php.net/session.hash-function
  418. -session.hash_function = 0
  419. +; Set session ID character length. This value could be between 22 to 256.
  420. +; Shorter length than default is supported only for compatibility reason.
  421. +; Users should use 32 or more chars.
  422. +; http://php.net/session.sid-length
  423. +; Default Value: 32
  424. +; Development Value: 26
  425. +; Production Value: 26
  426. +session.sid_length = 26
  427. +
  428. +; The URL rewriter will look for URLs in a defined set of HTML tags.
  429. +; <form> is special; if you include them here, the rewriter will
  430. +; add a hidden <input> field with the info which is otherwise appended
  431. +; to URLs. <form> tag's action attribute URL will not be modified
  432. +; unless it is specified.
  433. +; Note that all valid entries require a "=", even if no value follows.
  434. +; Default Value: "a=href,area=href,frame=src,form="
  435. +; Development Value: "a=href,area=href,frame=src,form="
  436. +; Production Value: "a=href,area=href,frame=src,form="
  437. +; http://php.net/url-rewriter.tags
  438. +session.trans_sid_tags = "a=href,area=href,frame=src,form="
  439. +
  440. +; URL rewriter does not rewrite absolute URLs by default.
  441. +; To enable rewrites for absolute pathes, target hosts must be specified
  442. +; at RUNTIME. i.e. use ini_set()
  443. +; <form> tags is special. PHP will check action attribute's URL regardless
  444. +; of session.trans_sid_tags setting.
  445. +; If no host is defined, HTTP_HOST will be used for allowed host.
  446. +; Example value: php.net,www.php.net,wiki.php.net
  447. +; Use "," for multiple hosts. No spaces are allowed.
  448. +; Default Value: ""
  449. +; Development Value: ""
  450. +; Production Value: ""
  451. +;session.trans_sid_hosts=""
  452.  
  453. ; Define how many bits are stored in each character when converting
  454. ; the binary hash data to something readable.
  455. @@ -1593,18 +1519,7 @@
  456. ; Development Value: 5
  457. ; Production Value: 5
  458. ; http://php.net/session.hash-bits-per-character
  459. -session.hash_bits_per_character = 5
  460. -
  461. -; The URL rewriter will look for URLs in a defined set of HTML tags.
  462. -; form/fieldset are special; if you include them here, the rewriter will
  463. -; add a hidden <input> field with the info which is otherwise appended
  464. -; to URLs. If you want XHTML conformity, remove the form entry.
  465. -; Note that all valid entries require a "=", even if no value follows.
  466. -; Default Value: "a=href,area=href,frame=src,form=,fieldset="
  467. -; Development Value: "a=href,area=href,frame=src,input=src,form=fakeentry"
  468. -; Production Value: "a=href,area=href,frame=src,input=src,form=fakeentry"
  469. -; http://php.net/url-rewriter.tags
  470. -url_rewriter.tags = "a=href,area=href,frame=src,input=src,form=fakeentry"
  471. +session.sid_bits_per_character = 5
  472.  
  473. ; Enable upload progress tracking in $_SESSION
  474. ; Default Value: On
  475. @@ -1651,64 +1566,31 @@
  476. ; http://php.net/session.upload-progress.min-freq
  477. ;session.upload_progress.min_freq = "1"
  478.  
  479. -[MSSQL]
  480. -; Allow or prevent persistent links.
  481. -mssql.allow_persistent = On
  482. -
  483. -; Maximum number of persistent links. -1 means no limit.
  484. -mssql.max_persistent = -1
  485. -
  486. -; Maximum number of links (persistent+non persistent). -1 means no limit.
  487. -mssql.max_links = -1
  488. -
  489. -; Minimum error severity to display.
  490. -mssql.min_error_severity = 10
  491. -
  492. -; Minimum message severity to display.
  493. -mssql.min_message_severity = 10
  494. -
  495. -; Compatibility mode with old versions of PHP 3.0.
  496. -mssql.compatibility_mode = Off
  497. -
  498. -; Connect timeout
  499. -;mssql.connect_timeout = 5
  500. -
  501. -; Query timeout
  502. -;mssql.timeout = 60
  503. -
  504. -; Valid range 0 - 2147483647. Default = 4096.
  505. -;mssql.textlimit = 4096
  506. -
  507. -; Valid range 0 - 2147483647. Default = 4096.
  508. -;mssql.textsize = 4096
  509. -
  510. -; Limits the number of records in each batch. 0 = all records in one batch.
  511. -;mssql.batchsize = 0
  512. -
  513. -; Specify how datetime and datetim4 columns are returned
  514. -; On => Returns data converted to SQL server settings
  515. -; Off => Returns values as YYYY-MM-DD hh:mm:ss
  516. -;mssql.datetimeconvert = On
  517. -
  518. -; Use NT authentication when connecting to the server
  519. -mssql.secure_connection = Off
  520. -
  521. -; Specify max number of processes. -1 = library default
  522. -; msdlib defaults to 25
  523. -; FreeTDS defaults to 4096
  524. -;mssql.max_procs = -1
  525. -
  526. -; Specify client character set.
  527. -; If empty or not set the client charset from freetds.conf is used
  528. -; This is only used when compiled with FreeTDS
  529. -;mssql.charset = "ISO-8859-1"
  530. +; Only write session data when session data is changed. Enabled by default.
  531. +; http://php.net/session.lazy-write
  532. +;session.lazy_write = On
  533.  
  534. [Assertion]
  535. +; Switch whether to compile assertions at all (to have no overhead at run-time)
  536. +; -1: Do not compile at all
  537. +; 0: Jump over assertion at run-time
  538. +; 1: Execute assertions
  539. +; Changing from or to a negative value is only possible in php.ini! (For turning assertions on and off at run-time, see assert.active, when zend.assertions = 1)
  540. +; Default Value: 1
  541. +; Development Value: 1
  542. +; Production Value: -1
  543. +; http://php.net/zend.assertions
  544. +zend.assertions = -1
  545. +
  546. ; Assert(expr); active by default.
  547. ; http://php.net/assert.active
  548. ;assert.active = On
  549.  
  550. -; Issue a PHP warning for each failed assertion.
  551. +; Throw an AssertationException on failed assertions
  552. +; http://php.net/assert.exception
  553. +;assert.exception = On
  554. +
  555. +; Issue a PHP warning for each failed assertion. (Overridden by assert.exception if active)
  556. ; http://php.net/assert.warning
  557. ;assert.warning = On
  558.  
  559. @@ -1752,7 +1634,7 @@
  560.  
  561. [mbstring]
  562. ; language for internal character representation.
  563. -; This affects mb_send_mail() and mbstrig.detect_order.
  564. +; This affects mb_send_mail() and mbstring.detect_order.
  565. ; http://php.net/mbstring.language
  566. ;mbstring.language = Japanese
  567.  
  568. @@ -1824,7 +1706,7 @@
  569. ; a gd image. The warning will then be displayed as notices
  570. ; disabled by default
  571. ; http://php.net/gd.jpeg-ignore-warning
  572. -;gd.jpeg_ignore_warning = 0
  573. +;gd.jpeg_ignore_warning = 1
  574.  
  575. [exif]
  576. ; Exif UNICODE user comments are handled as UCS-2BE/UCS-2LE and JIS as JIS.
  577. @@ -1886,36 +1768,25 @@
  578. ; Sets the maximum number of open links or -1 for unlimited.
  579. ldap.max_links = -1
  580.  
  581. -[mcrypt]
  582. -; For more information about mcrypt settings see http://php.net/mcrypt-module-open
  583. -
  584. -; Directory where to load mcrypt algorithms
  585. -; Default: Compiled in into libmcrypt (usually /usr/local/lib/libmcrypt)
  586. -;mcrypt.algorithms_dir=
  587. -
  588. -; Directory where to load mcrypt modes
  589. -; Default: Compiled in into libmcrypt (usually /usr/local/lib/libmcrypt)
  590. -;mcrypt.modes_dir=
  591. -
  592. [dba]
  593. ;dba.default_handler=
  594.  
  595. [opcache]
  596. ; Determines if Zend OPCache is enabled
  597. -;opcache.enable=0
  598. +;opcache.enable=1
  599.  
  600. ; Determines if Zend OPCache is enabled for the CLI version of PHP
  601. ;opcache.enable_cli=0
  602.  
  603. ; The OPcache shared memory storage size.
  604. -;opcache.memory_consumption=64
  605. +;opcache.memory_consumption=128
  606.  
  607. ; The amount of memory for interned strings in Mbytes.
  608. -;opcache.interned_strings_buffer=4
  609. +;opcache.interned_strings_buffer=8
  610.  
  611. ; The maximum number of keys (scripts) in the OPcache hash table.
  612. -; Only numbers between 200 and 100000 are allowed.
  613. -;opcache.max_accelerated_files=2000
  614. +; Only numbers between 200 and 1000000 are allowed.
  615. +;opcache.max_accelerated_files=10000
  616.  
  617. ; The maximum percentage of "wasted" memory until a restart is scheduled.
  618. ;opcache.max_wasted_percentage=5
  619. @@ -1942,14 +1813,6 @@
  620. ; size of the optimized code.
  621. ;opcache.save_comments=1
  622.  
  623. -; If disabled, PHPDoc comments are not loaded from SHM, so "Doc Comments"
  624. -; may be always stored (save_comments=1), but not loaded by applications
  625. -; that don't need them anyway.
  626. -;opcache.load_comments=1
  627. -
  628. -; If enabled, a fast shutdown sequence is used for the accelerated code
  629. -;opcache.fast_shutdown=0
  630. -
  631. ; Allow file existence override (file_exists, etc.) performance feature.
  632. ;opcache.enable_file_override=0
  633.  
  634. @@ -1996,12 +1859,46 @@
  635. ; Useful for internal debugging only.
  636. ;opcache.protect_memory=0
  637.  
  638. +; Allows calling OPcache API functions only from PHP scripts which path is
  639. +; started from specified string. The default "" means no restriction
  640. +;opcache.restrict_api=
  641. +
  642. +; Mapping base of shared memory segments (for Windows only). All the PHP
  643. +; processes have to map shared memory into the same address space. This
  644. +; directive allows to manually fix the "Unable to reattach to base address"
  645. +; errors.
  646. +;opcache.mmap_base=
  647. +
  648. +; Enables and sets the second level cache directory.
  649. +; It should improve performance when SHM memory is full, at server restart or
  650. +; SHM reset. The default "" disables file based caching.
  651. +;opcache.file_cache=
  652. +
  653. +; Enables or disables opcode caching in shared memory.
  654. +;opcache.file_cache_only=0
  655. +
  656. +; Enables or disables checksum validation when script loaded from file cache.
  657. +;opcache.file_cache_consistency_checks=1
  658. +
  659. +; Implies opcache.file_cache_only=1 for a certain process that failed to
  660. +; reattach to the shared memory (for Windows only). Explicitly enabled file
  661. +; cache is required.
  662. +;opcache.file_cache_fallback=1
  663. +
  664. +; Enables or disables copying of PHP code (text segment) into HUGE PAGES.
  665. +; This should improve performance, but requires appropriate OS configuration.
  666. +;opcache.huge_code_pages=1
  667. +
  668. ; Validate cached file permissions.
  669. ; opcache.validate_permission=0
  670.  
  671. ; Prevent name collisions in chroot'ed environment.
  672. ; opcache.validate_root=0
  673.  
  674. +; If specified, it produces opcode dumps for debugging different stages of
  675. +; optimizations.
  676. +;opcache.opt_debug_level=0
  677. +
  678. [curl]
  679. ; A default value for the CURLOPT_CAINFO option. This is required to be an
  680. ; absolute path.
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement