mirror of
https://github.com/ACSPRI/queXS
synced 2024-04-02 12:12:16 +00:00
Specific path required when run in background
This commit is contained in:
@@ -32,22 +32,22 @@
|
|||||||
/**
|
/**
|
||||||
* Configuration file
|
* Configuration file
|
||||||
*/
|
*/
|
||||||
include ("../config.inc.php");
|
include (dirname(__FILE__) . "/../config.inc.php");
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Database file
|
* Database file
|
||||||
*/
|
*/
|
||||||
include ("../db.inc.php");
|
include (dirname(__FILE__) . "/../db.inc.php");
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Process
|
* Process
|
||||||
*/
|
*/
|
||||||
include ("../functions/functions.process.php");
|
include (dirname(__FILE__) . "/../functions/functions.process.php");
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* VoIP functions
|
* VoIP functions
|
||||||
*/
|
*/
|
||||||
include("../functions/functions.voip.php");
|
include(dirname(__FILE__) . "/../functions/functions.voip.php");
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Update the database with the new data from the running script
|
* Update the database with the new data from the running script
|
||||||
|
|||||||
Reference in New Issue
Block a user