* @copyright Australian Consortium for Social and Political Research (ACSPRI) 2011 * @package queXS * @subpackage admin * @link http://www.acspri.org.au/ queXS was writen for ACSPRI * @license http://opensource.org/licenses/gpl-2.0.php The GNU General Public License (GPL) Version 2 * */ if (php_sapi_name() !== "cli") { die(); } /** * Configuration file */ include (realpath(dirname(__FILE__) . "/../config.inc.php")); /** * Database file */ include (realpath(dirname(__FILE__) . "/../db.inc.php")); /** * Process */ include (realpath(dirname(__FILE__) . "/../functions/functions.process.php")); //end any other process $p = is_process_running(2); if ($p) { kill_process($p); end_process($p); } start_process(realpath(dirname(__FILE__) . "/../admin/systemsortprocess.php"),2); $p = is_process_running(); if ($p) { kill_process($p); end_process($p); } start_process(realpath(dirname(__FILE__) . "/../admin/process.php")); ?>