mirror of https://github.com/movim/movim
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
35 lines
603 B
35 lines
603 B
<?php
|
|
|
|
/**
|
|
* @file jajax.php
|
|
* This file is part of MOVIM.
|
|
*
|
|
* @brief This is movim's ajax server.
|
|
*
|
|
* @author Etenil <etenil@etenilsrealm.nl>
|
|
*
|
|
* @version 1.0
|
|
* @date 7 November 2010
|
|
*
|
|
* Copyright (C)2010 MOVIM team
|
|
*
|
|
* See the file `COPYING' for licensing information.
|
|
*/
|
|
|
|
ini_set('log_errors', 1);
|
|
ini_set('display_errors', 0);
|
|
ini_set('error_reporting', E_ALL ^ E_DEPRECATED ^ E_NOTICE);
|
|
ini_set('error_log', 'log/php.log');
|
|
|
|
require("init.php");
|
|
|
|
set_time_limit(200);
|
|
|
|
$polling = true;
|
|
|
|
$rpc = new RPC();
|
|
$rpc->handle_json();
|
|
|
|
// Closing stuff
|
|
WidgetWrapper::destroyInstance();
|
|
?>
|