Changeset 731e0e5 in github


Ignore:
Timestamp:
Feb 4, 2008 1:53:01 AM (5 years ago)
Author:
till <till@…>
Branches:
master, HEAD, courier-fix, dev-browser-capabilities, pdo, release-0.6, release-0.7, release-0.8
Children:
e581e74
Parents:
be4d182
Message:
  • eyecandy changes to check.php
File:
1 edited

Legend:

Unmodified
Added
Removed
  • check.php

    rbe4d182 r731e0e5  
    5252 
    5353$path = dirname(__FILE__) . '/'; 
     54?> 
     55<html> 
     56<head> 
     57    <link rel="shortcut icon" href="skins/default/images/favicon.ico"/> 
     58    <link rel="stylesheet" type="text/css" href="skins/default/common.css" /> 
     59    <title>RoundCube :: check</title> 
     60</head> 
     61<body> 
     62<img src="skins/default/images/roundcube_logo.png" width="165" height="55" border="0" alt="RoundCube Webmail" hspace="12" vspace="2"/> 
    5463 
     64<?php 
    5565echo '<h3>Check if directories are writable</h3>'; 
    5666echo '<p>RoundCube may need to write/save files into these directories.</p>'; 
     
    100110 
    101111echo '<h3>TimeZone</h3>'; 
     112echo 'Checks if web- and databaseserver are in the same timezone.<br /><br />'; 
    102113echo 'Status: '; 
    103114if ($db_working === true) { 
     
    128139$file_uploads = ini_get('file_uploads'); 
    129140 
    130 echo '<h4>session.auto_start</h4>'; 
     141echo '<h4>session.auto_start = 0</h4>'; 
    131142echo 'status: '; 
    132143if ($auto_start == 1) { 
     
    137148echo '<br />'; 
    138149 
    139 echo '<h4>file_uploads</h4>'; 
     150echo '<h4>file_uploads = On</h4>'; 
    140151echo 'status: '; 
    141152if ($file_uploads == 1) { 
     
    147158/* 
    148159 * Probably not needed because we have a custom handler 
    149 echo '<h4>session.save_path</h4>'; 
     160echo '<h4>session.save_path <i>is set</i></h4>'; 
    150161echo 'status: '; 
    151162$save_path = ini_get('session.save_path'); 
     
    165176 */ 
    166177?> 
     178</body> 
     179</html> 
Note: See TracChangeset for help on using the changeset viewer.