Category: Mobile
Salesforce Apex Data Loader – Date values off by 1 day
How can I ensure my dates are correct when loading with the Data Loader? When loading data into date fields such as Opportunity Close Date using the Data Loader, the date displayed in the application is sometimes one day earlier/later
Heroku | Run Cakephp Code as Cron Job
Problem The requirement was to run CakePHP controller action as cron job on Heroku. In order to achieve this you need to schedule this action so that it runs at specific time intervals on Heroku. To run the code you
Salesforce – Using dataloader on Linux
If you work on Linux and you want to upload data to Salesforce from a Linux machine, you cannot use dataloader as it is Windows based program. Besides you need to install it on your machine and you also need
Heroku – Session expires or gets deleted on every commit
Session expires or gets deleted on every commit in Heroku Follow these steps to fix this problem: 1. Install MemCachier addon in your heroku app 2. Create .user.ini file in your Heroku app and write following code in the file:
Cannot Start Apache Service
It’s a common problem while starting XAMPP, especially for Skype users. The default port used by both Skype and Apache is 80. In order to use both of them you should change the port number for one of them. Here
Shared Hosting | Absolute location of a file
If you want to access a file on a shared hosting server by specifying its absolute location it may not work. The reason is what we see on shared hosting as root folder actually may have more before it that
Mobile App development | Flipper view not showing some images
When mobile developers create an application, whether in Android or iOS, they often face challenge of mobile device fragmentation. Mobile device fragmentation in simple words means when an application is not able to run on some devices while it runs
Salesforce – To Fetch and process more than 50000 records
To Fetch and process more than 50000 records in Salesforce Problem We want to fetch more than 50000 contacts and want to process them but are not able to do that due to salesforce Query limit. Solution Batch apex is
PHP Code | Connect to remote SFTP location on Windows
We need to use the phpseclib library to connect to SFTP server: $sftp = new Net_SFTP(‘www.webnersolutions.com’); if (!$sftp->login(‘user_name’, ‘password’)) { exit(‘Login Failed’); } $this->downloadfiles($sftp->nlist()); //to download all files on remote root folder