Changeset 982 in subversion


Ignore:
Timestamp:
Feb 1, 2008 6:07:49 PM (5 years ago)
Author:
till
Message:
  • fixed #1484437
  • also added it to check.php
Location:
trunk/roundcubemail
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/roundcubemail/.htaccess

    r938 r982  
    99  php_value     post_max_size   6M 
    1010  php_value memory_limit        64M 
     11  php_value session.auto_start 1 
    1112</IfModule> 
    1213 
     
    1819  php_value     post_max_size   6M 
    1920  php_value memory_limit        64M 
     21  php_value session.auto_start 1 
    2022</IfModule> 
    2123 
  • trunk/roundcubemail/INSTALL

    r924 r982  
    2121   - file_uploads on (for attachment upload features) 
    2222   - memory_limit (increase as suitable to support large attachments) 
     23   - session.auto_start needs to be off/0 
    2324* PHP compiled with Open SSL to connect to IMAPS and to use the spell checker 
    2425* A MySQL or PostgreSQL database engine or the SQLite extension for PHP 
  • trunk/roundcubemail/check.php

    r971 r982  
    6767        echo 'NOT OK'; 
    6868    } 
    69     echo "<br />"; 
     69    echo '<br />'; 
    7070} 
    7171 
     
    8383        echo 'NOT OK'; 
    8484    } 
     85    echo '<br />'; 
    8586} else { 
    8687    echo 'Could not open db.inc.php config file, or file is empty.<br />'; 
    8788} 
     89 
     90echo '<h3>Checking .ini settings</h3>'; 
     91 
     92$auto_start   = ini_get('session.auto_start'); 
     93$file_uploads = ini_get('file_uploads'); 
     94 
     95echo "session.auto_start: "; 
     96if ($auto_start == 1) { 
     97    echo 'NOT OK'; 
     98} else { 
     99    echo 'OK'; 
     100} 
     101echo '<br />'; 
     102 
     103echo "file_uploads: "; 
     104if ($file_uploads == 1) { 
     105    echo 'OK'; 
     106} else { 
     107    echo 'NOT OK'; 
     108} 
     109echo '<br />'; 
    88110?> 
Note: See TracChangeset for help on using the changeset viewer.