diff --git a/setup.php b/setup.php
index 62e1a287..2a927b13 100644
--- a/setup.php
+++ b/setup.php
@@ -113,6 +113,16 @@ if ($file_config == 1)
print "
Depends on: presence config.inc.php - OK\n";
require_once('config.inc.php');
$config_loaded = 1;
+
+ require('config.inc.php');
+ if(isset($CONF['configured'])) {
+ if($CONF['configured'] == TRUE) {
+ print "Checking \$CONF['configured'] - OK\n";
+ } else {
+ print "Error: \$CONF['configured'] is 'false'.
\n";
+ print "Please edit your config.inc.php settings and then change it.\n";
+ }
+ }
}
else
{