p47 - added website courtesy of ectomorfo

This commit is contained in:
steffen123
2008-08-17 07:02:01 +01:00
parent 5a462037c3
commit ea5db15e10
21 changed files with 1650 additions and 1 deletions
+16
View File
@@ -0,0 +1,16 @@
<?php
define('CONFIG', 1);
define('SITE_PATH', str_replace("\\", "/", dirname(__FILE__)).'/');
if ($_SERVER['SERVER_ADDR'] == '127.0.0.1') {
define('DEV_HOST', 1);
define('SITE_URL', 'http://127.0.0.1/fpdb/');
define('PRINT_ERRORS', 1);
} else {
define('DEV_HOST', 0);
define('SITE_URL', 'http://fpdb.sourceforge.net/');
define('PRINT_ERRORS', 0);
}
?>