Browse Source

Fixed bug suppressing any output when mysql is not installed/enabled.

(cherry picked from commit 9f9861ad20)
pull/40/head
Savetheinternet 14 years ago
committed by Paul Merrill
parent
commit
a1c77c3d17
  1. 22
      test.php

22
test.php

@ -43,19 +43,21 @@
// Database // Database
title('Database'); title('Database');
if($sql = @mysql_connect(MY_SERVER, MY_USER, MY_PASSWORD)) { if(extension_loaded('mysql')) {
$body .= check('Connection to server.', 'ok'); if($sql = @mysql_connect(MY_SERVER, MY_USER, MY_PASSWORD)) {
if(@mysql_select_db(MY_DATABASE, $sql)) $body .= check('Connection to server.', 'ok');
$body .= check('Select database.', 'ok'); if(@mysql_select_db(MY_DATABASE, $sql))
else { $body .= check('Select database.', 'ok');
$body .= check('Select database.', 'error'); else {
$body .= check('Select database.', 'error');
$todo[] = 'instance-config.php: Check database configuration.';
}
} else {
$body .= check('Connection to server.', 'error');
$todo[] = 'instance-config.php: Check database configuration.'; $todo[] = 'instance-config.php: Check database configuration.';
} }
} else {
$body .= check('Connection to server.', 'error');
$todo[] = 'instance-config.php: Check database configuration.';
} }
// Configuration // Configuration
title('Configuration'); title('Configuration');
$root = dirname($_SERVER['REQUEST_URI']) . (dirname($_SERVER['REQUEST_URI']) == '/' ? '' : '/'); $root = dirname($_SERVER['REQUEST_URI']) . (dirname($_SERVER['REQUEST_URI']) == '/' ? '' : '/');

Loading…
Cancel
Save