From: Brenda Wallace Date: Thu, 29 Oct 2009 20:17:19 +0000 (+1300) Subject: give some suggestions back to the user when no config file found, and a link to the... X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=7f5fbee2e36889fae1d1c5043d76625e197e39ea;p=quix0rs-gnu-social.git give some suggestions back to the user when no config file found, and a link to the installer --- diff --git a/lib/common.php b/lib/common.php index e29456ed4e..667826f395 100644 --- a/lib/common.php +++ b/lib/common.php @@ -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 '

'. _('No configuation file found. ') .'

'; + echo '

'. _('I looked for configuration files in the following places: ') .'
'. implode($_config_files, '
'); + echo '

'. _('You make wish run the installer to fix this.') .'

'; + echo ''. _('Go to the installer.') .''; + exit; +} // Fixup for statusnet.ini $_db_name = substr($config['db']['database'], strrpos($config['db']['database'], '/') + 1);