How to debug in Codeigniter Date : 09/11/2019 Introduction We can use functions like echo, print_r(), var_dump() or log_message() to print values both in log files and also in browser. Other than log_message() other print methods will not print values in log_message. echo – used to simply display the content.… Continue Reading How to debug in Codeigniter

Multisite setup: “Warning: An existing WordPress network was detected.” Date : 05/11/2019 Introduction Therefore, while converting a WordPress single install to multisite, the following error will be displayed at the Network Setup admin page. Rules in wp-config.php file Therefore PHP constant definition is appended above  /* That’s all, stop editing! Happy blogging. */… Continue Reading Multisite setup: “Warning: An existing WordPress network was detected.”

HOW TO CHANGE CSS PROPERTY USING ONCLICK Date posted: 16/10/2019 In this tutorial, we will explain how to add CSS classes when click the button using javascript function. document.getElementById() method used to get the element with the specified id. Before clicking the “OK” button: After clicking the “OK” button: Thanks… Continue Reading HOW TO CHANGE CSS PROPERTY USING ONCLICK

How to enable HTTP2 support in Apache Date posted: 25/09/2019 Objective:- HTTP/2 is a major revision of the HTTP network protocol used by the World Wide Web. It was derived from the earlier experimental SPDY protocol, originally developed by Google. HTTP/2 was developed by the Hypertext Transfer Protocol working group… Continue Reading How to enable HTTP2 support in Apache

Websites hosted on Plesk server is not accessible: 504 Gateway Time-out: The timeout specified has expired: [client 0.0.0.0:54] AH01095: Error dispatching request !!!!! Date posted: 10 /10 /2019 Introduction Most importantly, websites hosted on Plesk server is unavailable and often result in 504 Bad gateway error with timeout error specified… Continue Reading Websites hosted on Plesk server is not accessible: 504 Gateway Time-out: The timeout specified has expired: [client 0.0.0.0:54] AH01095: Error dispatching request !!!!!

 How to Connect MySQL Database Remotely using Codeigniter Date : 08/10/2019 Introduction You can connect remote database with other for development in codeigniter project development. There are few things have to checked to connect remote database for your codeigniter project. The checks are summarised in the following. Enter valid details… Continue Reading How to Connect MySQL Database Remotely using Codeigniter

Deep Copy and Shallow Copy Date : 04/10/2019 copy module is used to create for shallow and deep copy operations Python. Shallow copy=>create a new object and store the reference of original elements. import copy var1=[1,2,3,4] var2=copy.copy(var1) var1 [1, 2, 3, 4] var2 [1, 2, 3, 4] Example for Shallow copy… Continue Reading Deep Copy and Shallow Copy

Python Dictionary Operations Date: 19/09/2019 In this tutorial, I going to explain the basics of python dictionary operations and methods. INTRODUCTION Python dictionary is an unordered collection of items and also it contains key-value pairs and enclosed by curly-braces { }. Each key-value pair in a python dictionary is separated… Continue Reading Python Dictionary Operations

PHP Fatal error: Class ‘ZipArchive’ not found Date: 19/09/2019 Introduction PHP fatal error on ‘zip Archive’ not found clearly shows that the zip extension has to be installed for zipArchive class to be present. Moreover, the solution is to install the PHP zip extension on your server. Install PHP Zip Extension If your webserver… Continue Reading PHP Fatal error: Class ‘ZipArchive’ not found

How to start a cPanel scheduled backup job manually Date posted: 18/09/2019 Objective:- If you own cPanel server and tried to enable backup using WHM. When you manually run backups from command line, you will get the below errors. We’re gonna explain how to solve the issue. Solution:- Even though… Continue Reading How to start a cPanel scheduled backup job manually