diff options
author | Gunnar Wrobel <wrobel@pardus.de> | 2009-11-23 22:35:01 (GMT) |
---|---|---|
committer | Gunnar Wrobel <wrobel@pardus.de> | 2009-11-23 22:35:01 (GMT) |
commit | 6f42ab43c98fb17565b5493c362636f5be24ed45 (patch) | |
tree | fafda5ef10acd839472be255b98db33381ea7be2 | |
parent | 44bbaa9120c2042d775faeea0041c696657a0139 (diff) | |
download | kolab-conf-6f42ab43c98fb17565b5493c362636f5be24ed45.tar.gz |
kolab/issue919 (kolab server has problems with some characters in
passwords)
kolab/issue1880 (Poor handling of apostrophes in ldap and admin
webpages)
kolab/issue3654 (Special character issue in Kolab web
interface (e.g. vacation message))
kolab/issue3499 (creating/modifying users with special characters
in name confuses web admin)
-rw-r--r-- | conf/templates/php.ini.template.in | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/conf/templates/php.ini.template.in b/conf/templates/php.ini.template.in index 1f68560..ee4e4d9 100644 --- a/conf/templates/php.ini.template.in +++ b/conf/templates/php.ini.template.in @@ -21,6 +21,11 @@ max_input_time = 60 ; Maximum amount of time each script may spend parsi memory_limit = 64M ; Maximum amount of memory a script may consume post_max_size = 8M ; Maximum amount of POST data accepted +magic_quotes_gpc = 0 ; Automatically quote posted variables. Required to be "0" for the + ; webadmin to work. Horde does not care and removes them anyway if + ; the setting is "1". The setting will be removed in PHP 6 and "0" + ; will be the default then. + error_reporting = E_ALL error_log = @webserver_logdir@/php/php-errors.log upload_tmp_dir = @webserver_tmpdir@ |