give some suggestions back to the user when no config file found, and a link to the installer

This commit is contained in:
Brenda Wallace 2009-10-30 09:17:19 +13:00
parent 2b5a5e02a4
commit 7f5fbee2e3
1 changed files with 8 additions and 1 deletions

View File

@ -185,7 +185,14 @@ function _have_config()
}
// XXX: Throw a conniption if database not installed
// XXX: Find a way to use htmlwriter for this instead of handcoded markup
if (!_have_config()) {
echo '<p>'. _('No configuation file found. ') .'</p>';
echo '<p>'. _('I looked for configuration files in the following places: ') .'<br/> '. implode($_config_files, '<br/>');
echo '<p>'. _('You make wish run the installer to fix this.') .'</p>';
echo '<a href="install.php">'. _('Go to the installer.') .'</a>';
exit;
}
// Fixup for statusnet.ini
$_db_name = substr($config['db']['database'], strrpos($config['db']['database'], '/') + 1);