From f12dac4d8f2e4da06c7f8a16774a0c3158ba0cbb Mon Sep 17 00:00:00 2001 From: Andrew McMillan Date: Thu, 28 Jun 2012 22:15:41 +1200 Subject: [PATCH] Comment out the php ini overrides in the example Apache VirtualHost These are all defaults / not required nowadays. --- docs/website/installation.php | 15 ++++++++++----- 1 file changed, 10 insertions(+), 5 deletions(-) diff --git a/docs/website/installation.php b/docs/website/installation.php index fb49dd6f..353d672e 100644 --- a/docs/website/installation.php +++ b/docs/website/installation.php @@ -202,11 +202,16 @@ single virtual host.

Allow from all </Directory> AcceptPathInfo On - php_value include_path /usr/share/awl/inc - php_value magic_quotes_gpc 0 - php_value register_globals 0 - php_value error_reporting "E_ALL & ~E_NOTICE" - php_value default_charset "utf-8" + # + # You probably don't need to enable any of these sorts of things other than in exceptional + # circumstances. Apart from the include path (which DAViCal will discover if it is anywhere + # 'normal') they are the default in newer PHP versions. + # + # php_value include_path /usr/share/awl/inc + # php_value magic_quotes_gpc 0 + # php_value register_globals 0 + # php_value error_reporting "E_ALL & ~E_NOTICE" + # php_value default_charset "utf-8" </VirtualHost>