Category : Sugarcrm

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 its Web Service Description Language (WSDL) file, which simply provides the definitions of all available methods to the client. One of the biggest attractions to using SOAP ..

Read more

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 your apache bin folder, I.e Apache/bin/php.ini Remove the ; from the beginning of extension=php_soap.dll Restart your Apache server Look up your phpinfo(); again and check if you ..

Read more

<?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’ => “0.1” ), “application_name” => ” ) ); $session_id = $response->id; echo “session_id=$session_id\n”; // CREATE ACCOUNT $response = $client->set_entry($session_id, ‘Accounts’, array( array(‘name’ => ‘name’, ‘value’ => “Account Test ..

Read more

Download the latest version of SugarCRM Community Edition available at http://sourceforge.net/projects/sugarcrm/files/ to the ‘/opt’ directory on the server. Then, extract it and move the SugarCRM files and directories to the ‘/var/www/html/sugar’ directory. At the time of writing this tutorial, the latest stable version of SugarCRM Community Edition is 6.5.20. cd /opt/ wget http://sourceforge.net/projects/sugarcrm/files/latest/download -O SugarCE-6.5.20.zip ..

Read more

Using SugarCRM as an authentication system Demo available : you can now directly test what’s explained in this article. A demo is available here. Introduction Here we are again with this series of articles about SugarCRM integration. This time we’ll explore the use of sugar as authentication system and user manager for custom PHP applications. ..

Read more

documentation about exposed SOAP functions. This time the SOAP methods we’re interested in are: login, to log in into sugar crm get_entry_list to query sugar crm and get lists of Contacts,Accounts etc. To access SOAP functionalities from PHP we’ll use the nusoap library, which does not require any special PHP extension. We’re now going to ..

Read more

SugarCRM integration and Apache Axis The most read articles here on beanizer.org are with no doubt those related to SugarCRM integration. Up to now our articles have focused on integrating with PHP,  but following some readers’ request, starting from this article we’ll talk about integrating SugarCRM with Java. Though Java has strong and long lasting ..

Read more

Opening a customer SugarCRM page in the browser on incoming calls Introduction Here comes the really interesting part, as this is what most readers have been asking for lately. The feature lots of people seem to be interested in is the possibility of , on an inbound asterisk call,  opening/redirecting the browser to the specific ..

Read more