18 lines
469 B
PHP
18 lines
469 B
PHP
<?php
|
|
/**
|
|
* RAW Bootstraping
|
|
*
|
|
* @author CRP Henri Tudor - TAO Team - {@link http://www.tao.lu}
|
|
* @license GPLv2 http://www.opensource.org/licenses/gpl-2.0.php
|
|
*/
|
|
if(PHP_SAPI == 'cli'){
|
|
$_SERVER['HTTP_HOST'] = 'http://localhost';
|
|
$_SERVER['DOCUMENT_ROOT'] = dirname(__FILE__).'/../../..';
|
|
}
|
|
|
|
require_once dirname(__FILE__). '/../../tao/includes/class.Bootstrap.php';
|
|
|
|
$bootStrap = new BootStrap('taoAltResultStorage');
|
|
$bootStrap->start();
|
|
?>
|