• WooCommerce REST API Error 403 woocommerce_rest_cannot_view [Fix]

    WooCommerce REST API can be used to add, delete, and update products, customers, coupons, orders, etc. In order to develop a React Native based Android application, I generated a REST API key in WooCommerce and used Postman (the API client) to test if the API is working properly. However, the…

  • Display Most Recent Comments at the Top in WordPress

    By default, WordPress posts and the page display older comments at the top. But if your blog posts are receiving a lot of constructive comments & suggestions, then you may not want the newer comments to be pushed to the bottom of the page. So if you want to display…

  • Coronavirus Campaign Poster – Download

    While the entire world is combating Corona-virus, it finally boils down to individual’s responsibility. COVID-19 cannot be prevented from spreading without the Global citizens staying together and take action to beat the deadly virus. Remember, this crisis had definitely proved one thing : We are all citizens of this Globe and…

  • Template Literals in JavaScript – Explained

    I was going through a code written in JavaScript, where I noticed lot of string variables defined their values within Backtick (`). It looked strange to me because I have been seeing strings within single or double quotes. So what’s special about strings within Backtick? I quickly pinged my wife…

  • Install Qiskit on Windows 10 and Setup Jupyter Notebook

    Here we are back again with a tutorial on How to Install Qiskit on Windows 10. We will also learn to setup Jupyter Notebook, an Opensource web application that helps you to write Python programs and execute it with a click of a button. Well, Jupyter Notebook supports multiple programming…

  • PHP 7.4.3 Configure Errors – libpng, libjpeg, freetype-config, recode not found

    Question: I was trying to compile PHP 7.4.3 from the source with GD library support. Unfortunately, the configure script failed with the following errors: If configure fails try –with-jpeg-dir=<DIR> configure: error: libpng.(a|so) not found. configure: error: libjpeg.(a|so) not found. configure: error: freetype-config not found. configure: error: recode not found Solution:…

  • Install Oniguruma on PPC64LE machine with CentOS

    Have you ever tried installing Oniguruma on POWER PC with CentOS 7? Well, I did that and it was a nightmare. I ended up with an error “configure: error: Package requirements (oniguruma) were not met. No package ‘oniguruma’ found” while configuring PHP 7.4.3. Oniguruma is a dependant package for enabling…

  • Cannot find pspell – Fix PHP Configuration Error

    Question: I was trying to compile PHP 7.4.5 in CentOS 7 on ppc64le architecture. The reason for compiling PHP 7 instead of using yum install is because, there are no repository that provides PHP 7, including remi. Ok, I get this error “configure: error: Cannot find pspell” while configuring PHP….

  • Simulate Quantum Program using IBM Qiskit

    Want to try your hands in Quantum Computing? The best way to start is with IBM Qiskit. In this article, you’ll learn how to install Qiskit on Ubuntu and simulate your first quantum program. If you are a Windows user, then you can click on this link to learn how…

  • Adsense Auto Ads, 5 Reasons Why I disabled it!

    In February 2018, Google announced Adsense Auto Ads beta – powered by machine learning, the auto ads can figure out the right placement and has the ability to learn how well the ad performed in a particular position. Well, that was an interesting announcement and the news prompted every website…

  • Remove Action/Filter Hook Added Within Class in WordPress

    If you are a WordPress developer, then you must have definitely used action and filter hooks. You might have also known that add_action() hook can be removed using remove_action() & add_filter() hook can be removed using remove_filter() functions. Well, that’s super easy, isn’t it? But it’s not going to be…

  • Remove Slider Revolution Meta Generator Tag

    Slider Revolution is one of most popular slider plugin for WordPress that allows you to create beautiful sliders. Without a doubt, I really loved the way plugin has evolved over the years and it constantly featured in most of my projects. Ok, my point is – I generally love to…

  • Linux vs Windows: Which OS Is Better For PC Gaming

    A few weeks back, a survey was conducted in the US showing which gaming platform is the most popular in different states. Unsurprisingly, consoles were leading the race, especially with XBOX in the lead. This should be no surprise, as Microsoft has more fans in the West than in Europe…

  • Using PHP encoders to Protect Source Code [phpBolt example]

    How to protect PHP source code? Well, this is one of the most asked question among PHP developers. Many PHP developers need to protect their application source code before they distribute it to their customers and make it difficult for others to modify it without their permission. If you are…

  • How to Disable JSON REST API in WordPress?

    Starting from WordPress version 4.4, the JSON REST API is enabled by default. It’s one of the greatest development in WordPress that allows developers to get data using GET requests. However as an owner of the WordPress site, I don’t want to keep REST API enabled. The reason, it’s something…

  • Unable to remove items from WooCommerce cart on NGINX [Fix]

    I recently migrated my client website from Apache web server to NGINX and while testing the site, I noticed that the items in cart page were not removing. When a remove button next to each item in the WooCommerce cart was clicked, the Ajax just re-loads the page and no…

  • How to Install phpize in Ubuntu?

    Question: I got an error phpize not found while installing PHP-SSH2 extension on Ubuntu. How to install phpize in Ubuntu? Solution: How to install phpize in Ubuntu phpize is a PHP command that helps to prepare an extension for compilation. It’s basically a shell script that makes an extension ready…