summaryrefslogtreecommitdiff
path: root/lib/common.php
diff options
context:
space:
mode:
authorBrenda Wallace <shiny@cpan.org>2009-10-30 10:03:25 +1300
committerBrenda Wallace <shiny@cpan.org>2009-10-30 10:03:25 +1300
commitf1daca16e2f34cce7d25cb1dbe144fc027fcc1fd (patch)
treef2daab5b0a5243e78028382f30644e875aea5d7d /lib/common.php
parentd5951ebce69b9b98d0425b7c7aabc2061d6b9ea8 (diff)
give some suggestions back to the user when no config file found, and a link to the installer
Diffstat (limited to 'lib/common.php')
-rw-r--r--lib/common.php9
1 files changed, 8 insertions, 1 deletions
diff --git a/lib/common.php b/lib/common.php
index e29456ed4..2c2f6869e 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 '<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 may wish to 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);