thomascube
2008-03-02 019b5d5518763bebe07a54979c9fa485e621422c
Don't check for zlib-output_compression; this is handeled in index.php

1 files modified
7 ■■■■■ changed files
installer/check.php 7 ●●●●● patch | view | raw | blame | history
installer/check.php
@@ -13,8 +13,7 @@
    'PostgreSQL' => 'pgsql', 'SQLite (v2)' => 'sqlite');
$ini_checks = array('file_uploads' => 1, 'session.auto_start' => 0,
    'magic_quotes_gpc' => 0, 'magic_quotes_sybase' => 0,
    'zlib.output_compression' => 0);
    'magic_quotes_gpc' => 0, 'magic_quotes_sybase' => 0);
$source_urls = array(
    'Sockets' => 'http://www.php.net/manual/en/ref.sockets.php',
@@ -145,11 +144,11 @@
<?php
if ($RCI->failures)
if ($RCI->failures) {
  echo '<p class="warning">Sorry but your webserver does not meet the requirements for RoundCube!<br />
            Please install the missing modules or fix the php.ini settings according to the above check results.<br />
            Hint: only checks showing <span class="fail">NOT OK</span> need to be fixed.</p>';
}
echo '<p><br /><input type="submit" value="NEXT" ' . ($RCI->failures ? 'disabled' : '') . ' /></p>';
?>