engelsystem/public/bootstrap.php

11 lines
243 B
PHP
Raw Normal View History

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);
?>