Category: Web Development
Insert and update bulk data in CakePHP 3.7
How to Insert and update bulk data in CakePHP 3.7? We can insert and update multiple records using “saveMany($entities)” function. We can create entities array from “newEntities() / patchEntities()” functions. newEntities function is used to insert new data and patchEntities
Routing And Navigation on Command Line in Angular 6
Routing And Navigation On Command Line in Angular 6 Angular CLI tool can be installed with npm. It requires NodeJs. We can download node from the official site [link] and install using instructions on the site. node -v // this
WordPress | Move WordPress site from HTTP to HTTPS
How to move whole wordpress site from HTTP to HTTPS in simple steps using Really Simple SSL plugin with AWS Cloudfront. Solution. Step-1. Login to wordpress Step.2 Click Plugins Step-3. Download Really Simple SSL plugin on your desktop, as shown
How to change DevExtreme column captions in run time without grid Refresh
How to change language of DevExtreme grid column captions without reload the page DevExtreme is a powerful Component Suite designed by DevExpress that can be used with many languages (javascript, jquery,angularJs, angular, Vue, Knockout, react) to get the desired UI.
How to run CakePHP 3.7 Shell Commands in Heroku console
Learn how to run CakePHP 3.7 Shell Commands in Heroku console 1. Create myCommandShell.php file in src/Shell folder with below content <?php namespace App\Shell; use Cake\Console\Shell; use App\Controller\PagesController; class myCommandShell extends Shell { public function main() { // do your
The page was not displayed because the request entity is too large
Issue “The page was not displayed because the request entity is too large” while uploading a file. This error occurs when you try to upload large size of files but it extends the limits for the number of bytes allowed
Visual Code to AzureDevops | Visual Code to Salesforce
Visual Code to AzureDevops | Visual Code to Salesforce Steps to connect local project from VS Code to Azure DevOps: 1. Install Visual Code. 2. Install all the salesforce extensions. 3. Install Git on your system. 4. Go to your
Add Text to Image with Php and Python
How to add Text to Image with Php and Python Step 1: Call the python file from PHP with the following arguments. $ filePathForPython: Specify the location of the python file. $imageName: Dynamic name of the image. $ imageText: Text
Clear HTML cache programmatically
How to clear HTML cache programmatically HTML automatic caching is one of the popular features provided in HTML5 which makes the application page loading faster as the same page is not freshly loaded every time from the server. An issue