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 の 1 つで同じ統合を行ったところ、問題なく動作します。唯一の違いは、ローカル マシンの FreePBX と Vtiger の両方が同じサーバーに存在することです。
誰かが必要な場合は、構成ファイルを提供します。
任意の提案やアイデアをいただければ幸いです。