Advertisement
acoliveira

Untitled

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