X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=lib%2Fcommon.php;h=2c2f6869eefc3d26bcaee413a7d1405a8055b591;hb=acaf07f6e8c873e0069e84dac74bac3c7da98a97;hp=e29456ed4e9d2345fbcb3ac76916d4fa0e28edbb;hpb=0bbc05c1d57b0471c1d1f33ad0d1e00cd7d57e5c;p=quix0rs-gnu-social.git diff --git a/lib/common.php b/lib/common.php index e29456ed4e..2c2f6869ee 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 may wish to 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);