XAMPP needs more specific path

Possibly because index.php is calling lib/settings.php and this in turn
is calling config.php from it's location. Most web servers know you're
calling from the same dir but maybe XAMPP is thinking config.php should
be included from the index.php location? Anyway, fixed with a more
specific path.
This commit is contained in:
Matt Pass
2013-03-01 16:23:10 +00:00
parent 1fe5e6ad8e
commit 61c6270edd

View File

@@ -47,7 +47,7 @@ if (!file_exists(dirname(__FILE__)."/".$settingsFile)) {
die("Couldn't create $settingsFile. Maybe you need write permissions on the lib folder?");
}
}
include($settingsFile);
include(dirname(__FILE__)."/".$settingsFile);
// Add ICEcoder settings to beginning of $ICEcoder array
$ICEcoder = array(