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
Mzhelskiy Maxim a1a4dd4889
2009-03-21 18:08:51 +00:00

31 lines
1,015 B
PHP

<?
/*-------------------------------------------------------
*
* 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
*
---------------------------------------------------------
*/
/**
* Подключает необходимые расширения для работы Аякса
*/
//error_reporting(E_ALL);
define('SYS_HACKER_CONSOLE',false);
require_once("config.php");
require_once(DIR_SERVER_ROOT."/config/config.route.php");
require_once(DIR_SERVER_ROOT."/include/function.php");
require_once(DIR_SERVER_ROOT."/classes/engine/Router.class.php");
require_once(DIR_SERVER_ROOT."/classes/lib/external/JsHttpRequest/JsHttpRequest.php");
$JsHttpRequest = new JsHttpRequest("UTF-8");
$oEngine=Engine::getInstance();
$oEngine->InitModules();
?>