Search results

  1. K

    Optimization of GTmetrix in WordPress

    How will you analyze the success rate of your website? It is entirely based upon the growth of the website and visitors engagement in the website. However, the number of visitors to the website increases and so, your growth rate to gets increases. Visitors are classified as a new one and old...
  2. K

    Steps to enable two factor authentication

    First you have to install authentication app in your smart phone or tablet. You can use any app like Microsoft authenticator or Google authenticator. You can easily download the apps from Google play Android. After that you have to login to cpanel. And click on “Two-Factor Authentication” under...
  3. K

    How can we use Patchman in cpanel?

    Patchman provide security to our CMS like Wordpress, Drupal and Joomla. It’s malware detection and patching tool which helps to secure website from cybercriminals activity. This tool automatically detects vulnerabilities and update user and if user does not do anything then it patches the...
  4. K

    Steps to create customers in Create customer in Plesk

    You can follow below steps in Plesk ; Login to Plesk. Here click on “Add a Customer” and then enter all the details of customer. Now you have to enter customer details which you want to add. Also you have to enter credentials to login into plesk panel. you have to enter username and password...
  5. K

    A Complete Guide to Splitting XML Files to Upload to WordPress Website

    Migrating content from one website to another takes some effort. You’re also likely to work on XML files. When importing XML files, some users report of getting an error message. The most plausible reason for that is perhaps the XML file is bigger than 2 MB. You should know that WordPress...
  6. K

    What are the ways for adding custom CSS in WordPress?

    A user of WordPress often gets new updates and new features. One coolest option in WordPress is to change the stylesheet in the desired way. While doing this, you may get a problem with the editing option where you can’t find the option to edit. You are well known that the current theme of...
  7. K

    Prevent Brute Force Attacks by Removing Login Hints from Login Page

    You may not realize it, but perhaps your website is being targeted with brute force attacks. That’s a common cyberattack that many websites suffer from. If you install a plugin, you can see a report on it. And the worse part is your WordPress website helps the hackers when they’re attacking...
  8. K

    Guard Your website’s wp-content Folder in WordPress: A Complete Guide

    WordPress is an open source platform. While this allows for greater innovation, it also poses a threat to the websites built on it. Since the source code is available to everyone, hackers can use to attack and manipulate other websites. So you need to take certain protective measures. And one...
  9. K

    Why we disable few PHP functions on server?

    For the security reason we always have to disable few php functions on server. This will improve security on our shared server. Here are the few disabled functions on server: exec – passthru – shell_exec – system – proc_open – popen – curl_exec – curl_multi_exec – parse_ini_file – show_source...
  10. K

    Deceptive site ahead warning on website

    If you are getting this error then it may be malware script that is attached to your site. Kindly scan your PC, most probably your PC is compromised. In 99% cases, clients PC is compromised. Never save password in your PC or in FTP Software. Read ...
  11. K

    Steps to change permission to files and folder with Find command

    If you want to change the permissions of files or folder in bulk then you can use “find” command. You can follow below steps to You have to change directory for which we need to change the permissions. You can change the directory permission to 755 and file permission to the 644, so we have to...
  12. K

    How to change root directory of primary domain with .htaccess file?

    If your website’s files are available in sub folder but you want to access the files directly with domain name then you can redirect your domain with the help of .htaccess file. You can add below code in .htaccess file: RewriteEngine on RewriteCond %{HTTP_HOST} ^yourdomain.com$ [NC,OR]...
  13. K

    How to remove a user in Centos 7?

    If you want to remove unwanted user from your server then you can follow below steps: You can run below command to delete the user: Here username is “hoststud”. Userdel hoststud With this if you want to remove all the files which are related to the user then you have to add –r: Userdel –r...
  14. K

    Steps to assign new static IP on Windows server

    You can follow below steps to assign additional IP Address on server: Go to the Settings >> Network and internet settings. Now you will find “Ethernet” option, click on it. You will find new option “Change Adapter”. You have to right click on the interface which you want to configure and then...
  15. K

    Steps to change the listening port in Remote desktop

    We can change that listening port from which Remote Desktop feature hear the connection request. By default listening port is 3389 and if we want to change the it then first we have to modify the registry. You can follow the below steps to change the port: You have to modify the registry and...
  16. K

    Remove or Hide Categories Option from the Homepage in WordPress

    If you’ve worked on WordPress websites, then you’d know that by default, WordPress displays recent posts and categories on its homepage. The reasoning behind this is people coming to the website would perhaps like to read the latest posts or browse the categories by themselves. While it may...
  17. K

    Prevent WordPress File Editing From the Admin Area - A Complete Guide

    WordPress is a fantastic tool to get your website up and running within a few hours. And it has its own vulnerabilities. For example, you (or anyone with access) can edit the core WordPress files and alter the functionality of the theme, plugins, and overall functionalities. Hackers often use...
  18. K

    How to use Plesk Sitebuilder?

    Plesk sitebuilder helps to easily create websites even if you are beginner. You can develop websites like blog, photo gallery etc with sitebuilder web application. You can use below steps to use sitebuilder: Login to plesk. Then click on “Subscription”, here you will find option “Edit in...
  19. K

    Steps to change windows administrator password

    You can change password on server via remote desktop. You can follow below steps: Login to windows server via Remote Desktop. Here click on windows icon and then type Administrative Tools. Now click on “Computer Management” and expand “Local Users and Groups”. Click on “Users” and right click...
  20. K

    What are MySQL triggers? And steps to use them

    MySQL triggers is an object which is attached with particular table and execute when that event occur. These triggers only work when any of these Mysql statements run like INSERT, UPDATE, DELETE etc. NOTE: You can only use triggers if you have MySQL SUPERUSER privileges. So you have your own...
Top