summaryrefslogtreecommitdiff
path: root/installer/check.php
diff options
context:
space:
mode:
authorthomascube <thomas@roundcube.net>2008-02-25 23:03:54 +0000
committerthomascube <thomas@roundcube.net>2008-02-25 23:03:54 +0000
commitc5042d468e605a7ec9bb6883ba721c8fd222b4ec (patch)
tree739a31c581dfa6f274b93b0d5582242cddc3582c /installer/check.php
parente8a89e8f4c32e19e46479f527c5392d18b84c62f (diff)
More installer stuff
Diffstat (limited to 'installer/check.php')
-rw-r--r--installer/check.php29
1 files changed, 25 insertions, 4 deletions
diff --git a/installer/check.php b/installer/check.php
index 33264a0e2..9f54d8f8f 100644
--- a/installer/check.php
+++ b/installer/check.php
@@ -1,9 +1,5 @@
<?php
-$docroot = realpath(dirname(__FILE__) . '/../');
-$include_path = $docroot . '/program/lib' . PATH_SEPARATOR . $docroot . '/program' . PATH_SEPARATOR . ini_get('include_path');
-set_include_path($include_path);
-
$required_php_exts = array('PCRE' => 'pcre', 'Session' => 'session', 'Sockets' => 'sockets');
$optional_php_exts = array('FileInfo' => 'fileinfo', 'Libiconv' => 'iconv', 'Multibyte' => 'mbstring', 'OpenSSL' => 'openssl');
@@ -14,6 +10,10 @@ $required_libs = array('PEAR' => 'PEAR.php', 'DB' => 'DB.php', 'MDB2' => 'MDB2.p
$supported_dbs = array('MySQL' => 'mysql', 'MySQLi' => 'mysqli',
'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);
+
$source_urls = array(
'Sockets' => 'http://www.php.net/manual/en/ref.sockets.php',
'Session' => 'http://www.php.net/manual/en/ref.session.php',
@@ -122,6 +122,27 @@ foreach ($required_libs as $classname => $file) {
echo "<br />";
}
+
+?>
+
+<h3>Checking php.ini/.htaccess settings</h3>
+
+<?php
+
+foreach ($ini_checks as $var => $val) {
+ $status = ini_get($var);
+ if ($status == $val) {
+ $RCI->pass($var);
+ }
+ else {
+ $RCI->fail($var, "is '$status', should be '$val'");
+ }
+ echo '<br />';
+}
+?>
+
+<?php
+
if ($RCI->failures)
echo '<p class="warning">Sorry but your webserver does not meet the requirements for RoundCube!<br />
Please install the missing modules according to the above check results.</p>';