Changeset 982 in subversion
- Timestamp:
- Feb 1, 2008 6:07:49 PM (5 years ago)
- Location:
- trunk/roundcubemail
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/roundcubemail/.htaccess
r938 r982 9 9 php_value post_max_size 6M 10 10 php_value memory_limit 64M 11 php_value session.auto_start 1 11 12 </IfModule> 12 13 … … 18 19 php_value post_max_size 6M 19 20 php_value memory_limit 64M 21 php_value session.auto_start 1 20 22 </IfModule> 21 23 -
trunk/roundcubemail/INSTALL
r924 r982 21 21 - file_uploads on (for attachment upload features) 22 22 - memory_limit (increase as suitable to support large attachments) 23 - session.auto_start needs to be off/0 23 24 * PHP compiled with Open SSL to connect to IMAPS and to use the spell checker 24 25 * A MySQL or PostgreSQL database engine or the SQLite extension for PHP -
trunk/roundcubemail/check.php
r971 r982 67 67 echo 'NOT OK'; 68 68 } 69 echo "<br />";69 echo '<br />'; 70 70 } 71 71 … … 83 83 echo 'NOT OK'; 84 84 } 85 echo '<br />'; 85 86 } else { 86 87 echo 'Could not open db.inc.php config file, or file is empty.<br />'; 87 88 } 89 90 echo '<h3>Checking .ini settings</h3>'; 91 92 $auto_start = ini_get('session.auto_start'); 93 $file_uploads = ini_get('file_uploads'); 94 95 echo "session.auto_start: "; 96 if ($auto_start == 1) { 97 echo 'NOT OK'; 98 } else { 99 echo 'OK'; 100 } 101 echo '<br />'; 102 103 echo "file_uploads: "; 104 if ($file_uploads == 1) { 105 echo 'OK'; 106 } else { 107 echo 'NOT OK'; 108 } 109 echo '<br />'; 88 110 ?>
Note: See TracChangeset
for help on using the changeset viewer.
