diff options
author | thomascube <thomas@roundcube.net> | 2008-03-03 21:32:15 +0000 |
---|---|---|
committer | thomascube <thomas@roundcube.net> | 2008-03-03 21:32:15 +0000 |
commit | 807d17a4bedae6d2ebc2eda3236fe1740422b3ba (patch) | |
tree | b9e49a1e1570418c420c253b9d1e0c1d5f484b49 /installer/test.php | |
parent | faebf41a82658efdb6c023e7c738aa024e9a07be (diff) |
Make rcube_install class PHP4 compatible + add warning for MDB2 on PHP4 + set MDB2 as default
Diffstat (limited to 'installer/test.php')
-rw-r--r-- | installer/test.php | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/installer/test.php b/installer/test.php index d83534bb3..7e9903991 100644 --- a/installer/test.php +++ b/installer/test.php @@ -55,6 +55,8 @@ if (!empty($RCI->config)) { $RCI->fail('DSN (write)', $db_error_msg); echo '<p class="hint">Make sure that the configured database extists and that the user as write privileges<br />'; echo 'DSN: ' . $RCI->config['db_dsnw'] . '</p>'; + if ($RCI->config['db_backend'] == 'mdb2') + echo '<p class="hint">There are known problems with MDB2 running on PHP 4. Try setting <tt>db_backend</tt> to \'db\' instead</p>'; } } else { |