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 faaac90f3a
2009-06-23 21:35:20 +00:00

32 lines
1 KiB
PHP

<?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."/classes/engine/Router.class.php");
require_once(DIR_SERVER_ROOT."/classes/lib/external/JsHttpRequest/JsHttpRequest.php");
$JsHttpRequest = new JsHttpRequest("UTF-8");
$oRouter=Router::getInstance();
$oEngine=Engine::getInstance();
$oEngine->InitModules();
$oEngine->Security_ValidateSendForm();
?>