File tree 1 file changed +6
-1
lines changed
1 file changed +6
-1
lines changed Original file line number Diff line number Diff line change 43
43
; but can be configured in several ways). Along with setting display_errors to off,
44
44
; this setup gives you the ability to fully understand what may have gone wrong,
45
45
; without exposing any sensitive information to remote users.
46
+ ; - output_buffering = 4096 [Performance]
47
+ ; Set a 4KB output buffer. Enabling output buffering typically results in less
48
+ ; writes, and sometimes less packets sent on the wire, which can often lead to
49
+ ; better performance. The gain this directive actually yields greatly depends
50
+ ; on which Web server you're working with, and what kind of scripts you're using.
46
51
; - register_argc_argv = Off [Performance]
47
52
; Disables registration of the somewhat redundant $argv and $argc global
48
53
; variables.
@@ -85,7 +90,7 @@ y2k_compliance = Off
85
90
; setting this directive to On. If you wish to limit the size of the buffer
86
91
; to a certain size - you can use a maximum number of bytes instead of 'On', as
87
92
; a value for this directive (e.g., output_buffering=4096).
88
- output_buffering = Off
93
+ output_buffering = 4096
89
94
90
95
; You can redirect all of the output of your scripts to a function. For
91
96
; example, if you set output_handler to "ob_gzhandler", output will be
You can’t perform that action at this time.
0 commit comments