Does anyone know where web call back has it’s database? This can’t can’t possibly be all flat-files??
I’ve never done any development with this module, but as far as i know, all config is stored in mysql. It’s possible there may be something in ASTDB.
MariaDB [asterisk]> describe asterisk.webcallback;
+--------------+--------------+------+-----+---------+----------------+
| Field | Type | Null | Key | Default | Extra |
+--------------+--------------+------+-----+---------+----------------+
| id | int(11) | NO | PRI | NULL | auto_increment |
| name | varchar(50) | YES | | NULL | |
| dest | varchar(150) | YES | | NULL | |
| cidprepend | varchar(25) | YES | | NULL | |
| numprepend | varchar(50) | YES | | NULL | |
| accountcode | int(11) | YES | | NULL | |
| button_attr | longtext | YES | | NULL | |
| dialpad_attr | longtext | YES | | NULL | |
| patterns | longtext | YES | | NULL | |
| error_msg | longtext | YES | | NULL | |
| valid_msg | longtext | YES | | NULL | |
| invalid_msg | longtext | YES | | NULL | |
| icon | varchar(25) | YES | | NULL | |
+--------------+--------------+------+-----+---------+----------------+
13 rows in set (0.00 sec)
I don’t think anything outside of what lorne posted is stored. It has been many years but I believe outside of the settings everything is generated on the fly. Perhaps you could tell us what you are trying to find
@lgaetz is right, this is it. I know because I “highjacked” the table to do my own callback assist solution. I wanted to opt people into a callback list from an IVR prompt and this saved me having to do the actual callback logic (instead, I just added users to this table).
Eventually my knowledge matured and @jfinstrom and @dicko got me educated enough to do callfiles with the touch command, which was way more efficient (server could handle way more callbacks this way).
Lorne, any idea if webcall back has one table or row per web call back entry? I think that’s where I may find what I’m looking for.
Well, James, I’ve been working with Joseph over at Sangoma at it appears all of my web call back “entries” are dialing out my first entry, or “department 1”, then each should be dialing it’s own specfied number from the MISC destinations drop down where you can specific a description and the number to be called.
so you’ve added the data in a flat fire structure?
Correct, each document = one call back
is it stored in a flat file? is so do you know where?
thanks for that. half the battle is finding the information.!
This topic was automatically closed 31 days after the last reply. New replies are no longer allowed.