Thank you.
I also enabled the general log on MySql and did find the selects there, verifying that my account is correct and logging in.
What I don't see is any activity relating to the Call Journaling. I have it enabled, and my sql statement is:
SQL:
INSERT INTO calls (contactnumber, agentextension, description, calldatetime, callduration) VALUES ('[Number]', '[Agent]', '3CX PhoneSystem Call', '[DateTime]', '[Duration]');
A
Bash:
grep -i -e"insert into calls" *
in /var/lib/3cxpbx/Instance1/Data/Logs finds nothing. Any ideas?
Also, although I said the select was working, the test for it has issues. My sql query is:
SQL:
SELECT contacts.id as contactid, first_name as firstname, last_name as lastname, '' as email, '' as phonebusiness, '' as phonemobile, '' as faxbusiness FROM contacts inner join phone_numbers phone on phone.contact_id = contacts.id where contacts.intranet_id in (1, 28) and contacts.dod is null and replace(phone.number,'-','') like '%[Number]%' limit 1;
The results indicate that no record was found, yet proper results show in the text that follows. I also noticed that it truncates my search term "3237700" to only 6 characters instead of the 7 I submitted. Adding the area code still results in a submission of 6 characters.
View attachment 10071