till
2008-02-04 731e0e57f42f773c76e45e28d9377407277425bf
check.php
@@ -51,7 +51,17 @@
$create_files  = array('config/db.inc.php', 'config/main.inc.php');
$path = dirname(__FILE__) . '/';
?>
<html>
<head>
    <link rel="shortcut icon" href="skins/default/images/favicon.ico"/>
    <link rel="stylesheet" type="text/css" href="skins/default/common.css" />
    <title>RoundCube :: check</title>
</head>
<body>
<img src="skins/default/images/roundcube_logo.png" width="165" height="55" border="0" alt="RoundCube Webmail" hspace="12" vspace="2"/>
<?php
echo '<h3>Check if directories are writable</h3>';
echo '<p>RoundCube may need to write/save files into these directories.</p>';
@@ -99,6 +109,7 @@
}
echo '<h3>TimeZone</h3>';
echo 'Checks if web- and databaseserver are in the same timezone.<br /><br />';
echo 'Status: ';
if ($db_working === true) {
    require_once 'include/rcube_mdb2.inc';
@@ -127,7 +138,7 @@
$auto_start   = ini_get('session.auto_start');
$file_uploads = ini_get('file_uploads');
echo '<h4>session.auto_start</h4>';
echo '<h4>session.auto_start = 0</h4>';
echo 'status: ';
if ($auto_start == 1) {
    echo 'NOT OK';
@@ -136,7 +147,7 @@
}
echo '<br />';
echo '<h4>file_uploads</h4>';
echo '<h4>file_uploads = On</h4>';
echo 'status: ';
if ($file_uploads == 1) {
    echo 'OK';
@@ -146,7 +157,7 @@
/*
 * Probably not needed because we have a custom handler
echo '<h4>session.save_path</h4>';
echo '<h4>session.save_path <i>is set</i></h4>';
echo 'status: ';
$save_path = ini_get('session.save_path');
if (empty($save_path)) {
@@ -164,3 +175,5 @@
echo '<br />';
 */
?>
</body>
</html>