2
0
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:
azammitdcarf
2008-12-02 05:27:52 +00:00
parent 638df6df7f
commit 43d29af65d

View File

@@ -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