Category: Salesforce
PHP | Clone arrays containing objects
In PHP you need deep cloning to clone arrays containing objects. Suppose we have $cold_items as an array of objects. To clone it appropriately so that while changing the values in one array does not impact the other one, use
Java | Shallow and Deep comparison of objects
There are two types of object comparison in java – shallow and deep. when you use ‘==’ operator, you are comparing the references for equality. It means you are comparing memory addresses of the objects. It is called shallow comparison.
Call third party JSON webservice in cakephp 3.0
To call third-party web service in CakePHP 3.0. You can use Http client available in CakePHP core lib (CakeNetworkHttpClient). Include CakeNetworkHttpClient in your controller. use CakeNetworkHttpClient; Here is the method to call third-party web service. You can use this method
Cakephp | URL routing using prefix after domain name
Routes in an application are configured in app/Config/routes.php. Defining your own routes allows you to define where your application will take the control to for a given URL. Default routing is like this: domain/controller/action Ex. www.xyz.com/user/login Prefix routing will add
Firefox not responding
If you are trying to open a URL in Firefox but it is into long loading cycle and eventually stops responding, then you can try solution given here. This issue can be caused by corrupt cookies or cache. In order
Moodle / PHP | The uploaded file exceeds the upload_max_filesize directive in php.ini
How to increase the value of ‘upload_max_filesize’ variable to upload a file/plugin of larger size. We were trying to install a new plugin with size of approx 3.5 mb in our moodle site. It was showing an error:“The uploaded file
Zoho Creator | post data to external URL and redirect there
In zoho creator, we have postURL function to post the data to an external URL but it receives a response back instead of transferring control to the external webpage. For redirection Zoho provides openURL function in zoho creator with which
Zoho | Integration with Google Maps
Problem: Create Google Map with in Zoho and pass address as an arguments to see the Directions on Google map. Also how to find the distance between Source and Destination address. Solution: To create google map and get directions on
Ubuntu Linux | Using ‘alias’ for a set of commands
If you run a set of commands on regular basis you can use Ubuntu ‘alias’ command to create an alias for entire set and use the alias name in future. For example these are a set of commands to compile