From 190e97e88624b4b42ad677c7446c0d5a0b7b17a6 Mon Sep 17 00:00:00 2001 From: thomascube Date: Tue, 26 Feb 2008 09:10:07 +0000 Subject: Fix database initialization and check write access on the DB; update INSTALL instructions --- installer/test.php | 50 ++++++++++++++++++++++++++++++-------------------- 1 file changed, 30 insertions(+), 20 deletions(-) (limited to 'installer/test.php') diff --git a/installer/test.php b/installer/test.php index 783cf3c1b..b782a5c44 100644 --- a/installer/test.php +++ b/installer/test.php @@ -49,12 +49,14 @@ if (!empty($RCI->config)) { $DB->db_connect('w'); if (!($db_error_msg = $DB->is_error())) { $RCI->pass('DSN (write)'); + echo '
'; $db_working = true; } else { - $RCI->fail('DSN (write)', "Error: $db_error_msg"); + $RCI->fail('DSN (write)', $db_error_msg); + echo '

Make sure that the configured database extists and that the user as write privileges
'; + echo 'DSN: ' . $RCI->config['db_dsnw'] . '

'; } - echo '
'; } else { $RCI->fail('DSN (write)', 'not set'); @@ -66,34 +68,43 @@ else { // initialize db with schema found in /SQL/* if ($db_working && $_POST['initdb']) { - $engine = preg_match('/^([a-z]+):/i', $RCI->config['db_dsnw'], $regs) ? $regs[1] : 'mysql'; - $fname = '../SQL/' . ($engine == 'pgsql' ? 'postgres' : $engine) . '.initial.sql'; - if ($sql = @file_get_contents($fname)) { - $DB->query($sql); - } - else { - $RCI->fail('DB Schema', "Cannot read the schema file: $fname"); - } - - if ($err = $RCI->get_error()) { - $RCI->fail('DB Schema', "Error creating database schema: $err"); + if (!($success = $RCI->init_db($DB))) { $db_working = false; - echo '

Please try to inizialize the database manually as described in the INSTALL guide.

'; - echo '
'; + echo '

Please try to inizialize the database manually as described in the INSTALL guide. + Make sure that the configured database extists and that the user as write privileges

'; } } +// test database if ($db_working) { - $success = $DB->query("SELECT count(*) FROM {$RCI->config['db_table_users']}"); - if (!$success) { + $db_read = $DB->query("SELECT count(*) FROM {$RCI->config['db_table_users']}"); + if (!$db_read) { $RCI->fail('DB Schema', "Database not initialized"); + $db_working = false; echo '

'; } else { $RCI->pass('DB Schema'); } echo '
'; +} + +// more database tests +if ($db_working) { + // write test + $db_write = $DB->query("INSERT INTO {$RCI->config['db_table_cache']} (session_id, cache_key, data, user_id) VALUES (?, ?, ?, 0)", '1234567890abcdef', 'test', 'test'); + $insert_id = $DB->insert_id($RCI->config['db_sequence_cache']); + if ($db_write && $insert_id) { + $RCI->pass('DB Write'); + $DB->query("DELETE FROM {$RCI->config['db_table_cache']} WHERE cache_id=?", $insert_id); + } + else { + $RCI->fail('DB Write', $RCI->get_error()); + } + echo '
'; + + // check timezone settings $tz_db = 'SELECT ' . $DB->unixtimestamp($DB->now()) . ' AS tz_db'; $tz_db = $DB->query($tz_db); $tz_db = $DB->fetch_assoc($tz_db); @@ -104,13 +115,12 @@ if ($db_working) { // sometimes db and web servers are on separate hosts, so allow a 30 minutes delta if (abs($tz_diff) > 1800) { $RCI->fail('DB Time', "Database time differs {$td_ziff}s from PHP time"); - } else { + } + else { $RCI->pass('DB Time'); } - } - ?>

[@todo Add tests for IMAP and SMTP settings]

-- cgit v1.2.3