1
0
Fork 0
mirror of https://github.com/Oreolek/ifhub.club.git synced 2024-07-03 06:55:03 +03:00
ifhub.club/config/config.ajax.php

30 lines
960 B
PHP
Raw Normal View History

2008-09-21 09:36:57 +03:00
<?
/*-------------------------------------------------------
*
* LiveStreet Engine Social Networking
* Copyright © 2008 Mzhelskiy Maxim
*
*--------------------------------------------------------
*
* Official site: www.livestreet.ru
* Contact e-mail: rus.engine@gmail.com
*
* GNU General Public License, version 2:
* http://www.gnu.org/licenses/old-licenses/gpl-2.0.html
*
---------------------------------------------------------
*/
/**
* Подключает необходимые расширения для работы Аякса
*/
2009-03-21 20:08:51 +02:00
//error_reporting(E_ALL);
2008-09-21 09:36:57 +03:00
define('SYS_HACKER_CONSOLE',false);
require_once("config.php");
require_once(DIR_SERVER_ROOT."/config/config.route.php");
require_once(DIR_SERVER_ROOT."/classes/engine/Router.class.php");
require_once(DIR_SERVER_ROOT."/classes/lib/external/JsHttpRequest/JsHttpRequest.php");
2008-09-21 09:36:57 +03:00
$JsHttpRequest = new JsHttpRequest("UTF-8");
$oEngine=Engine::getInstance();
$oEngine->InitModules();
?>