Author: Webner
ASP.Net MVC Quick Introduction
ASP.Net MVC Quick Introduction ASP.Net MVC – In MVC, the architecture of an application is divided into three parts – Model, View and Controller. Model – Model represents the shape of data. It is basically used to connect to the
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 close Heroku Postgres Database connections
Problem: Heroku Postgres Database Fatal error too many database connections for role ‘username’ Solution: 1. First install Heroku toolbelt with command a. sudo snap install heroku –classic 2. Login from command line a. heroku login 3. Check current database connections
Detect Text From Uploaded Image and Base64 string
How to Detect Text From Uploaded Image and Base64 string in laravel Laravel has various packages available to achieve this. I have tried “yk/laravel-ocr” and “alimranahmed/laraocr” but these are not producing accurate results. After that, I used the “AWS sdk”
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
Laravel Cron to keep executing manually even for a long time
Laravel Cron to keep executing manually even for a long time The cron jobs we create in Laravel can be very time consuming if they have much to do. They may take a few minutes to execute completely. While testing
