Chapter 23. APPENDIX E: Enable GZIP compression in php.ini

Within php.ini (usually /etc/php.ini), add the following lines to activate GZIP compression (*NIX ONLY -- DOES NOT WORK ON WINDOWS SERVERS):

--- CUT HERE ---


	# GZIP COMPRESSION
	#
	output_handler          = ob_gzhandler
	

--- CUT HERE ---