summaryrefslogtreecommitdiff
path: root/index.php
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2011-12-12 15:19:34 +0400
committerAndrew Dolgov <[email protected]>2011-12-12 15:19:34 +0400
commit9da0e4a2ff84b097cf436b2641fc056315278f55 (patch)
treeb7b7993f3535c9bda9413cbe4ed10ca850c603d1 /index.php
parentfe6d5185d46c06d57d03dba62eb71bd9028e6519 (diff)
fix 500 error on missing config.php
Diffstat (limited to 'index.php')
-rw-r--r--index.php6
1 files changed, 6 insertions, 0 deletions
diff --git a/index.php b/index.php
index 5b5560a9a..76b1d13cf 100644
--- a/index.php
+++ b/index.php
@@ -1,4 +1,10 @@
<?php
+ if (!file_exists("config.php")) {
+ print "<b>Fatal Error</b>: You forgot to copy
+ <b>config.php-dist</b> to <b>config.php</b> and edit it.\n";
+ exit;
+ }
+
set_include_path(get_include_path() . PATH_SEPARATOR . "include");
require_once "functions.php";