diff options
author | Christian Weiske <cweiske@cweiske.de> | 2010-08-22 01:26:30 +0200 |
---|---|---|
committer | Christian Weiske <cweiske@cweiske.de> | 2010-08-22 01:26:30 +0200 |
commit | f93aa6c7aceeb7ed9ea899cfe232b3bd097b2422 (patch) | |
tree | 8ea92787b9b24f7345db8a8ca33f4384aefd0a02 /src | |
parent | aba3327b5b8beffea75687a11ccf034f5e0d0969 (diff) | |
download | semanticscuttle-f93aa6c7aceeb7ed9ea899cfe232b3bd097b2422.tar.gz semanticscuttle-f93aa6c7aceeb7ed9ea899cfe232b3bd097b2422.tar.bz2 |
make files use pear directories
Diffstat (limited to 'src')
-rw-r--r-- | src/SemanticScuttle/header.php | 17 |
1 files changed, 14 insertions, 3 deletions
diff --git a/src/SemanticScuttle/header.php b/src/SemanticScuttle/header.php index ef36e83..bc60088 100644 --- a/src/SemanticScuttle/header.php +++ b/src/SemanticScuttle/header.php @@ -14,9 +14,21 @@ * @license GPL http://www.gnu.org/licenses/gpl.html * @link http://sourceforge.net/projects/semanticscuttle */ -if (!file_exists(dirname(__FILE__) .'/../../data/config.php')) { + +if ('@data_dir@' == '@' . 'data_dir@') { + //non pear-install + $datadir = dirname(__FILE__) . '/../../data/'; +} else { + //pear installation; files are in include path + $datadir = '@data_dir@'; +} + +if (!file_exists($datadir . '/config.php')) { header('HTTP/1.0 500 Internal Server Error'); - die('Please copy "config.php.dist" to "config.php" in data/ folder.'); + die( + 'Please copy "config.php.dist" to "config.php" in data/ folder.' + . "\n" + ); } set_include_path( get_include_path() . PATH_SEPARATOR @@ -24,7 +36,6 @@ set_include_path( ); // 1 // First requirements part (before debug management) -$datadir = dirname(__FILE__) . '/../../data/'; require_once $datadir . '/config.default.php'; require_once $datadir . '/config.php'; |