Author

Lalit Nayyar

Configuring Multiple Asterisk boxes

June 3, 2016

We know configuring asterisk with multiple pbx’s can be a challenge, but we show you how to make it easy using FreePBX, friend trunking, outbound routes, custom dialplan,…

Solved: Beginning of IVR Message Cut off

June 3, 2016

Problem: When calling an inbound line, the first part of the message is chopped off. Answer: When using IVR’s in FreePBX, cutoff messages rarely happen, because it configures…

How to monitor certain Queues with Chanspy

June 3, 2016

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,…

Introduction to CodeIgniter Basic With CRUD

May 10, 2016

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 IN SUGARCRM GOOD NOTES

May 9, 2016

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…

SOAP Connectivity to Sugarcrm PHP Code

May 6, 2016

<?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’ =>…

How to insert a record in MySQL with PHP

May 6, 2016

Read more: http://mrbool.com/how-to-insert-a-record-in-mysql-with-php/28621#ixzz47s0C2cqJ Requirements for techniques: We will require in this article to create a simple contact page for a website, i.e. HTML 5 CSS 3 PHP MySQL…

How to create a Sign Up form registration with PHP and MySQL

May 6, 2016

Read more: http://mrbool.com/how-to-create-a-sign-up-form-registration-with-php-and-mysql/28675#ixzz47rznG0YC   Much of the websites have a registration form for your users to sign up and thus may benefit from some kind of privilege within…