FreeSwitch - 它不使用xml_mod_curl连接MySQL数据库

时间:2014-02-13 07:53:30

标签: freeswitch

安装FreeSwitch后,我尝试使用xml_mod_curl连接用户帐户。我按照下面的说明连接MySQL数据库。

http://saevolgo.blogspot.kr/2012/07/freeswitch-with-sip-users-in-mysql-mod.html

我可以看到它实际上读取了用1000-1019用户名登录SIP帐户的XML。但是,它看起来并不像是连接MySQL数据库。我没有登录MySQL列中保存的新用户和新密码。

这是global_defines.php

if (basename($_SERVER['PHP_SELF']) == basename(__FILE__)) {
    header('Location: index.php');
}

/**
 * Defines the default dsn for the FS_PDO class
 */
define('DEFAULT_DSN', 'mysql:dbname=FS_DB;host=127.0.0.1');
/**
 * Defines the default dsn login for the PDO class
 */
define('DEFAULT_DSN_LOGIN', 'root');
/**
 * Defines the default dsn password for the PDOclass
 */
define('DEFAULT_DSN_PASSWORD', 'mypassword');
/**
 * Generic return success
 */
define('FS_CURL_SUCCESS', 0);
/**
 * Generic return success
 */
define('FS_SQL_SUCCESS', '00000');
/**
 * Generic return warning
 */
define('FS_CURL_WARNING', 1);
/**
 * Generic return critical
 */
define('FS_CURL_CRITICAL', 2);

/**
 * determines how the error handler handles warnings
 */
define('RETURN_ON_WARN', true);

/**
 * Determines whether or not users should be domain specific
 * If GLOBAL_USERS is true, user info will be returned for whatever
 * domain is passed.....
 * NOTE: using a1 hashes will NOT work with this setting
 */
define('GLOBAL_USERS', false);

说明文章写于2年前。似乎应该有一个选项来打开My-SQL连接。我错过了什么吗?

0 个答案:

没有答案