How to monitor certain Queues with Chanspy
In this installment of hackrr.com, we are going to talk about listening to specific queues with FreePBX. Previously, we showed you how to How to barge with freepbx,…
In this installment of hackrr.com, we are going to talk about listening to specific queues with FreePBX. Previously, we showed you how to How to barge with freepbx,…
If you are running a call center on FreePBX or Asterisk, most likely you will want the ability to listen in on agents calls, also known as joining…
;This context is used to handle all outbound calls. [test-outbound] exten => 56782,1,Answer() exten => 56782,n,Playback(hello-world) exten => 56782,n,Goto(outbound-allroutes,${EXTEN},1) ;This context is used to handle all inbound calls.…
Call Management SLNO Command Description Command Functions Notes 1 Answer Answer() 2 Hangup Hangup() 3 Dial Dial() 4 SoftHangup SoftHangup() 5 Busy Busy() 6 Congestion Congestion() 7…
Here is a list of all the commands that you can use in your Dialplan(extensions.conf). Obtaining a list of available applications in the CLI Asterisk 1.4 or earlier:…
Introduction to CodeIgniter Basic With CRUD CodeIgniter (CI) is one of popular php framework. If you are already building PHP Application, CodeIgniter will help you to do it…
SOAP SOAP is probably the most used Web Services protocol. It provides a way of exchanging structured information of application functionality. A SOAP interface can be defined by…
Convert and Loop through JSON with PHP and JavaScript Arrays/Objects September 30, 2014 by Jonathan Suh If you’re working with JSON (JavaScript Object Notation) and either need to…
Diagnose Look up the following inside your script file phpinfo(); If you can’t find Soap Client set to enabled like so: Fix Do the following: Locate php.ini in…
<?php $client = new SoapClient(“http://192.168.1.27/soap.php?wsdl”, array(“trace” => 1, “exception” => 0)); // LOGIN $response = $client->__soapCall(“login”, array( “user_auth” => array( ‘user_name’ => ‘user’, ‘password’ => md5(‘bitnami’), ‘version’ =>…