Category: Web Development
How to generate Android APK for Ionic project
How to generate Android APK for Ionic project Apk is android application package file format which is used by android operating system to distribute and install app. Apk file is used for publishing mobile application to google play store. Users
Issue- Dompdf is not supporting Font-Family
How to resolve the issue of Dompdf is not supporting Font-Family Problem: We have html with some inline css and we are also importing some files on blade file where we are rendering our html but font families are not
Improve SQL queries while using .NET
Improve SQL queries while using .NET Language-Integrated Query (LINQ) 1. Use IQueryable instead of IEnumerable interface while querying. While using IQueryable, we need to use the ToList() to get the results from DB. Do not use ToList() until you know
Deleting all images from cloudinary through API
Deleting all images from cloudinary through API Cloudinary is a SaaS technology company that provides a cloud-based image and video management solution. Cloudinary API provides us the facility to delete maximum 1000 resources at once. But we may have more
Adding Multiple database server connections in PHPmyAdmin
Adding Multiple database server connections in PHPmyAdmin We can use PHPmyAdmin for multiple database servers by adding them in the settings of PHPmyAdmin. Steps to add a server in the UI of PHPmyAdmin: Step 1: Click on [Settings] button on
How to use RSS Feed in WordPress
How to use RSS Feed in wordpress Publishers get benefit from RSS feeds because this lets them display their site content automatically. Timely updates from web feeds benefits the readers to know if something new is posted on their favorite
Error while installing python packages (pyinstaller)
Error while installing python packages (pyinstaller) While we were installing pyinstaller as per requirement in our window (8) system, it was causing the following error: After struggling very much, we found that it was due to conflict with the Perl
Jquery | DataTables warning: table id – Cannot reinitialise DataTable
If you try to set properties of Jquery datatable 2 times as below, it will give an error: table = $(‘#product-data-table’).DataTable({stateSave: true}) ; table = $(‘#product-data-table’).DataTable ({“aoColumns”: [ { “bSortable”: false },null,null,null ] }); “DataTables warning: table id=product-data-table – Cannot
Data Sanitization using PHP
Understanding PHP data sanitization with an example In PHP data sanitization is a process in which we remove unwanted content from the strings to make them safe to use in HTML code. For example if user types Javascript code in
