2
0
mirror of https://github.com/ACSPRI/queXS synced 2024-04-02 12:12:16 +00:00

Fixed path problems

This commit is contained in:
azammitdcarf
2011-01-10 22:30:59 +00:00
parent ff1a5ddf80
commit 831fc50a89

View File

@@ -42,13 +42,16 @@ include (realpath(dirname(__FILE__) . "/../db.inc.php"));
/** /**
* Process * Process
*/ */
include (realpath(dirname(__FILE__) . "/../functions/functions.process.php"); include (realpath(dirname(__FILE__) . "/../functions/functions.process.php"));
//end any other process //end any other process
$p = is_process_running(); $p = is_process_running();
if ($p) end_process($p); if ($p)
{
start_process(realpath(dirname(__FILE__) . "/process.php")); kill_process($p);
end_process($p);
}
start_process(realpath(dirname(__FILE__) . "/../admin/process.php"));
?> ?>