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

Added freepbx 2.8.0 integration functions

Added htpasswd integration functions
Adding an operator can now add a freepbx extension and/or a password for apache htpasswd authentication
Adding a client can now add a password for apache htpasswd authentication
Updated template for ACSPRI
Added .htaccess files by default
This commit is contained in:
azammitdcarf
2010-12-22 04:51:51 +00:00
parent eb743c2f9b
commit 7cd1a21d84
9 changed files with 796 additions and 13 deletions

View File

@@ -89,6 +89,16 @@ if (!defined('VOIP_ADMIN_PASS')) define('VOIP_ADMIN_PASS','amp111');
*/
if (!defined('VOIP_PORT')) define('VOIP_PORT','5038');
/**
* The freepbx root path (if installed) otherwise false to disable freepbx integration
*/
if (!defined ('FREEPBX_PATH')) define('FREEPBX_PATH', false);
/**
* The freepbx database name
*/
if (!defined ('FREEPBX_DATABASE')) define('FREEPBX_DATABASE', 'asterisk');
/**
* The meet me room id for the VOIP Server
*/
@@ -146,6 +156,32 @@ if (!defined('PHP_EXEC')) define('PHP_EXEC', "php");
*/
if (!defined('ADODB_PATH')) define('ADODB_PATH',dirname(__FILE__).'/../adodb/');
/**
* Path to the HTPASSWD file read/writable by the web server user for htpasswd integration
*/
if (!defined('HTPASSWD_PATH')) define('HTPASSWD_PATH',false);
/**
* Path to the HTGROUP file read/writable by the web server user for htpasswd integration
*/
if (!defined('HTGROUP_PATH')) define('HTGROUP_PATH',false);
/**
* The name of the admin group for htaccess
*/
if (!defined('HTGROUP_ADMIN')) define('HTGROUP_ADMIN','admin');
/**
* The name of the interviewers group for htaccess
*/
if (!defined('HTGROUP_INTERVIEWER')) define('HTGROUP_INTERVIEWER','interviewers');
/**
* The name of the clients group for htaccess
*/
if (!defined('HTGROUP_CLIENT')) define('HTGROUP_CLIENT','clients');
/**
* Database configuration for queXS
*/