2011-06-01 14:30:29 +02:00
|
|
|
<?php
|
|
|
|
// path and include settings
|
2014-03-09 13:12:46 +01:00
|
|
|
$rootpath = __DIR__ . DIRECTORY_SEPARATOR . '..';
|
2011-06-01 14:30:29 +02:00
|
|
|
define('ROOTPATH', $rootpath);
|
|
|
|
|
|
|
|
$includePath = ini_get('include_path');
|
2014-03-09 13:12:46 +01:00
|
|
|
$includePath .= PATH_SEPARATOR . ROOTPATH;
|
2011-06-01 14:30:29 +02:00
|
|
|
|
|
|
|
ini_set('include_path', $includePath);
|
2011-07-12 16:03:07 +02:00
|
|
|
?>
|