With the advancement of technology, Machine learning is gaining popularity day by day, and demand for Machine learning developers/ Engineers/ Data Scientists are also increasing day by day. So if you are a beginner and thinking of diving into the world of Machine learning and Data Science, then this post will definitely gonna help you […]
Node.js 12 is here, Let check out, Whats there under the hood.
Node.js, the popular Javascript runtime that relies on chrome V8 javascript engines, released version 12 on 23 April. The Version Comes with a handful of features and capabilities, let’s check them out. ===> V8 got Upgraded to v8 7.4 V8 new JavaScript engine brings performance tweaks and improvements as well as keeping Node.js up with […]
How to Create A WordPress Staging Site for testing Purposes – 4 best Methods
What Do You Mean by Staging Site and why do we need it? A Staging Site is an exact private replica of your Website, on which you can run tests on… There are many a time when you want to add some feature to your current live site.. but editing a live site is really […]
What is Sanitize/ Sanitization ? Why you should Sanitize your Code
What is Sanitize /Sanitization? Sanitize: If you google, this word or simply look into the dictionary it will show the following result As shown, Sanitize, generally means: “make clean and hygienic; disinfect.” Similarly in Computer Science, this term means the removal of malicious data from user input, such as form submissions or maybe more simply, The […]
How to Install WordPress on XAMPP
Installing WordPress on XAMPP is really easy. In this article, we gonna show you how to do that: Step 1: Download and Install XAMPP You can get it from here: https://www.apachefriends.org/download.html Step 2: After Successfully Installing XAMPP, Download and Install WordPress on XAMPP a) Download WordPress package from ( https://wordpress.org/download/ )and extract all the files […]
How to prevent direct access to your WordPress Plugin files
While developing a WordPress plugin, it is really crucial to prevent direct access to its files. As you may never know, what might happen if someone has direct access to your plugin’s PHP files. Considering a Worst Case Scenario, they can have remote code execution (RCE) Remote Code Execution (RCE): As the name suggests, is […]
How to Connect to your Server via FTP Using Notepad++
Notepad ++, as we all know, is one of the most famous open source text editing software. Also, as it is loaded with a bunch of cool features, this software is considered as the no.1 choice for many developers. Syntax highlighting and folding, search/replace, multi-document view, and multi-language support are some of the features that […]
Some Cool Facts about WordPress
WordPress has come a long way since its launch in 2003. The community has grown considerably, and that growth doesn’t seem to be slowing down. WordPress is now the most dominant CMS on the market. Here are Some Cool Facts about WordPress:- According to Open Hub’s Project Cost Calculator, WordPress took an estimated effort […]
PHP: How to Get the Current Page URL
This can be done by following steps: Create a PHP variable which will store the URL in string format. Check whether the HTTPS is enabled by the server .If it is, append “https” to the URL string. If HTTPS is not enabled, append “http” to the URL string.( By Using isset() function to check whether […]
How to disable all plugins when not able to login wp-admin
Sometimes during testing or troubleshooting, you might come across a situation, when there is a need of deactivating all the plugins (( due to white screen of death)), but you can’t as wp-admin stopped working In this article, we will show you how to deactivate all WordPress plugins when not able to access wp-admin area. […]