wordpress

  1. K

    Have you heard about execution attacks of arbitrary code?

    More people own their websites in WordPress. WordPress has the main responsibility to protect their users from vulnerabilities that comes from themes, plugins, and another setup. Arbitrary code attack is one type of vulnerability that has been started in 2019. WordPress releases new versions...
  2. K

    Do you clear cache in WordPress?

    Are you keep on updating the website? But it doesn’t give any changes right! Still, you are working with the old version of WordPress. You might be wondering what happened to your website. Why it is not responding to any of your processes? It’s because you haven’t cleared the cache in WordPress...
  3. K

    What to do About WordPress Website Stuck in Maintenance Mode?

    When you work on your WordPress on the backend, it’s good to put your website to Maintenance Mode. You get full control over the website without having to worry about user experience (because the website will be down). The problem arises for most WordPress administrators and site managers when...
  4. K

    What is Wordpress loop?

    Its a PHP code to display Wordpress posts, this code is used to display all the posts in a page. Here is the example of code: Below is an example of a simple WordPress Loop. <?php if ( have_posts() ) : while ( have_posts() ) : the_post(); // // Post Content here // endwhile; // end while...
  5. K

    Complete Guide to Manually Backing up your WordPress Website

    Tens of thousands of users use WordPress to manage their website, blog, or e-commerce store (via WooCommerce plugin). While managing and updating the website is important, what’s equally important -- yet neglected -- is taking proper backups. In case of disaster, you can easily restore your...
  6. K

    A Complete Guide to Disabling Comments in Your WordPress Website

    WordPress is one of the most popular Content Management Systems that allows anyone to set up a website from scratch. You can open up to the world via internet and share whatever you want to share. Users can interact with you too by sharing or commenting on your posts. When you get comments on...
  7. K

    Guide to Preventing WordPress XML-RPC Exploits

    XML-RPC is a protocol that allows the use of XML for data exchange. Using this, a person can send HTTP requests to a remote server by creating input parameters in XML form and get a response. In WordPress, the XML-RPC protcol is used profoundly. The functionality of it is enabled by default...
  8. K

    Changing Database Port of WordPress Website

    WordPress uses MySQL as its database by default. When you start using WordPress, the database port will be set to something by default by the hosting provider. In most cases, you don’t have to worry about finding it out or changing it. But in other instances, changing database port of your...
  9. K

    A Complete Guide to Customizing Admin Login Page in WordPress

    WordPress has made publishing on the internet easy. And the best part is its highly customizable. You can change literally anything without even having to code. When it comes to customizing admin login pages, you can make modifications pretty quickly. In this guide, learn how to customize the...
  10. K

    Do you know to use phpMyAdmin for changing the theme in WordPress?

    Let me ask a question? WordPress admin area or theme management – Which is the easy one to handle friends! Most of them will say managing the theme is an easy task whereas the WordPress admin area is not an easy task. Now, you need some other help to deal with it carefully right! Let us get...
  11. K

    A Complete Guide to Setting up WordPress Staging Websites

    WordPress staging websites are a great way to test websites locally before implementing those changes on a live website. WordPress limits developers full preview of the pages, so applying the changes makes sense. If you’ve never set up a staging WordPress website before, then this article is for...
  12. K

    Moving a WordPress Website from Local Web Server to Live Site

    Many developers opt to develop a WordPress website locally on a PC or Mac to speed up the development process. Once the changes are made, you must move it to the live site. That’s when some developers, especially those new to website development, look for help. In this article, learn the steps...
  13. K

    Creating a Backup of WordPress Website Hosted on Linux VPS Using SSH

    In Linux servers, the directory path for hosted websites is ./var/www/html/ by default. You can use this path for creating backup files of the websites using SSH. The result with be an archived file in either tar or gzip format. In this article, learn how to create backup files of your WordPress...
  14. K

    Have you heard about page caching in WordPress? Here is the article to configure it easily

    Website loading time – Why it is important in all aspects? Website performance is important for website users and owners. A quick-loading website doesn’t make a user lose interest. Just imagine, if your website loads more than 4min or 5 min will he or she wait for the complete loading time. He...
  15. K

    Creation of WordPress Child Theme

    Do you think when you customizing the theme of WordPress is a risky option? So, here comes the difference and reflection of doing changes in child theme parents’ theme. Whatever you do in child theme it doesn’t affect your parent theme at any cause. Why? It's because the changes and...
  16. K

    Complete Guide to Changing Domain Name of WordPress Website

    There are times when you may want to change domain name of your WordPress website. Many companies and blogs undergo name change and hence have to change their domain name. In other cases, when switching from a sub-domain to a top-level domain, you’d have to change the domain name. In this...
  17. K

    Migrating from Joomla to WordPress: A Complete Guide

    If you’ve built website in Joomla but thinking of migrating to WordPress, you can do it in multiple ways. But the best procedure is the one that takes minimal effort. In this article, we explain how you can migrate without writing a single line of code. Before starting, you’d need a hosting, a...
  18. K

    Wordpress Toolkit error “You do not have the feature “redirects””

    If you are getting below error while performing few functions then it means Wordpress toolkit requires few cpanel features, you can check them: WordPress Toolkit MySQL Subdomains MIME Types Cronjobs Directory Privacy Password & Security File Manager Redirects You can enable all the options in...
  19. K

    Missing pages while Wordpress Toolkit cloning

    If you have used Wordpress Toolkit cloning function then you have noticed that some of the pages are missing after completing the clone process. Sometimes pages are saved under wp-post tables and you will find option under database section, in which there is, checkbox to exclude cloning process...
  20. K

    Wordpress is not using PHP version and custom ini settings in cpanel

    If you are getting issue in Wordpress Toolkit like you are not able to update PHP version and custom PHP settings then the reason behind this issue is “Security check’ option. In Wordpress Toolkit Deluxe there is a feature available “Security check”. This feature provides several options like...
Top