We've Moved! Please visit our new and improved forum over at our new portal: https://portal.plumvoice.com/hc/en-us/community/topics
Custom Logs
-
- Posts: 50
- Joined: Wed Oct 04, 2006 1:34 pm
- Location: SOCAL
- Contact:
Custom Logs
Is there a way I can make custom logs based off my responses from php.
IVR example needed for creating logs/responses
Hi,
Can you provide a little more detail, or a simple IVR example? What types of IVR logs/responses are you interested in?
Regards,
Plum Support
Can you provide a little more detail, or a simple IVR example? What types of IVR logs/responses are you interested in?
Regards,
Plum Support
Last edited by support on Sat Feb 20, 2010 4:08 pm, edited 2 times in total.
-
- Posts: 50
- Joined: Wed Oct 04, 2006 1:34 pm
- Location: SOCAL
- Contact:
use <log> tag in vxml code for IVR session logs
Hi,
Creating a single-purpose custom log file on a Plum IVR server is not possible, since we do not allow direct access to the IVR file system on our IVR hosting site(s).
You could theoretically use the <log> tag in your vxml code to log data/statements to the IVR session logs (accessible via the Session logs link). E.g.:
<form id="doSomeLogging">
<block>
<log>this data will appear in the session log</log>
</block>
</form>
But there is other data in these logs too, so you would have to parse out your own data.
Your best and cleanest bet is to just log to a file on your own IVR server.
Regards,
Plum Support
Creating a single-purpose custom log file on a Plum IVR server is not possible, since we do not allow direct access to the IVR file system on our IVR hosting site(s).
You could theoretically use the <log> tag in your vxml code to log data/statements to the IVR session logs (accessible via the Session logs link). E.g.:
<form id="doSomeLogging">
<block>
<log>this data will appear in the session log</log>
</block>
</form>
But there is other data in these logs too, so you would have to parse out your own data.
Your best and cleanest bet is to just log to a file on your own IVR server.
Regards,
Plum Support