vafrcor

PHP-5.6.30-vafrcor

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