我已将 FreePBX 与 Vtiger (PBXManager) 集成,我已使用此步骤进行集成https://wiki.vtiger.com/vtiger6/index.php/Asterisk_Integration
在我的设置中,FreePBX 和 Vtiger 都在不同的服务器上。
通话工作正常,但通话状态和其他数据未在 Vtiger 中更新。即使在通话挂断后,它也会在通话状态字段中显示振铃,如果我转到详细视图,它会将我的录音 URL 显示为空白。
这是我在nohup.webapp.log
文件中获取的日志
VtigerAsteriskConnector.properties
/*
* Copyright (C) www.vtiger.com. All rights reserved.
* @license Proprietary
*/
// Location where the application server will be running.
ServerIP = 127.0.0.1
ServerPort = 8383
// Call Recordings storage path
StorageDir = /VtigerAsteriskConnector/recordings
// Enable(true) or Disable(false) call recordings
Recording = true
// Location where the applications database files will be stored.
AsteriskAppDBPath = /VtigerAsteriskConnector/db
// Asterisk Server Details
AsteriskServerPublicIP = asterisk-server-public-ip
AsteriskServerIP = 127.0.0.1
AsteriskServerPort = 5038
AsteriskUsername = vtiger
AsteriskPassword = 5c11bea0b374299c2c70e09b4734a670
// Vtiger CRM URL
VtigerURL = http://vtigercrm.url.com
VtigerSecretKey = 167523039v54f1v677c2231
//Enable(true) or Disable(false) Asterisk Events and Database Logs in Connector
AsteriskLog = true
DatabaseLog = true
这似乎与asterisk-java
我的库有关,但我不确定,我已经在我的一个本地 VM 中进行了相同的集成,它可以正常工作,唯一的区别是我的本地计算机 FreePBX 和 Vtiger 都驻留在同一台服务器上。
如果有人需要,我会提供配置文件。
任何建议和想法将不胜感激。