Category: Salesforce
Paypal Integration | Creating ClientId and Secret Key via REST API
One needs ClientId and Secret Key for payment through Paypal via REST API. To get values of these 2 key fields, follow these steps: 1.Create a Developer account on Paypal site “https://developer.paypal.com/”. 2.Click on Sign up button at top right
IE 11 broken image issue
Recently we faced a strange issue in one of sites we have developed in WordPress. We are displaying thumbnail images on a page. The site looks great in Firefox, Chrome and Safari. But in IE, some of images were broken,
Windows over AWS EC2 | Really slow remote server
On one of the AWS Windows EC2 machine we faced frequent problem of low disk space issue in C Drive. We figured out that a lot of user accounts were created on the server and from time to time those
Zoho | Max Deluge statements in Custom Function
Maximum number of deluge statements that can be executed in one custom function is 5000. Now if you have a loop that has 10 statements inside it, and the loop runs 500 times, that means all of the 5000 statements
Accessing AWS S3 bucket in PHP | Period / Dot in Bucket Name
You may face a problem in your code if you are trying to access an AWS S3 bucket which contains period / dot in its name (like my.first.bucket). It gives a fatal error in PHP. This problem actually occurs with
PHP | Encoding Spanish Characters with json_encode
You may face a problem with Spanish characters in PHP while trying to use json_encode. After json_encode it doesn’t give any result and no any error either. For solving this use utf8_encode instead of json_encode. $result = utf8_encode ($value) Webner
Salesforce password expires and it needs to be changed in code everytime
Problem: We’re integrating Salesforce to a third-party e-commerce site using our custom cakephp app. In the app we’ve written code which uses Salesforce API to connect to Salesforce using Salesforce account username and password and then makes use of API
Codeigniter | How to remove index.php from URLs
Problem: The default URL for Codeigniter contains index.php in it. How to remove that from URL? For example: How do we change http://localhost/workspace/pagination_demo/index.php/Home/ to http://localhost/workspace/pagination_demo/Home/ Solution: Steps: 1. Go to application- config folder inside your project: 2. Open config.php file: This
Salesforce | Invoking a Visualforce page in a managed package
Remember one thing i.e to use __ (double underscore) after package name. Suppose you have a Visualforce page that uses custom controller. Visualforce page name is Upload_a_File. You have created a button on this page to choose a file and