Fixed bug suppressing any output when mysql is not installed/enabled.
(cherry picked from commit 9f9861ad20
)
This commit is contained in:
parent
2dcc1d96db
commit
a1c77c3d17
22
test.php
22
test.php
@ -43,19 +43,21 @@
|
||||
// Database
|
||||
title('Database');
|
||||
|
||||
if($sql = @mysql_connect(MY_SERVER, MY_USER, MY_PASSWORD)) {
|
||||
$body .= check('Connection to server.', 'ok');
|
||||
if(@mysql_select_db(MY_DATABASE, $sql))
|
||||
$body .= check('Select database.', 'ok');
|
||||
else {
|
||||
$body .= check('Select database.', 'error');
|
||||
if(extension_loaded('mysql')) {
|
||||
if($sql = @mysql_connect(MY_SERVER, MY_USER, MY_PASSWORD)) {
|
||||
$body .= check('Connection to server.', 'ok');
|
||||
if(@mysql_select_db(MY_DATABASE, $sql))
|
||||
$body .= check('Select database.', 'ok');
|
||||
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.';
|
||||
}
|
||||
} else {
|
||||
$body .= check('Connection to server.', 'error');
|
||||
$todo[] = 'instance-config.php: Check database configuration.';
|
||||
}
|
||||
|
||||
|
||||
// Configuration
|
||||
title('Configuration');
|
||||
$root = dirname($_SERVER['REQUEST_URI']) . (dirname($_SERVER['REQUEST_URI']) == '/' ? '' : '/');
|
||||
|
Loading…
Reference in New Issue
Block a user