diff options
| author | till <till@208e9e7b-5314-0410-a742-e7e81cd9613c> | 2008-02-04 06:53:01 +0000 |
|---|---|---|
| committer | till <till@208e9e7b-5314-0410-a742-e7e81cd9613c> | 2008-02-04 06:53:01 +0000 |
| commit | 9e154adf7454ee719abc7ca3b5201b8716c4544f (patch) | |
| tree | 3f9175f28bc1c8b1bde9c92abae972d577925070 | |
| parent | 03c5a8940ee8ed64e0a8fc608049d6dcd2f12837 (diff) | |
* eyecandy changes to check.php
git-svn-id: https://svn.roundcube.net/trunk@1010 208e9e7b-5314-0410-a742-e7e81cd9613c
| -rw-r--r-- | roundcubemail/check.php | 19 |
1 files changed, 16 insertions, 3 deletions
diff --git a/roundcubemail/check.php b/roundcubemail/check.php index c87b8be1f..4378f17a7 100644 --- a/roundcubemail/check.php +++ b/roundcubemail/check.php @@ -51,7 +51,17 @@ $writable_dirs = array('logs/', 'temp/'); $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 @@ if (isset($rcmail_config)) { } 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 @@ echo '<h3>Checking .ini settings</h3>'; $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 @@ if ($auto_start == 1) { } 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 @@ if ($file_uploads == 1) { /* * 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 @@ if (empty($save_path)) { echo '<br />'; */ ?> +</body> +</html> |
