search for: strcallerid

Displaying 8 results from an estimated 8 matches for "strcallerid".

Did you mean: setcallerid
2006 Dec 29
0
PHP to call script
...------- #Should edit some things below this point to make this script work #-------------------------------------------------------------------------------------------- #get the caller's number from the form $strCallerNumber = $_POST['txtcallernumber']; $strChannel = $strCallerNumber; $strCallerId = $strCallerNumber; #get the phone number from the posted form $strExten = $_POST['txtphonenumber']; $callNumber = $strExten; #specify the caller id for the call $strCallerId = "Web will call <$callNumber>"; $length = strlen($strExten); if ($length == 10 && is_n...
2007 Jul 06
1
Asterisk Manager
...fputs($oSocket, "Action: Originate\r\n"); fputs($oSocket, "Channel: $strChannel\r\n"); fputs($oSocket, "WaitTime: $strWaitTime\r\n"); fputs($oSocket, "CallerId: $strCallerId\r\n"); fputs($oSocket, "Context: $strContext\r\n"); fputs($oSocket, "Exten: $strExten\r\n"); fputs($oSocket, "Priority: $strPriority\r\n\r\n");...
2007 Jul 08
1
Asterisk Help
...fputs($oSocket, "Secret: $strSecret\r\n\r\n"); fputs($oSocket, "Action: Originate\r\n"); fputs($oSocket, "Channel: $strChannel\r\n"); fputs($oSocket, "CallerId: $strCallerId\r\n"); fputs($oSocket, "Context: $strContext\r\n"); fputs($oSocket, "Exten: $strExten\r\n"); fputs($oSocket, "Priority: $strPriority\r\n\r\n");...
2011 Feb 13
1
Call Files, Variable passing
...ame: $strUser\r\n"); fputs($oSocket, "Secret: $strSecret\r\n\r\n"); fputs($oSocket, "Action: originate\r\n"); fputs($oSocket, "Channel: $strChannel\r\n"); fputs($oSocket, "WaitTime: $strWaitTime\r\n"); fputs($oSocket, "CallerId: $strCallerId\r\n"); fputs($oSocket, "Exten: 3001\r\n"); fputs($oSocket, "Context: $strContext\r\n"); fputs($oSocket, "Priority: $strPriority\r\n"); fputs($oSocket, "MaxRetries: $strMaxReTry\r\n"); fputs($oSocket, "RetryTime: $strRetryTime\r\n...
2007 Jan 02
5
Call connected, cannot hear or speak - $20 for fix
...#Shouldn't need to edit anything below this point to make this script work #-------------------------------------------------------------------------------------------- #get the phone number from the posted form $strExten = $_POST['txtphonenumber']; #specify the caller id for the call $strCallerId = $_POST['txtcid']; $length = strlen($strExten); if ($length == 11 && is_numeric($strExten)) { $oSocket = fsockopen($strHost, 5038, $errnum, $errdesc) or die("Connection to host failed"); fputs($oSocket, "Action: login\r\n"); fputs($oSocket, "Events: off\r...
2007 Jul 08
1
Early Media Handling
...fputs($oSocket, "Action: Originate\r\n"); fputs($oSocket, "Channel: $strChannel\r\n"); fputs($oSocket, "WaitTime: $strWaitTime\r\n"); fputs($oSocket, "CallerId: $strCallerId\r\n"); fputs($oSocket, "Context: $strContext\r\n"); fputs($oSocket, "Exten: $strExten\r\n"); fputs($oSocket, "Priority: $strPriority\r\n\r\n"); Please help thanks a...
2007 Oct 13
0
Set up two PSTN calls and then join them
...et, "Username: $strUser\r\n"); fputs($oSocket, "Secret: $strSecret\r\n\r\n"); fputs($oSocket, "Action: originate\r\n"); fputs($oSocket, "Channel: $strChannel\r\n"); fputs($oSocket, "WaitTime: $strWaitTime\r\n"); fputs($oSocket, "CallerId: $strCallerId\r\n"); fputs($oSocket, "Exten: $strExten\r\n"); fputs($oSocket, "Context: $strContext\r\n"); fputs($oSocket, "Priority: $strPriority\r\n\r\n"); fputs($oSocket, "Action: Logoff\r\n\r\n"); This simulates one extension calling another and has some l...
2003 Sep 16
10
call center design question
Would like to deploy * in a small help desk environment (five to ten people) using call queues and some sort of CTI interface to pop Remedy screen data in front of the help desk person receiving the call. Data to be popped would be based on CallerID. Anyone doing something similar? Anyone interfacing to an external Remedy system? Any reference sites that I could read/learn more of the