summaryrefslogtreecommitdiff
path: root/roundcubemail
diff options
context:
space:
mode:
authortill <till@208e9e7b-5314-0410-a742-e7e81cd9613c>2008-02-16 18:15:14 +0000
committertill <till@208e9e7b-5314-0410-a742-e7e81cd9613c>2008-02-16 18:15:14 +0000
commit8ea1849056dd71d304d8df7efaafdd7e2cabe55a (patch)
tree775762f4de7f5074f74813c90cbd200076f37fb7 /roundcubemail
parent8a4250088086608f293f534e3d07f00ec5666215 (diff)
* check.php: add another check for zlib.output_compression 0
* .htaccess: forcing it off git-svn-id: https://svn.roundcube.net/trunk@1097 208e9e7b-5314-0410-a742-e7e81cd9613c
Diffstat (limited to 'roundcubemail')
-rw-r--r--roundcubemail/.htaccess10
-rw-r--r--roundcubemail/check.php-dist3
2 files changed, 8 insertions, 5 deletions
diff --git a/roundcubemail/.htaccess b/roundcubemail/.htaccess
index 87a67c8dd..d0b17aebd 100644
--- a/roundcubemail/.htaccess
+++ b/roundcubemail/.htaccess
@@ -7,8 +7,9 @@ AddType text/x-component .htc
php_value error_log logs/errors
php_value upload_max_filesize 5M
php_value post_max_size 6M
- php_value memory_limit 64M
- php_value session.auto_start 0
+ php_value memory_limit 64M
+ php_value session.auto_start 0
+ php_value zlib.output_compression
</IfModule>
<IfModule mod_php5.c>
@@ -17,8 +18,9 @@ AddType text/x-component .htc
php_value error_log logs/errors
php_value upload_max_filesize 5M
php_value post_max_size 6M
- php_value memory_limit 64M
- php_value session.auto_start 0
+ php_value memory_limit 64M
+ php_value session.auto_start 0
+ php_value zlib.output_compression 0
</IfModule>
<FilesMatch "(\.inc|\~)$">
diff --git a/roundcubemail/check.php-dist b/roundcubemail/check.php-dist
index 81d63ae62..076ecfe26 100644
--- a/roundcubemail/check.php-dist
+++ b/roundcubemail/check.php-dist
@@ -253,7 +253,8 @@ echo '<br />';
echo '<h3>Checking .ini settings</h3>';
$ini_array = array('session.auto_start' => 0, 'file_uploads' => 1,
- 'magic_quotes_sybase' => 0, 'magic_quotes_gpc' => 0);
+ 'magic_quotes_sybase' => 0, 'magic_quotes_gpc' => 0,
+ 'zlib.output_compression' => 0);
foreach ($ini_array AS $var => $val) {
$status = ini_get($var);