Edit File by line
/home/barbar84/public_h.../wp-conte.../plugins/sujqvwi/AnonR/anonr.TX.../opt/cpanel/ea-php81/root/etc
File: php.ini
; cPanel-generated php ini directives, do not edit
[0] Fix | Delete
; Manual editing of this file may result in unexpected behavior.
[1] Fix | Delete
; To make changes to this file, use the cPanel MultiPHP INI Editor (Home >> Software >> MultiPHP INI Editor)
[2] Fix | Delete
; For more information, read our documentation (https://go.cpanel.net/EA4ModifyINI)
[3] Fix | Delete
[4] Fix | Delete
[PHP]
[5] Fix | Delete
[6] Fix | Delete
;;;;;;;;;;;;;;;;;;;
[7] Fix | Delete
; About php.ini ;
[8] Fix | Delete
;;;;;;;;;;;;;;;;;;;
[9] Fix | Delete
; PHP's initialization file, generally called php.ini, is responsible for
[10] Fix | Delete
; configuring many of the aspects of PHP's behavior.
[11] Fix | Delete
[12] Fix | Delete
; PHP attempts to find and load this configuration from a number of locations.
[13] Fix | Delete
; The following is a summary of its search order:
[14] Fix | Delete
; 1. SAPI module specific location.
[15] Fix | Delete
; 2. The PHPRC environment variable. (As of PHP 5.2.0)
[16] Fix | Delete
; 3. A number of predefined registry keys on Windows (As of PHP 5.2.0)
[17] Fix | Delete
; 4. Current working directory (except CLI)
[18] Fix | Delete
; 5. The web server's directory (for SAPI modules), or directory of PHP
[19] Fix | Delete
; (otherwise in Windows)
[20] Fix | Delete
; 6. The directory from the --with-config-file-path compile time option, or the
[21] Fix | Delete
; Windows directory (C:\windows or C:\winnt)
[22] Fix | Delete
; See the PHP docs for more specific information.
[23] Fix | Delete
; http://php.net/configuration.file
[24] Fix | Delete
[25] Fix | Delete
; The syntax of the file is extremely simple. Whitespace and lines
[26] Fix | Delete
; beginning with a semicolon are silently ignored (as you probably guessed).
[27] Fix | Delete
; Section headers (e.g. [Foo]) are also silently ignored, even though
[28] Fix | Delete
; they might mean something in the future.
[29] Fix | Delete
[30] Fix | Delete
; Directives following the section heading [PATH=/www/mysite] only
[31] Fix | Delete
; apply to PHP files in the /www/mysite directory. Directives
[32] Fix | Delete
; following the section heading [HOST=www.example.com] only apply to
[33] Fix | Delete
; PHP files served from www.example.com. Directives set in these
[34] Fix | Delete
; special sections cannot be overridden by user-defined INI files or
[35] Fix | Delete
; at runtime. Currently, [PATH=] and [HOST=] sections only work under
[36] Fix | Delete
; CGI/FastCGI.
[37] Fix | Delete
; http://php.net/ini.sections
[38] Fix | Delete
[39] Fix | Delete
; Directives are specified using the following syntax:
[40] Fix | Delete
; directive = value
[41] Fix | Delete
; Directive names are *case sensitive* - foo=bar is different from FOO=bar.
[42] Fix | Delete
; Directives are variables used to configure PHP or PHP extensions.
[43] Fix | Delete
; There is no name validation. If PHP can't find an expected
[44] Fix | Delete
; directive because it is not set or is mistyped, a default value will be used.
[45] Fix | Delete
[46] Fix | Delete
; The value can be a string, a number, a PHP constant (e.g. E_ALL or M_PI), one
[47] Fix | Delete
; of the INI constants (On, Off, True, False, Yes, No and None) or an expression
[48] Fix | Delete
; (e.g. E_ALL & ~E_NOTICE), a quoted string ("bar"), or a reference to a
[49] Fix | Delete
; previously set variable or directive (e.g. ${foo})
[50] Fix | Delete
[51] Fix | Delete
; Expressions in the INI file are limited to bitwise operators and parentheses:
[52] Fix | Delete
; | bitwise OR
[53] Fix | Delete
; ^ bitwise XOR
[54] Fix | Delete
; & bitwise AND
[55] Fix | Delete
; ~ bitwise NOT
[56] Fix | Delete
; ! boolean NOT
[57] Fix | Delete
[58] Fix | Delete
; Boolean flags can be turned on using the values 1, On, True or Yes.
[59] Fix | Delete
; They can be turned off using the values 0, Off, False or No.
[60] Fix | Delete
[61] Fix | Delete
; An empty string can be denoted by simply not writing anything after the equal
[62] Fix | Delete
; sign, or by using the None keyword:
[63] Fix | Delete
[64] Fix | Delete
; foo = ; sets foo to an empty string
[65] Fix | Delete
; foo = None ; sets foo to an empty string
[66] Fix | Delete
; foo = "None" ; sets foo to the string 'None'
[67] Fix | Delete
[68] Fix | Delete
; If you use constants in your value, and these constants belong to a
[69] Fix | Delete
; dynamically loaded extension (either a PHP extension or a Zend extension),
[70] Fix | Delete
; you may only use these constants *after* the line that loads the extension.
[71] Fix | Delete
[72] Fix | Delete
;;;;;;;;;;;;;;;;;;;
[73] Fix | Delete
; About this file ;
[74] Fix | Delete
;;;;;;;;;;;;;;;;;;;
[75] Fix | Delete
; PHP comes packaged with two INI files. One that is recommended to be used
[76] Fix | Delete
; in production environments and one that is recommended to be used in
[77] Fix | Delete
; development environments.
[78] Fix | Delete
[79] Fix | Delete
; php.ini-production contains settings which hold security, performance and
[80] Fix | Delete
; best practices at its core. But please be aware, these settings may break
[81] Fix | Delete
; compatibility with older or less security conscience applications. We
[82] Fix | Delete
; recommending using the production ini in production and testing environments.
[83] Fix | Delete
[84] Fix | Delete
; php.ini-development is very similar to its production variant, except it's
[85] Fix | Delete
; much more verbose when it comes to errors. We recommend using the
[86] Fix | Delete
; development version only in development environments, as errors shown to
[87] Fix | Delete
; application users can inadvertently leak otherwise secure information.
[88] Fix | Delete
[89] Fix | Delete
; This is php.ini-production INI file.
[90] Fix | Delete
[91] Fix | Delete
;;;;;;;;;;;;;;;;;;;
[92] Fix | Delete
; Quick Reference ;
[93] Fix | Delete
;;;;;;;;;;;;;;;;;;;
[94] Fix | Delete
; The following are all the settings which are different in either the production
[95] Fix | Delete
; or development versions of the INIs with respect to PHP's default behavior.
[96] Fix | Delete
; Please see the actual settings later in the document for more details as to why
[97] Fix | Delete
; we recommend these changes in PHP's behavior.
[98] Fix | Delete
[99] Fix | Delete
; display_errors
[100] Fix | Delete
; Default Value: On
[101] Fix | Delete
; Development Value: On
[102] Fix | Delete
; Production Value: Off
[103] Fix | Delete
[104] Fix | Delete
; display_startup_errors
[105] Fix | Delete
; Default Value: Off
[106] Fix | Delete
; Development Value: On
[107] Fix | Delete
; Production Value: Off
[108] Fix | Delete
[109] Fix | Delete
; error_reporting
[110] Fix | Delete
; Default Value: E_ALL & ~E_NOTICE & ~E_STRICT & ~E_DEPRECATED
[111] Fix | Delete
; Development Value: E_ALL
[112] Fix | Delete
; Production Value: E_ALL & ~E_DEPRECATED & ~E_STRICT
[113] Fix | Delete
[114] Fix | Delete
; html_errors
[115] Fix | Delete
; Default Value: On
[116] Fix | Delete
; Development Value: On
[117] Fix | Delete
; Production value: On
[118] Fix | Delete
[119] Fix | Delete
; log_errors
[120] Fix | Delete
; Default Value: On
[121] Fix | Delete
; Development Value: On
[122] Fix | Delete
; Production Value: On
[123] Fix | Delete
[124] Fix | Delete
; max_input_time
[125] Fix | Delete
; Default Value: -1 (Unlimited)
[126] Fix | Delete
; Development Value: 60 (60 seconds)
[127] Fix | Delete
; Production Value: 60 (60 seconds)
[128] Fix | Delete
[129] Fix | Delete
; output_buffering
[130] Fix | Delete
; Default Value: Off
[131] Fix | Delete
; Development Value: 4096
[132] Fix | Delete
; Production Value: 4096
[133] Fix | Delete
[134] Fix | Delete
; register_argc_argv
[135] Fix | Delete
; Default Value: On
[136] Fix | Delete
; Development Value: Off
[137] Fix | Delete
; Production Value: Off
[138] Fix | Delete
[139] Fix | Delete
; request_order
[140] Fix | Delete
; Default Value: None
[141] Fix | Delete
; Development Value: "GP"
[142] Fix | Delete
; Production Value: "GP"
[143] Fix | Delete
[144] Fix | Delete
; session.gc_divisor
[145] Fix | Delete
; Default Value: 100
[146] Fix | Delete
; Development Value: 1000
[147] Fix | Delete
; Production Value: 1000
[148] Fix | Delete
[149] Fix | Delete
; session.hash_bits_per_character
[150] Fix | Delete
; Default Value: 4
[151] Fix | Delete
; Development Value: 5
[152] Fix | Delete
; Production Value: 5
[153] Fix | Delete
[154] Fix | Delete
; short_open_tag
[155] Fix | Delete
; Default Value: On
[156] Fix | Delete
; Development Value: Off
[157] Fix | Delete
; Production Value: Off
[158] Fix | Delete
[159] Fix | Delete
; track_errors
[160] Fix | Delete
; Default Value: Off
[161] Fix | Delete
; Development Value: On
[162] Fix | Delete
; Production Value: Off
[163] Fix | Delete
[164] Fix | Delete
; url_rewriter.tags
[165] Fix | Delete
; Default Value: "a=href,area=href,frame=src,form=,fieldset="
[166] Fix | Delete
; Development Value: "a=href,area=href,frame=src,input=src,form=fakeentry"
[167] Fix | Delete
; Production Value: "a=href,area=href,frame=src,input=src,form=fakeentry"
[168] Fix | Delete
[169] Fix | Delete
; variables_order
[170] Fix | Delete
; Default Value: "EGPCS"
[171] Fix | Delete
; Development Value: "GPCS"
[172] Fix | Delete
; Production Value: "GPCS"
[173] Fix | Delete
[174] Fix | Delete
;;;;;;;;;;;;;;;;;;;;
[175] Fix | Delete
; php.ini Options ;
[176] Fix | Delete
;;;;;;;;;;;;;;;;;;;;
[177] Fix | Delete
; Name for user-defined php.ini (.htaccess) files. Default is ".user.ini"
[178] Fix | Delete
;user_ini.filename = ".user.ini"
[179] Fix | Delete
[180] Fix | Delete
; To disable this feature set this option to empty value
[181] Fix | Delete
;user_ini.filename =
[182] Fix | Delete
[183] Fix | Delete
; TTL for user-defined php.ini files (time-to-live) in seconds. Default is 300 seconds (5 minutes)
[184] Fix | Delete
;user_ini.cache_ttl = 300
[185] Fix | Delete
[186] Fix | Delete
;;;;;;;;;;;;;;;;;;;;
[187] Fix | Delete
; Language Options ;
[188] Fix | Delete
;;;;;;;;;;;;;;;;;;;;
[189] Fix | Delete
[190] Fix | Delete
; Enable the PHP scripting language engine under Apache.
[191] Fix | Delete
; http://php.net/engine
[192] Fix | Delete
engine = On
[193] Fix | Delete
[194] Fix | Delete
; This directive determines whether or not PHP will recognize code between
[195] Fix | Delete
; <? and ?> tags as PHP source which should be processed as such. It is
[196] Fix | Delete
; generally recommended that <?php and ?> should be used and that this feature
[197] Fix | Delete
; should be disabled, as enabling it may result in issues when generating XML
[198] Fix | Delete
; documents, however this remains supported for backward compatibility reasons.
[199] Fix | Delete
; Note that this directive does not control the <?= shorthand tag, which can be
[200] Fix | Delete
; used regardless of this directive.
[201] Fix | Delete
; Default Value: On
[202] Fix | Delete
; Development Value: Off
[203] Fix | Delete
; Production Value: Off
[204] Fix | Delete
; http://php.net/short-open-tag
[205] Fix | Delete
short_open_tag = On
[206] Fix | Delete
[207] Fix | Delete
; The number of significant digits displayed in floating point numbers.
[208] Fix | Delete
; http://php.net/precision
[209] Fix | Delete
precision = 14
[210] Fix | Delete
[211] Fix | Delete
; Output buffering is a mechanism for controlling how much output data
[212] Fix | Delete
; (excluding headers and cookies) PHP should keep internally before pushing that
[213] Fix | Delete
; data to the client. If your application's output exceeds this setting, PHP
[214] Fix | Delete
; will send that data in chunks of roughly the size you specify.
[215] Fix | Delete
; Turning on this setting and managing its maximum buffer size can yield some
[216] Fix | Delete
; interesting side-effects depending on your application and web server.
[217] Fix | Delete
; You may be able to send headers and cookies after you've already sent output
[218] Fix | Delete
; through print or echo. You also may see performance benefits if your server is
[219] Fix | Delete
; emitting less packets due to buffered output versus PHP streaming the output
[220] Fix | Delete
; as it gets it. On production servers, 4096 bytes is a good setting for performance
[221] Fix | Delete
; reasons.
[222] Fix | Delete
; Note: Output buffering can also be controlled via Output Buffering Control
[223] Fix | Delete
; functions.
[224] Fix | Delete
; Possible Values:
[225] Fix | Delete
; On = Enabled and buffer is unlimited. (Use with caution)
[226] Fix | Delete
; Off = Disabled
[227] Fix | Delete
; Integer = Enables the buffer and sets its maximum size in bytes.
[228] Fix | Delete
; Note: This directive is hardcoded to Off for the CLI SAPI
[229] Fix | Delete
; Default Value: Off
[230] Fix | Delete
; Development Value: 4096
[231] Fix | Delete
; Production Value: 4096
[232] Fix | Delete
; http://php.net/output-buffering
[233] Fix | Delete
output_buffering = Off
[234] Fix | Delete
[235] Fix | Delete
; You can redirect all of the output of your scripts to a function. For
[236] Fix | Delete
; example, if you set output_handler to "mb_output_handler", character
[237] Fix | Delete
; encoding will be transparently converted to the specified encoding.
[238] Fix | Delete
; Setting any output handler automatically turns on output buffering.
[239] Fix | Delete
; Note: People who wrote portable scripts should not depend on this ini
[240] Fix | Delete
; directive. Instead, explicitly set the output handler using ob_start().
[241] Fix | Delete
; Using this ini directive may cause problems unless you know what script
[242] Fix | Delete
; is doing.
[243] Fix | Delete
; Note: You cannot use both "mb_output_handler" with "ob_iconv_handler"
[244] Fix | Delete
; and you cannot use both "ob_gzhandler" and "zlib.output_compression".
[245] Fix | Delete
; Note: output_handler must be empty if this is set 'On' !!!!
[246] Fix | Delete
; Instead you must use zlib.output_handler.
[247] Fix | Delete
; http://php.net/output-handler
[248] Fix | Delete
;output_handler =
[249] Fix | Delete
[250] Fix | Delete
; Transparent output compression using the zlib library
[251] Fix | Delete
; Valid values for this option are 'off', 'on', or a specific buffer size
[252] Fix | Delete
; to be used for compression (default is 4KB)
[253] Fix | Delete
; Note: Resulting chunk size may vary due to nature of compression. PHP
[254] Fix | Delete
; outputs chunks that are few hundreds bytes each as a result of
[255] Fix | Delete
; compression. If you prefer a larger chunk size for better
[256] Fix | Delete
; performance, enable output_buffering in addition.
[257] Fix | Delete
; Note: You need to use zlib.output_handler instead of the standard
[258] Fix | Delete
; output_handler, or otherwise the output will be corrupted.
[259] Fix | Delete
; http://php.net/zlib.output-compression
[260] Fix | Delete
zlib.output_compression = Off
[261] Fix | Delete
[262] Fix | Delete
; http://php.net/zlib.output-compression-level
[263] Fix | Delete
;zlib.output_compression_level = -1
[264] Fix | Delete
[265] Fix | Delete
; You cannot specify additional output handlers if zlib.output_compression
[266] Fix | Delete
; is activated here. This setting does the same as output_handler but in
[267] Fix | Delete
; a different order.
[268] Fix | Delete
; http://php.net/zlib.output-handler
[269] Fix | Delete
;zlib.output_handler =
[270] Fix | Delete
[271] Fix | Delete
; Implicit flush tells PHP to tell the output layer to flush itself
[272] Fix | Delete
; automatically after every output block. This is equivalent to calling the
[273] Fix | Delete
; PHP function flush() after each and every call to print() or echo() and each
[274] Fix | Delete
; and every HTML block. Turning this option on has serious performance
[275] Fix | Delete
; implications and is generally recommended for debugging purposes only.
[276] Fix | Delete
; http://php.net/implicit-flush
[277] Fix | Delete
; Note: This directive is hardcoded to On for the CLI SAPI
[278] Fix | Delete
implicit_flush = Off
[279] Fix | Delete
[280] Fix | Delete
; The unserialize callback function will be called (with the undefined class'
[281] Fix | Delete
; name as parameter), if the unserializer finds an undefined class
[282] Fix | Delete
; which should be instantiated. A warning appears if the specified function is
[283] Fix | Delete
; not defined, or if the function doesn't include/implement the missing class.
[284] Fix | Delete
; So only set this entry, if you really want to implement such a
[285] Fix | Delete
; callback-function.
[286] Fix | Delete
unserialize_callback_func =
[287] Fix | Delete
[288] Fix | Delete
; When floats & doubles are serialized store serialize_precision significant
[289] Fix | Delete
; digits after the floating point. The default value ensures that when floats
[290] Fix | Delete
; are decoded with unserialize, the data will remain the same.
[291] Fix | Delete
serialize_precision = 100
[292] Fix | Delete
[293] Fix | Delete
; open_basedir, if set, limits all file operations to the defined directory
[294] Fix | Delete
; and below. This directive makes most sense if used in a per-directory
[295] Fix | Delete
; or per-virtualhost web server configuration file.
[296] Fix | Delete
; http://php.net/open-basedir
[297] Fix | Delete
;open_basedir =
[298] Fix | Delete
[299] Fix | Delete
; This directive allows you to disable certain functions for security reasons.
[300] Fix | Delete
; It receives a comma-delimited list of function names.
[301] Fix | Delete
; http://php.net/disable-functions
[302] Fix | Delete
disable_functions =
[303] Fix | Delete
[304] Fix | Delete
; This directive allows you to disable certain classes for security reasons.
[305] Fix | Delete
; It receives a comma-delimited list of class names.
[306] Fix | Delete
; http://php.net/disable-classes
[307] Fix | Delete
disable_classes =
[308] Fix | Delete
[309] Fix | Delete
; Colors for Syntax Highlighting mode. Anything that's acceptable in
[310] Fix | Delete
; <span style="color: ???????"> would work.
[311] Fix | Delete
; http://php.net/syntax-highlighting
[312] Fix | Delete
;highlight.string = #DD0000
[313] Fix | Delete
;highlight.comment = #FF9900
[314] Fix | Delete
;highlight.keyword = #007700
[315] Fix | Delete
;highlight.default = #0000BB
[316] Fix | Delete
;highlight.html = #000000
[317] Fix | Delete
[318] Fix | Delete
; If enabled, the request will be allowed to complete even if the user aborts
[319] Fix | Delete
; the request. Consider enabling it if executing long requests, which may end up
[320] Fix | Delete
; being interrupted by the user or a browser timing out. PHP's default behavior
[321] Fix | Delete
; is to disable this feature.
[322] Fix | Delete
; http://php.net/ignore-user-abort
[323] Fix | Delete
;ignore_user_abort = On
[324] Fix | Delete
[325] Fix | Delete
; Determines the size of the realpath cache to be used by PHP. This value should
[326] Fix | Delete
; be increased on systems where PHP opens many files to reflect the quantity of
[327] Fix | Delete
; the file operations performed.
[328] Fix | Delete
; http://php.net/realpath-cache-size
[329] Fix | Delete
;realpath_cache_size = 16k
[330] Fix | Delete
[331] Fix | Delete
; Duration of time, in seconds for which to cache realpath information for a given
[332] Fix | Delete
; file or directory. For systems with rarely changing files, consider increasing this
[333] Fix | Delete
; value.
[334] Fix | Delete
; http://php.net/realpath-cache-ttl
[335] Fix | Delete
;realpath_cache_ttl = 120
[336] Fix | Delete
[337] Fix | Delete
; Enables or disables the circular reference collector.
[338] Fix | Delete
; http://php.net/zend.enable-gc
[339] Fix | Delete
zend.enable_gc = On
[340] Fix | Delete
[341] Fix | Delete
; If enabled, scripts may be written in encodings that are incompatible with
[342] Fix | Delete
; the scanner. CP936, Big5, CP949 and Shift_JIS are the examples of such
[343] Fix | Delete
; encodings. To use this feature, mbstring extension must be enabled.
[344] Fix | Delete
; Default: Off
[345] Fix | Delete
;zend.multibyte = Off
[346] Fix | Delete
[347] Fix | Delete
; Allows to set the default encoding for the scripts. This value will be used
[348] Fix | Delete
; unless "declare(encoding=...)" directive appears at the top of the script.
[349] Fix | Delete
; Only affects if zend.multibyte is set.
[350] Fix | Delete
; Default: ""
[351] Fix | Delete
;zend.script_encoding =
[352] Fix | Delete
[353] Fix | Delete
;;;;;;;;;;;;;;;;;
[354] Fix | Delete
; Miscellaneous ;
[355] Fix | Delete
;;;;;;;;;;;;;;;;;
[356] Fix | Delete
[357] Fix | Delete
; Decides whether PHP may expose the fact that it is installed on the server
[358] Fix | Delete
; (e.g. by adding its signature to the Web server header). It is no security
[359] Fix | Delete
; threat in any way, but it makes it possible to determine whether you use PHP
[360] Fix | Delete
; on your server or not.
[361] Fix | Delete
; http://php.net/expose-php
[362] Fix | Delete
expose_php = Off
[363] Fix | Delete
[364] Fix | Delete
;;;;;;;;;;;;;;;;;;;
[365] Fix | Delete
; Resource Limits ;
[366] Fix | Delete
;;;;;;;;;;;;;;;;;;;
[367] Fix | Delete
[368] Fix | Delete
; Maximum execution time of each script, in seconds
[369] Fix | Delete
; http://php.net/max-execution-time
[370] Fix | Delete
; Note: This directive is hardcoded to 0 for the CLI SAPI
[371] Fix | Delete
max_execution_time = 30
[372] Fix | Delete
[373] Fix | Delete
; Maximum amount of time each script may spend parsing request data. It's a good
[374] Fix | Delete
; idea to limit this time on productions servers in order to eliminate unexpectedly
[375] Fix | Delete
; long running scripts.
[376] Fix | Delete
; Note: This directive is hardcoded to -1 for the CLI SAPI
[377] Fix | Delete
; Default Value: -1 (Unlimited)
[378] Fix | Delete
; Development Value: 60 (60 seconds)
[379] Fix | Delete
; Production Value: 60 (60 seconds)
[380] Fix | Delete
; http://php.net/max-input-time
[381] Fix | Delete
max_input_time = 60
[382] Fix | Delete
[383] Fix | Delete
; Maximum input variable nesting level
[384] Fix | Delete
; http://php.net/max-input-nesting-level
[385] Fix | Delete
;max_input_nesting_level = 64
[386] Fix | Delete
[387] Fix | Delete
; How many GET/POST/COOKIE input variables may be accepted
[388] Fix | Delete
; max_input_vars = 1000
[389] Fix | Delete
[390] Fix | Delete
; Maximum amount of memory a script may consume (128MB)
[391] Fix | Delete
; http://php.net/memory-limit
[392] Fix | Delete
memory_limit = 128M
[393] Fix | Delete
[394] Fix | Delete
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
[395] Fix | Delete
; Error handling and logging ;
[396] Fix | Delete
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
[397] Fix | Delete
[398] Fix | Delete
; This directive informs PHP of which errors, warnings and notices you would like
[399] Fix | Delete
; it to take action for. The recommended way of setting values for this
[400] Fix | Delete
; directive is through the use of the error level constants and bitwise
[401] Fix | Delete
; operators. The error level constants are below here for convenience as well as
[402] Fix | Delete
; some common settings and their meanings.
[403] Fix | Delete
; By default, PHP is set to take action on all errors, notices and warnings EXCEPT
[404] Fix | Delete
; those related to E_NOTICE and E_STRICT, which together cover best practices and
[405] Fix | Delete
; recommended coding standards in PHP. For performance reasons, this is the
[406] Fix | Delete
; recommend error reporting setting. Your production server shouldn't be wasting
[407] Fix | Delete
; resources complaining about best practices and coding standards. That's what
[408] Fix | Delete
; development servers and development settings are for.
[409] Fix | Delete
; Note: The php.ini-development file has this setting as E_ALL. This
[410] Fix | Delete
; means it pretty much reports everything which is exactly what you want during
[411] Fix | Delete
; development and early testing.
[412] Fix | Delete
;
[413] Fix | Delete
; Error Level Constants:
[414] Fix | Delete
; E_ALL - All errors and warnings (includes E_STRICT as of PHP 5.4.0)
[415] Fix | Delete
; E_ERROR - fatal run-time errors
[416] Fix | Delete
; E_RECOVERABLE_ERROR - almost fatal run-time errors
[417] Fix | Delete
; E_WARNING - run-time warnings (non-fatal errors)
[418] Fix | Delete
; E_PARSE - compile-time parse errors
[419] Fix | Delete
; E_NOTICE - run-time notices (these are warnings which often result
[420] Fix | Delete
; from a bug in your code, but it's possible that it was
[421] Fix | Delete
; intentional (e.g., using an uninitialized variable and
[422] Fix | Delete
; relying on the fact it's automatically initialized to an
[423] Fix | Delete
; empty string)
[424] Fix | Delete
; E_STRICT - run-time notices, enable to have PHP suggest changes
[425] Fix | Delete
; to your code which will ensure the best interoperability
[426] Fix | Delete
; and forward compatibility of your code
[427] Fix | Delete
; E_CORE_ERROR - fatal errors that occur during PHP's initial startup
[428] Fix | Delete
; E_CORE_WARNING - warnings (non-fatal errors) that occur during PHP's
[429] Fix | Delete
; initial startup
[430] Fix | Delete
; E_COMPILE_ERROR - fatal compile-time errors
[431] Fix | Delete
; E_COMPILE_WARNING - compile-time warnings (non-fatal errors)
[432] Fix | Delete
; E_USER_ERROR - user-generated error message
[433] Fix | Delete
; E_USER_WARNING - user-generated warning message
[434] Fix | Delete
; E_USER_NOTICE - user-generated notice message
[435] Fix | Delete
; E_DEPRECATED - warn about code that will not work in future versions
[436] Fix | Delete
; of PHP
[437] Fix | Delete
; E_USER_DEPRECATED - user-generated deprecation warnings
[438] Fix | Delete
;
[439] Fix | Delete
; Common Values:
[440] Fix | Delete
; E_ALL (Show all errors, warnings and notices including coding standards.)
[441] Fix | Delete
; E_ALL & ~E_NOTICE (Show all errors, except for notices)
[442] Fix | Delete
; E_ALL & ~E_NOTICE & ~E_STRICT (Show all errors, except for notices and coding standards warnings.)
[443] Fix | Delete
; E_COMPILE_ERROR|E_RECOVERABLE_ERROR|E_ERROR|E_CORE_ERROR (Show only errors)
[444] Fix | Delete
; Default Value: E_ALL & ~E_NOTICE & ~E_STRICT & ~E_DEPRECATED
[445] Fix | Delete
; Development Value: E_ALL
[446] Fix | Delete
; Production Value: E_ALL & ~E_DEPRECATED & ~E_STRICT
[447] Fix | Delete
; http://php.net/error-reporting
[448] Fix | Delete
error_reporting = E_ALL & ~E_NOTICE
[449] Fix | Delete
[450] Fix | Delete
; This directive controls whether or not and where PHP will output errors,
[451] Fix | Delete
; notices and warnings too. Error output is very useful during development, but
[452] Fix | Delete
; it could be very dangerous in production environments. Depending on the code
[453] Fix | Delete
; which is triggering the error, sensitive information could potentially leak
[454] Fix | Delete
; out of your application such as database usernames and passwords or worse.
[455] Fix | Delete
; For production environments, we recommend logging errors rather than
[456] Fix | Delete
; sending them to STDOUT.
[457] Fix | Delete
; Possible Values:
[458] Fix | Delete
; Off = Do not display any errors
[459] Fix | Delete
; stderr = Display errors to STDERR (affects only CGI/CLI binaries!)
[460] Fix | Delete
; On or stdout = Display errors to STDOUT
[461] Fix | Delete
; Default Value: On
[462] Fix | Delete
; Development Value: On
[463] Fix | Delete
; Production Value: Off
[464] Fix | Delete
; http://php.net/display-errors
[465] Fix | Delete
display_errors = Off
[466] Fix | Delete
[467] Fix | Delete
; The display of errors which occur during PHP's startup sequence are handled
[468] Fix | Delete
; separately from display_errors. PHP's default behavior is to suppress those
[469] Fix | Delete
; errors from clients. Turning the display of startup errors on can be useful in
[470] Fix | Delete
; debugging configuration problems. We strongly recommend you
[471] Fix | Delete
; set this to 'off' for production servers.
[472] Fix | Delete
; Default Value: Off
[473] Fix | Delete
; Development Value: On
[474] Fix | Delete
; Production Value: Off
[475] Fix | Delete
; http://php.net/display-startup-errors
[476] Fix | Delete
display_startup_errors = Off
[477] Fix | Delete
[478] Fix | Delete
; Besides displaying errors, PHP can also log errors to locations such as a
[479] Fix | Delete
; server-specific log, STDERR, or a location specified by the error_log
[480] Fix | Delete
; directive found below. While errors should not be displayed on productions
[481] Fix | Delete
; servers they should still be monitored and logging is a great way to do that.
[482] Fix | Delete
; Default Value: On
[483] Fix | Delete
; Development Value: On
[484] Fix | Delete
; Production Value: On
[485] Fix | Delete
; http://php.net/log-errors
[486] Fix | Delete
log_errors = On
[487] Fix | Delete
[488] Fix | Delete
; Set maximum length of log_errors. In error_log information about the source is
[489] Fix | Delete
; added. The default is 1024 and 0 allows to not apply any maximum length at all.
[490] Fix | Delete
; http://php.net/log-errors-max-len
[491] Fix | Delete
log_errors_max_len = 1024
[492] Fix | Delete
[493] Fix | Delete
; Do not log repeated messages. Repeated errors must occur in same file on same
[494] Fix | Delete
; line unless ignore_repeated_source is set true.
[495] Fix | Delete
; http://php.net/ignore-repeated-errors
[496] Fix | Delete
ignore_repeated_errors = Off
[497] Fix | Delete
[498] Fix | Delete
; Ignore source of message when ignoring repeated messages. When this setting
[499] Fix | Delete
It is recommended that you Edit text format, this type of Fix handles quite a lot in one request
Function