blob: 2b8e6abaa89bb400d79ef374d067b368ec0a98e7 (
plain)
1
2
3
4
5
6
7
8
9
10
|
<?php
// path and include settings
$rootpath = __DIR__ . DIRECTORY_SEPARATOR . '..';
define('ROOTPATH', $rootpath);
$includePath = ini_get('include_path');
$includePath .= PATH_SEPARATOR . ROOTPATH;
ini_set('include_path', $includePath);
?>
|