- Joined
- Jun 24, 2021
- Messages
- 62
- Reaction score
- 6
Hello guys,
we are still running version 18 SP 9, and obvously want to upgrade to 20. We are kinda very dependent on 3CX and all integrations, features etc. so because of that I ve set testing envioronment (free one) to see how especially journaling will be working, as we do have other important services dependent on it.
I ve set exactly the same setup for journaling (using default MySql template) but from uknown reason its still not feeding data into the database, once I am trying to test, it returns nothing back (logs etc)
Running MySql 5.7
Here is my the lookup by number sql statement:
Call journaling statement:
As I stated before this setup works correctly on ver 18, however not working on testing ver 20.
Maybe anyone know how to adjust select and insert query?
we are still running version 18 SP 9, and obvously want to upgrade to 20. We are kinda very dependent on 3CX and all integrations, features etc. so because of that I ve set testing envioronment (free one) to see how especially journaling will be working, as we do have other important services dependent on it.
I ve set exactly the same setup for journaling (using default MySql template) but from uknown reason its still not feeding data into the database, once I am trying to test, it returns nothing back (logs etc)
Running MySql 5.7
Here is my the lookup by number sql statement:
Code:
SELECT 1 contactid, 'Ignore' firstname, 'Ignore' lastname, '' as email,'[Number]' as phonebusiness, '[Number]' as phonemobile, '[Number]' as faxbusiness
Call journaling statement:
Code:
INSERT INTO 3cx_journaling (CallType, Number, Agent, Duration, CallStartTimeLocal, CallEndTimeLocal, CallStartTimeUTC, CallEndTimeUTC) VALUES ('[CallType]','[Number]','[Agent]','[Duration]','[[CallStartTimeLocal].ToString("yyyy-MM-dd HH:mm:ss")]','[[CallEndTimeLocal].ToString("yyyy-MM-dd HH:mm:ss")]','[[CallStartTimeUTC].ToString("yyyy-MM-ddTHH:mm:ssZ")]','[[CallEndTimeUTC].ToString("yyyy-MM-ddTHH:mm:ssZ")]')
As I stated before this setup works correctly on ver 18, however not working on testing ver 20.
Maybe anyone know how to adjust select and insert query?
