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